:root {
  --bg: #070707;
  --bg-alt: #0f0f11;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f9f8f6;
  --muted: #b7b5b1;
  --accent: #ff8a1f;
  --accent-2: #ff5e14;
  --accent-soft: rgba(255, 120, 32, 0.2);
  --shadow: 0 28px 85px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --max-width: 1240px;
  --section-gap: clamp(4.8rem, 7vw, 8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 130, 30, 0.16), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(255, 80, 10, 0.14), transparent 34%),
    linear-gradient(180deg, #040404 0%, #0d0d0f 100%);
  background-size: 120% 120%;
  animation: bgDrift 18s ease-in-out infinite alternate;
  color: var(--text);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--accent);
  color: #0a0a0a;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 9999;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 1.65rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: var(--section-gap) 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(12, 12, 14, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.navbar {
  width: min(calc(100% - 1.5rem), var(--max-width));
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061100;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(255, 122, 28, 0.25);
}

.brand-text {
  display: grid;
}

.brand-text strong,
.footer-brand {
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 138, 31, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 80px;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(16, 16, 18, 0.9);
  box-shadow: var(--shadow);
  transform-origin: top;
  transform: scaleY(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-panel a {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #060606 !important;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 98, 18, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 1.5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.55) 100%),
    url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  filter: saturate(0.95);
}

.hero-grid,
.contact-grid,
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.hero-copy h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: 'Poppins', sans-serif;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  max-width: 9.5ch;
}

.hero-copy p,
.section-heading p,
.contact-card p {
  color: var(--muted);
  max-width: 58ch;
  margin: 1.1rem 0 0;
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #d9ffd0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.button-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #040404;
  box-shadow: 0 12px 28px rgba(255, 140, 26, 0.2);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-stats div,
.hero-card,
.feature-card,
.pricing-card,
.transformation-card,
.testimonial-card,
.contact-card,
.map-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-card {
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.025);
}

.hero-card-top,
.hero-card-bottom {
  padding: 1.05rem 1.15rem;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #d9ffd0;
  font-size: 0.85rem;
  font-weight: 600;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.4);
  animation: pulse 2s infinite;
}

.hero-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.hero-card-bottom p {
  color: var(--muted);
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
}

.hero-card-bottom a,
.contact-list a,
.site-footer a {
  color: #d9ffd0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-top: 0.75rem;
}

.features-grid,
.pricing-grid,
.gallery-grid {
  display: grid;
  gap: 1.1rem;
}

.feature-card,
.pricing-card,
.transformation-card,
.testimonial-card,
.contact-card,
.map-card {
  border-radius: var(--radius);
  padding: 1.4rem;
}

.feature-card,
.pricing-card,
.transformation-card,
.testimonial-card,
.contact-card,
.map-card,
.hero-card,
.hero-stats div,
.nav-panel {
  box-shadow: var(--shadow-soft);
}

.feature-card:hover,
.pricing-card:hover,
.transformation-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.map-card:hover {
  border-color: rgba(163, 255, 18, 0.32);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(163, 255, 18, 0.2), rgba(255, 140, 26, 0.18));
  margin-bottom: 1.1rem;
}

.icon-wrap svg,
.social-links svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card h3,
.pricing-card h3,
.contact-list span,
.site-footer h3 {
  margin: 0;
}

.feature-card p,
.pricing-card li,
.transformation-card p,
.testimonial-card p,
.site-footer p,
.site-footer a,
.contact-list p,
.contact-list a {
  color: var(--muted);
}

.pricing-card {
  position: relative;
}

.price-tag {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: #ddd;
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #050505;
  font-size: 0.75rem;
  font-weight: 800;
}

.price {
  margin: 1.05rem 0 0.95rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.pricing-card li {
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.6em;
}

.highlight {
  border-color: rgba(163, 255, 18, 0.35);
  background: linear-gradient(180deg, rgba(163, 255, 18, 0.08), rgba(255, 255, 255, 0.03));
}

.transform-grid {
  display: grid;
  gap: 1.1rem;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.before-after figure {
  margin: 0;
}

.before-after img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.before-after figcaption {
  margin-top: 0.55rem;
  color: #d9ffd0;
  font-size: 0.82rem;
  font-weight: 700;
}

blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.rating {
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-top: 0.65rem;
}

.client-name {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.testimonial-stack {
  display: grid;
  gap: 1.1rem;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.testimonial-header span {
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  border-color: rgba(163, 255, 18, 0.3);
}

.contact-grid {
  align-items: stretch;
  gap: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.contact-list div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.contact-list span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-weight: 700;
}

.contact-list p {
  margin: 0;
}

.contact-cta {
  margin-top: 1.5rem;
}

.map-card {
  min-height: 320px;
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 2.5rem 0 4.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.footer-grid div {
  display: grid;
  gap: 0.65rem;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a,
.floating-whatsapp {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(163, 255, 18, 0.18), rgba(255, 140, 26, 0.15));
  border: 1px solid var(--border);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  color: #d9ffd0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(163, 255, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0);
  }
}

@media (min-width: 720px) {
  .section {
    padding: 6rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transform-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-card iframe,
  .map-card {
    min-height: 100%;
  }

  .hero-card {
    max-width: 540px;
    justify-self: end;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .navbar {
    gap: 2rem;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 0.8rem 0.95rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: calc(100vh - 76px - 2rem);
  }

  .hero-copy p {
    font-size: 1.05rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .transform-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .footer-grid {
    align-items: start;
  }
}

@media (max-width: 959px) {
  .nav-panel a.nav-cta {
    margin-top: 0.25rem;
  }
}

@media (max-width: 719px) {
  .section {
    padding: 4rem 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-copy p,
  .section-heading p,
  .contact-card p {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-card-bottom {
    flex-direction: column;
    align-items: start;
  }

  .featured-badge {
    position: static;
    justify-self: start;
    margin-top: 0.5rem;
    width: fit-content;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
