/* Olibella — dusty rose + charcoal + off-white */
:root {
  --rose: #c4899a;
  --rose-light: #d4a5b3;
  --rose-dark: #a86d7f;
  --charcoal: #2b2b2b;
  --charcoal-soft: #3d3d3d;
  --off-white: #faf7f5;
  --cream: #f5f0ed;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-muted: #5c5c5c;
  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 43, 43, 0.12);
  --shadow-lg: 0 16px 48px rgba(43, 43, 43, 0.15);
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --max-w: 1200px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 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(--off-white);
  padding-bottom: var(--mobile-bar-h);
}

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

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

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

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--charcoal);
  color: var(--off-white);
}

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

.section--dark a {
  color: var(--rose-light);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.section--dark .section-header p {
  color: rgba(250, 247, 245, 0.85);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rose-dark);
  background: rgba(196, 137, 154, 0.15);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.section--dark .kicker {
  background: rgba(212, 165, 179, 0.2);
  color: var(--rose-light);
}

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

.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(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  min-height: 48px;
}

.logo svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.logo span {
  line-height: 1.15;
}

.logo small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-desktop a {
    text-decoration: none;
    color: var(--charcoal-soft);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  .nav-desktop a:hover,
  .nav-desktop a[aria-current="page"] {
    color: var(--rose-dark);
  }
}

.header-ctas {
  display: none;
}

@media (min-width: 992px) {
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
}

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

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile nav — full-height opaque overlay, no transform */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100dvh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  z-index: 200;
  background: var(--white);
  padding: var(--space-md);
  overflow-y: auto;
  display: none;
}

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

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid var(--cream);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-nav a[aria-current="page"] {
  color: var(--rose-dark);
}

.mobile-nav-ctas {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.btn--primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--charcoal);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

/* Hero */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
  overflow: hidden;
}

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

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.hero-content {
  order: 2;
}

@media (min-width: 900px) {
  .hero-content {
    order: 1;
  }
}

.hero-visual {
  order: 1;
  position: relative;
}

@media (min-width: 900px) {
  .hero-visual {
    order: 2;
  }
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  background: var(--rose-light);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.35;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 42ch;
}

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

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

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

.trust-item {
  text-align: center;
  padding: var(--space-sm);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-light);
}

.trust-item span {
  font-size: 0.85rem;
  opacity: 0.9;
}

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

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

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

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-3px);
  }
}

.card img {
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.card h3 {
  margin: 0 0 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rose-dark);
  margin: 0.5rem 0;
}

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

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

.diff-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--rose);
}

.diff-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 137, 154, 0.15);
  border-radius: 50%;
  font-size: 1.25rem;
}

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

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

.testimonial {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial .stars {
  color: #f5a623;
  margin-bottom: 0.5rem;
}

.testimonial cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  background: var(--cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.rating-banner .score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (min-width: 768px) {
  .gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

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

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
}

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

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

@media (min-width: 768px) {
  .map-wrap iframe {
    height: 400px;
  }
}

/* FAQ */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(43, 43, 43, 0.12);
}

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

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: var(--space-md);
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-light) 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 {
  max-width: 50ch;
  margin-inline: auto;
  opacity: 0.95;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 247, 245, 0.9);
  padding: var(--space-xl) 0 var(--space-md);
}

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

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

.site-footer h3 {
  color: var(--rose-light);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.site-footer a {
  color: rgba(250, 247, 245, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--rose-light);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.75;
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  background: var(--white);
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  box-shadow: 0 -4px 16px rgba(43, 43, 43, 0.1);
  height: var(--mobile-bar-h);
}

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

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: var(--mobile-bar-h);
}

.mobile-bar .bar-wa {
  background: #25d366;
  color: var(--white);
}

.mobile-bar .bar-tel {
  background: var(--charcoal);
  color: var(--white);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumbs li::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--text-muted);
}

.breadcrumbs li:last-child::after {
  content: none;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs [aria-current="page"] {
  color: var(--charcoal);
  font-weight: 600;
}

/* Page hero (inner pages) */
.page-hero {
  padding: var(--space-lg) 0;
  background: var(--cream);
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 65ch;
}

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

@media (min-width: 900px) {
  .magazine-split {
    grid-template-columns: 1.1fr 1fr;
  }

  .magazine-split--reverse .magazine-visual {
    order: -1;
  }
}

.magazine-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

.offset-block {
  position: relative;
  padding: var(--space-md);
}

.offset-block::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 12px;
  right: -12px;
  top: 12px;
  background: var(--rose-light);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.25;
}

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

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

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

.team-card img {
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  margin-bottom: var(--space-sm);
}

/* Privacy */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.35rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

/* Agende page */
.agende-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.agende-steps li {
  counter-increment: step;
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.agende-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
