/* Studio Color — Design System */
:root {
  --navy: #1B2A4A;
  --navy-mid: #2A3F6B;
  --navy-pale: #E8ECF4;
  --coral: #F4847A;
  --coral-light: #FFB4A8;
  --coral-pale: #FFF0EE;
  --white: #FFFFFF;
  --text: #1A1F2E;
  --text-muted: #4A5568;
  --whatsapp: #25D366;
  --shadow: 0 4px 24px rgba(27, 42, 74, 0.1);
  --shadow-lg: 0 12px 40px rgba(27, 42, 74, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--coral); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(1.85rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.45rem, 3.5vw, 2rem); margin-bottom: var(--space-sm); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-sm); }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.text-center { text-align: center; }
.mb-xl { margin-bottom: var(--space-xl); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: #1fb855;
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy-pale);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn--coral:hover {
  background: #e06d62;
  color: var(--white);
}

.btn--sm {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--navy-pale);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo__mark { flex-shrink: 0; line-height: 0; }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.logo__name em {
  font-style: normal;
  color: var(--coral);
}

.logo__tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .header-cta { display: flex; }
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 210;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* Site nav — desktop */
.site-nav {
  display: none;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    position: static;
    background: transparent;
    padding: 0;
    overflow: visible;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-nav__link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
  }

  .site-nav__link:hover,
  .site-nav__link[aria-current="page"] {
    background: var(--coral-pale);
    color: var(--coral);
  }
}

/* Site nav — mobile overlay (no transform on ancestors) */
@media (max-width: 899px) {
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - var(--header-h));
    background: var(--navy);
    z-index: 200;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-md);
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-nav__link {
    display: block;
    padding: 1rem 0.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 48px;
    line-height: 1.4;
  }

  .site-nav__link:hover,
  .site-nav__link[aria-current="page"] {
    color: var(--coral-light);
  }
}

/* Hero */
.hero {
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, var(--coral-pale) 0%, var(--white) 55%);
}

.hero__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.hero__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: var(--space-sm);
}

.hero__promise {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-md) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral-light);
}

.trust-item__label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Image bands */
.image-band {
  margin: 0;
  overflow: hidden;
  max-height: 280px;
}

.image-band img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .image-band img { height: 320px; }
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 { color: var(--white); }

.section--navy-pale { background: var(--navy-pale); }

.section--coral-pale { background: var(--coral-pale); }

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-xs);
}

.section--navy .section__label { color: var(--coral-light); }

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.section--navy .section__lead { color: rgba(255, 255, 255, 0.8); }

/* Services */
.services-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--navy-pale);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.service-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: var(--space-sm) 0;
}

/* Differentials */
.diff-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.diff-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.diff-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral-light);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

/* Reviews */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.rating-badge span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__stars {
  color: #F5A623;
  letter-spacing: 1px;
}

/* Gallery */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .gallery-preview { grid-template-columns: repeat(4, 1fr); }
}

.gallery-preview img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item--wide img { aspect-ratio: 2 / 1; }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(27, 42, 74, 0.85));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.location-info address {
  font-style: normal;
  font-weight: 500;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}

.hours-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--navy-pale);
}

.map-embed iframe,
.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
}

/* FAQ */
.faq-list { margin-top: var(--space-md); }

.faq-item {
  border-bottom: 1px solid var(--navy-pale);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: var(--space-sm) 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--coral);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding-bottom: var(--space-sm);
}

.faq-item.is-open .faq-item__answer { display: block; }

.faq-item__answer p {
  color: var(--text-muted);
  margin: 0;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
}

.cta-band h2 { color: var(--white); margin-bottom: var(--space-sm); }

.cta-band p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

/* Page hero */
.page-hero {
  padding: var(--space-lg) 0;
  background: var(--coral-pale);
}

.page-hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 62ch;
  margin-bottom: var(--space-md);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.breadcrumb a { color: var(--navy-mid); text-decoration: none; }

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--navy-pale);
}

.price-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.price-table tr:last-child td { border-bottom: none; }

.price-table td:last-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--coral);
  white-space: nowrap;
}

/* Split content */
.split-content {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .split-content { grid-template-columns: 1fr 1fr; }
}

.split-content img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card__body { padding: var(--space-md); }

.team-card__role {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* Agende */
.agende-hero-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.agende-hero-card h2 { color: var(--white); }

.agende-steps {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .agende-steps { grid-template-columns: repeat(3, 1fr); }
}

.agende-step {
  background: var(--navy-pale);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.agende-step h3 { margin-top: 0; }

/* Legal */
.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.25rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 var(--space-sm);
}

.footer__nap a { color: var(--coral-light); }

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li { margin-bottom: 0.5rem; }

.footer__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer__list a:hover { color: var(--coral-light); }

.footer-map { margin-top: var(--space-sm); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  height: var(--mobile-bar-h);
  background: var(--white);
  border-top: 1px solid var(--navy-pale);
  box-shadow: 0 -4px 20px rgba(27, 42, 74, 0.1);
}

@media (min-width: 900px) {
  .mobile-bar { display: none; }
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.mobile-bar__btn--wa {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-bar__btn--call {
  background: var(--navy);
  color: var(--white);
}
