@font-face {
  font-family: 'Creata';
  src: url('type/Creata-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fire: #0293fc;
  --fire-glow: #7ee8fe;
  --dark: #0D0D0D;
  --dark2: #161616;
  --steel: #1a2a35;
  --muted: #888;
  --light: #F2F0EB;
}

html, body {
  height: 100%;
  background: var(--dark);
  color: var(--light);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

/* Animated background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at var(--ox, 20%) var(--oy, 80%), rgba(255, 75, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.1s linear;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.6;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}

/* Glow background */
.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,0,0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: pulse-orb 4s ease-in-out infinite alternate;
}
.glow-orb2 {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,120,0,0.07) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
  animation: pulse-orb 6s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-orb {
  from { transform: scale(1) translateY(0); opacity: 1; }
  to { transform: scale(1.15) translateY(-20px); opacity: 0.7; }
}

/* Header */
header {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: fadeDown 0.8s ease both;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-icon {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.header-icon:hover { color: var(--light); }

.logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Main content */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 6rem;
  max-width: 900px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(2,147,252,0.1);
  border: 1px solid rgba(2,147,252,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire-glow);
  margin-bottom: 2.5rem;
  width: fit-content;
  animation: fadeDown 0.8s 0.15s ease both;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fire);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

h1 {
  font-family: 'Creata', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--light);
  margin-bottom: 0.3rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

h1 .accent {
  color: var(--fire);
  display: block;
  text-transform: uppercase;
}

.tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #bbb;
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 4rem;
  max-width: 480px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.35s ease both;
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--fire);
  margin-bottom: 4rem;
  animation: expandLine 0.8s 0.5s ease both;
  transform-origin: left;
}

@keyframes expandLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Services grid */
.services-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.5s ease both;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 5rem;
  animation: fadeUp 0.9s 0.6s ease both;
}

.service-tag {
  flex: 1 1 auto;
  background: var(--steel);
  border: 1px solid rgba(2,147,252,0.08);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #ccc;
  transition: all 0.2s ease;
  cursor: default;
}

.service-tag:hover {
  background: rgba(2,147,252,0.15);
  border-color: rgba(2,147,252,0.4);
  color: var(--light);
}

.service-tag.highlight {
  flex: 1 1 calc(50% - 0.35rem);
  background: rgba(2,147,252,0.1);
  border-color: rgba(2,147,252,0.35);
  color: var(--fire-glow);
}

/* Contact CTA */
.cta-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.7s ease both;
}

.cta-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #ccc;
  text-decoration: none;
  font-family: 'Creata', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
}

.cta-phone:hover { color: var(--light); border-color: rgba(255,255,255,0.35); transform: translateY(-1px); }

.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Creata', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 0.7rem 0;
  transition: all 0.25s ease;
}

.cta-whatsapp svg { color: #25D366; flex-shrink: 0; width: 22px; height: 22px; }
.cta-whatsapp:hover { color: var(--light); }

.cta-email {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Creata', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 0.7rem 0;
  transition: all 0.25s ease;
}

.cta-email svg { color: var(--fire); flex-shrink: 0; width: 22px; height: 22px; }
.cta-email:hover { color: var(--light); }

/* Footer */
footer {
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeUp 1s 0.8s ease both;
}

.footer-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.footer-badge {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}

.footer-link {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--muted); }

/* Vertical line decoration */
.v-line {
  position: fixed;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 1.2s 1s ease both;
}

.v-line-bar {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,75,0,0.5), transparent);
}

.v-line-text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  writing-mode: vertical-rl;
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 640px) {
  header, main, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .v-line { display: none; }
  .cta-block { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
