/* ================================================================
   DRA. BÁRBARA LIMA ROSA — CSS
   dermatobarbara.com
   ================================================================ */

/* ---- Design Tokens ---- */
:root {
  --rose: #c4a09a;
  --rose-soft: #d6b6b0;
  --rose-pale: #efdcd6;
  --cream: #faf6f4;
  --cream-2: #f5ece8;
  --wine: #6b1a3a;
  --wine-2: #7b2d4a;
  --rose-gold: #c8a27a;
  --ink: #2a1f22;
  --ink-soft: #4a3b3f;
  --line: #e8d4cf;
  --white: #ffffff;
  --header-h: 78px;
  --max-w: 1280px;
  --max-w-sm: 900px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

ul, ol { list-style: none; }

::selection { background: var(--rose); color: white; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--wine-2); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.font-playfair {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.kicker {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  display: block;
}

.headline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.headline em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.stat-number {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.02em;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; }
}

.container-sm {
  max-width: var(--max-w-sm);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .container-sm { padding-inline: 2.5rem; }
}

/* ---- Buttons ---- */
.btn-glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--wine);
  transform: translateY(-2px);
  border-color: white;
  box-shadow: 0 18px 40px -12px rgba(107, 26, 58, 0.45);
}

.btn-wine {
  background: var(--wine);
  color: white;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.95rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--wine);
  cursor: pointer;
}

.btn-wine:hover {
  background: var(--wine-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(107, 26, 58, 0.45);
}

.btn-outline-wine {
  background: transparent;
  color: var(--wine);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.95rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--wine);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.btn-outline-wine:hover {
  background: var(--wine);
  color: white;
  transform: translateY(-2px);
}

/* ---- SVG Icon helpers ---- */
.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---- Header ---- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, #efdcd6 0%, #e8d0c9 60%, #e0c5be 100%);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 20px -12px rgba(107, 26, 58, 0.25);
}

.header-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

@media (min-width: 1024px) {
  .header-inner { padding-inline: 2.5rem; }
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-monogram {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-monogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--wine);
}

@media (min-width: 640px) {
  .header-logo-name { font-size: 21px; }
}

.header-logo-crm {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(107, 26, 58, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .header-logo-crm { font-size: 10.5px; }
}

/* Desktop nav */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header-nav .nav-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(107, 26, 58, 0.8);
  transition: color 0.2s ease;
  padding: 0;
  text-decoration: none;
}

.header-nav .nav-link:hover { color: var(--wine); }

/* Desktop actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

.header-ig-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(107, 26, 58, 0.25);
  color: var(--wine);
  transition: background 0.2s ease;
}

.header-ig-btn:hover { background: rgba(255,255,255,0.4); }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(107, 26, 58, 0.3);
  color: var(--wine);
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-menu-toggle:hover { background: rgba(255,255,255,0.5); }

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

/* Mobile menu panel */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(107, 26, 58, 0.15);
  background: linear-gradient(180deg, #efdcd6 0%, #e8d0c9 100%);
}

.mobile-menu.open { display: block; }

.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu .nav-link {
  display: block;
  text-align: left;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(107, 26, 58, 0.15);
  width: 100%;
  transition: color 0.2s ease;
}

.mobile-menu .nav-link:hover { color: var(--wine-2); }

.mobile-menu-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.mobile-ig-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(107, 26, 58, 0.3);
  color: var(--wine);
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ---- Hero Section ---- */
#home {
  position: relative;
  width: 100%;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(180deg, #c4a09a 0%, #b8918b 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.06), transparent 50%);
  pointer-events: none;
}

.hero-monogram-bg {
  position: absolute;
  top: -40px;
  right: -60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 400px;
  line-height: 1;
  color: white;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-monogram-bg {
    right: -40px;
    font-size: 560px;
  }
}

.hero-grid {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-inline: auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    padding: 5rem 1.5rem 4rem;
  }
}

.hero-content { order: 2; }

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

.hero-photo-col {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-photo-col { order: 2; }
}

/* Hero name line */
.hero-name-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-name-line { justify-content: flex-start; }
}

.hero-name-rule {
  height: 1px;
  width: 40px;
  background: rgba(255,255,255,0.6);
}

.hero-name-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #f5d4c2;
}

@media (min-width: 640px) {
  .hero-name-text { font-size: 26px; }
}

/* Hero h1 */
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.02;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-h1 em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--rose-pale);
}

.hero-h1 span { color: #fce4dc; }

@media (min-width: 640px) { .hero-h1 { font-size: 54px; } }

@media (min-width: 1024px) {
  .hero-h1 {
    font-size: 68px;
    text-align: left;
  }
}

.hero-desc {
  font-family: "Lato", sans-serif;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.25rem;
  text-align: center;
  margin-inline: auto;
}

@media (min-width: 640px) { .hero-desc { font-size: 16px; } }

@media (min-width: 1024px) {
  .hero-desc {
    text-align: left;
    margin-inline: 0;
  }
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .hero-cta-row { justify-content: flex-start; }
}

.hero-cta-link {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.hero-cta-link:hover { color: white; }

/* Hero photo */
.hero-photo-wrapper {
  position: relative;
}

.hero-photo-halo {
  position: absolute;
  inset: 0;
  margin: -2rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 70%);
}

.hero-photo-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 3/4;
  border-radius: 180px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.4);
  box-shadow: 0 30px 60px -20px rgba(60,18,30,0.5);
}

@media (min-width: 640px) { .hero-photo-frame { width: 340px; } }
@media (min-width: 1024px) { .hero-photo-frame { width: 400px; } }

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Floating chips */
.hero-chip {
  display: none;
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 16px 40px -12px rgba(60,18,30,0.3);
  animation: float 4s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-chip { display: flex; }
}

.hero-chip-crm {
  left: -3rem;
  top: 3rem;
  padding: 0.75rem 1rem;
  align-items: center;
  gap: 0.75rem;
}

.hero-chip-crm .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-chip-crm p:first-of-type {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
}

.hero-chip-crm p:last-of-type {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 1px;
}

.hero-chip-stats {
  right: -2rem;
  bottom: 3rem;
  padding: 1rem 1.25rem;
  flex-direction: column;
  animation-delay: 1s;
}

.hero-chip-stats .stat-val {
  font-family: "Cormorant Garamond", serif;
  color: var(--wine);
  font-size: 28px;
  line-height: 1;
}

.hero-chip-stats .stat-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}

/* Hero bottom rule */
.hero-bottom-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  z-index: 20;
}

/* ---- About Section ---- */
#sobre {
  position: relative;
  background: var(--cream);
  padding: 6rem 0;
}

@media (min-width: 1024px) { #sobre { padding: 8rem 0; } }

.about-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    padding-inline: 2.5rem;
  }
}

.about-photo-col { order: 2; }

@media (min-width: 1024px) {
  .about-photo-col { order: 1; }
}

.about-text-col { order: 1; }

@media (min-width: 1024px) {
  .about-text-col { order: 2; }
}

.about-photo-wrapper {
  position: relative;
}

.about-photo-deco-1 {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 7rem;
  height: 7rem;
  background: var(--rose-pale);
  border-radius: 9999px;
  z-index: 0;
}

.about-photo-deco-2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--rose);
  border-radius: 9999px;
  z-index: 0;
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 60px -30px rgba(107, 26, 58, 0.4);
  background: var(--rose-pale);
}

.about-photo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Overlaid CTA button on photo */
.about-photo-cta {
  position: absolute;
  left: 0;
  top: 32%;
  transform: translateX(-0.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--wine);
  color: white;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px -12px rgba(107, 26, 58, 0.6);
  border: 1px solid var(--wine);
  transition: all 0.25s ease;
}

.about-photo-cta:hover {
  background: var(--wine-2);
  transform: translateX(-0.5rem) translateY(-2px);
}

@media (min-width: 640px) {
  .about-photo-cta {
    font-size: 13px;
    padding: 0.875rem 1.5rem;
    top: 34%;
  }
}

/* About text */
.about-text h2 { margin-bottom: 2rem; }

.about-text h2 em { color: var(--rose); }

.about-text p {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) { .about-text p { font-size: 17px; } }

.about-text strong {
  font-weight: 700;
  color: var(--wine);
}

.about-credentials {
  display: grid;
  gap: 0.75rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .about-credentials { grid-template-columns: 1fr 1fr; }
}

.about-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 8px;
}

.about-credential span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---- Specialties Section ---- */
#atuacao {
  background: var(--cream-2);
  padding: 6rem 0;
}

@media (min-width: 1024px) { #atuacao { padding: 8rem 0; } }

.specialties-header {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
  padding-inline: 1.5rem;
}

.specialties-header h2 {
  font-size: 44px;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) { .specialties-header h2 { font-size: 56px; } }
@media (min-width: 1024px) { .specialties-header h2 { font-size: 64px; } }

.specialties-header p {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

@media (min-width: 640px) { .specialties-header p { font-size: 17px; } }

.specialties-list {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) { .specialties-list { padding-inline: 2.5rem; } }

/* Section accordion (toggle section) */
.specialty-section { margin-bottom: 0; }

.specialty-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(196, 160, 154, 0.4);
  cursor: pointer;
  text-align: left;
}

.specialty-section-toggle h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--wine);
  letter-spacing: -0.01em;
  font-weight: 400;
}

@media (min-width: 640px) {
  .specialty-section-toggle h3 { font-size: 30px; }
}

.specialty-section-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--rose-pale);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease;
}

.specialty-section-toggle[aria-expanded="true"] .specialty-section-icon {
  transform: rotate(45deg);
  background: var(--rose-soft);
}

/* Section body (accordion body) */
.specialty-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.specialty-body.open {
  grid-template-rows: 1fr;
  margin-top: 1rem;
}

.specialty-body > div { overflow: hidden; }

/* Wine accordion items list */
.wine-accordion {
  background: var(--wine);
  border-radius: 14px;
  border: 1px solid rgba(239, 220, 214, 0.25);
  overflow: hidden;
}

.wine-accordion-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.5rem;
  text-align: left;
  width: 100%;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease;
  cursor: pointer;
}

.wine-accordion-row:first-child { border-top: none; }
.wine-accordion-row:hover { background: var(--wine-2); }

.wine-accordion-row .row-plus {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.wine-accordion-row .row-name {
  font-family: "Lato", sans-serif;
  font-size: 14.5px;
  flex: 1;
}

@media (min-width: 640px) {
  .wine-accordion-row .row-name { font-size: 16px; }
}

.wine-accordion-row .row-more {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
  display: none;
  transition: opacity 0.2s;
}

@media (min-width: 640px) {
  .wine-accordion-row .row-more { display: inline; }
}

.wine-accordion-row:hover .row-more { opacity: 1; }

/* ---- Technologies Section ---- */
#tecnologias {
  background: var(--white);
  padding: 6rem 0;
}

@media (min-width: 1024px) { #tecnologias { padding: 8rem 0; } }

.tech-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tech-header h2 {
  font-size: 40px;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.tech-header h2 em { color: var(--rose); }

@media (min-width: 640px) { .tech-header h2 { font-size: 52px; } }
@media (min-width: 1024px) { .tech-header h2 { font-size: 60px; } }

.tech-header p {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
  margin-inline: auto;
}

@media (min-width: 640px) { .tech-header p { font-size: 17px; } }

.tech-list {
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.tech-item {
  border-bottom: 1px solid var(--line);
}

.tech-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
}

.tech-toggle h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--wine);
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color 0.2s;
}

@media (min-width: 640px) { .tech-toggle h3 { font-size: 28px; } }

.tech-toggle:hover h3 { color: var(--wine-2); }

.tech-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--rose);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.tech-toggle:hover .tech-toggle-icon {
  background: var(--wine);
  color: white;
  border-color: var(--wine);
  transform: translateX(3px);
}

.tech-footer {
  text-align: center;
  margin-top: 3.5rem;
}

.tech-footer p {
  font-family: "Lato", sans-serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

/* ---- Testimonials Section ---- */
#depoimentos {
  background: var(--cream);
  padding: 6rem 0;
}

@media (min-width: 1024px) { #depoimentos { padding: 8rem 0; } }

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-header h2 {
  font-size: 38px;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.testimonials-header h2 em { color: var(--rose); }

@media (min-width: 640px) { .testimonials-header h2 { font-size: 50px; } }
@media (min-width: 1024px) { .testimonials-header h2 { font-size: 58px; } }

.testimonials-header p {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 560px;
  margin-inline: auto;
}

@media (min-width: 640px) { .testimonials-header p { font-size: 16px; } }

/* Stats grid */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

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

.stat-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.stat-card:hover { box-shadow: 0 12px 30px -16px rgba(107, 26, 58, 0.25); }

.stat-card .stat-value {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  color: var(--wine);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .stat-card .stat-value { font-size: 52px; } }

.stat-card .stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 0.5rem;
}

.star-icon {
  width: 15px;
  height: 15px;
  fill: var(--rose);
  color: var(--rose);
}

.stat-card .stat-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover { box-shadow: 0 12px 30px -16px rgba(107, 26, 58, 0.25); }

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--rose-pale);
  width: 28px;
  height: 28px;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--rose-pale);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-when {
  font-size: 12px;
  color: var(--ink-soft);
}

.testimonials-actions {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .testimonials-actions { flex-direction: row; justify-content: center; }
}

/* ---- Insurance Section ---- */
#convenios {
  background: white;
  padding: 6rem 0 7rem;
}

.insurance-header {
  text-align: center;
  margin-bottom: 3rem;
}

.insurance-header h2 {
  font-size: 34px;
  color: var(--wine);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 820px;
  margin-inline: auto;
}

@media (min-width: 640px) { .insurance-header h2 { font-size: 44px; } }
@media (min-width: 1024px) { .insurance-header h2 { font-size: 50px; } }

.insurance-header h2 em { font-style: italic; }

.insurance-header p {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}

@media (min-width: 640px) { .insurance-header p { font-size: 16px; } }

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.insurance-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 130px;
  transition: all 0.3s ease;
}

.insurance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -16px rgba(107, 26, 58, 0.25);
  border-color: var(--rose);
}

.insurance-card img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.insurance-card .ins-name {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  text-align: center;
}

/* Particular card */
.particular-card {
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(196, 160, 154, 0.4);
  background: linear-gradient(135deg, #efdcd6 0%, #f5ece8 50%, #ffffff 100%);
  text-align: center;
}

@media (min-width: 640px) {
  .particular-card {
    flex-direction: row;
    text-align: left;
  }
}

.particular-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.particular-card p.title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--wine);
  font-size: 22px;
  line-height: 1.2;
}

@media (min-width: 640px) { .particular-card p.title { font-size: 26px; } }

.particular-card p.sub {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 640px) { .particular-card p.sub { font-size: 14px; } }

/* Insurance CTA banner */
.insurance-cta-banner {
  background: var(--cream-2);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--line);
}

@media (min-width: 640px) {
  .insurance-cta-banner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.insurance-cta-banner .banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--rose-pale);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insurance-cta-banner .banner-text {
  font-family: "Lato", sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 640px) { .insurance-cta-banner .banner-text { font-size: 15px; } }

/* ---- FAQ Section ---- */
#faq {
  background: var(--cream-2);
  padding: 6rem 0;
}

@media (min-width: 1024px) { #faq { padding: 8rem 0; } }

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header h2 {
  font-size: 36px;
  color: var(--wine);
  line-height: 1.05;
}

@media (min-width: 640px) { .faq-header h2 { font-size: 48px; } }
@media (min-width: 1024px) { .faq-header h2 { font-size: 56px; } }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: var(--rose);
  box-shadow: 0 18px 40px -24px rgba(107, 26, 58, 0.35);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-toggle h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--wine);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

@media (min-width: 640px) { .faq-toggle h3 { font-size: 24px; } }

.faq-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--rose-pale);
  color: var(--wine);
  transition: background 0.25s, color 0.25s;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-toggle-icon {
  background: var(--wine);
  color: white;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-body.open { grid-template-rows: 1fr; }

.faq-body > div { overflow: hidden; }

.faq-body p {
  padding: 0 1.5rem 1.5rem;
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

@media (min-width: 640px) { .faq-body p { font-size: 16px; } }

.faq-footer {
  text-align: center;
  margin-top: 3rem;
}

.faq-footer p {
  font-family: "Lato", sans-serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 1.25rem;
}

/* ---- Contact Form Section ---- */
#agendamento {
  background: var(--cream-2);
  padding: 6rem 0 7rem;
}

.contact-grid {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
    padding-inline: 2.5rem;
  }
}

.contact-text h2 {
  font-size: 36px;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.contact-text h2 em { color: var(--rose); }

@media (min-width: 640px) { .contact-text h2 { font-size: 44px; } }
@media (min-width: 1024px) { .contact-text h2 { font-size: 52px; } }

.contact-text p {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .contact-text p { font-size: 16px; } }

.contact-live {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  padding: 1.75rem;
  box-shadow: 0 30px 60px -30px rgba(107, 26, 58, 0.25);
}

@media (min-width: 640px) { .contact-form-card { padding: 2.5rem; } }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Manrope", system-ui, sans-serif;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: rgba(250, 246, 244, 0.4);
  color: var(--ink);
  font-family: "Lato", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder { color: rgba(74, 59, 63, 0.6); }

.form-input:focus {
  border-color: var(--rose);
  background: white;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 1rem;
  font-family: "Lato", sans-serif;
}

/* ---- Clinic Section ---- */
#contato {
  background: var(--cream);
  padding: 6rem 0 8rem;
}

.clinic-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clinic-header h2 {
  font-size: 36px;
  color: var(--wine);
  line-height: 1.05;
}

.clinic-header h2 em { color: var(--rose); }

@media (min-width: 640px) { .clinic-header h2 { font-size: 48px; } }
@media (min-width: 1024px) { .clinic-header h2 { font-size: 56px; } }

.clinic-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .clinic-grid {
    grid-template-columns: 7fr 5fr;
    padding-inline: 2.5rem;
    align-items: stretch;
  }
}

.clinic-map-col { order: 2; }

@media (min-width: 1024px) {
  .clinic-map-col { order: 1; }
}

.clinic-info-col { order: 1; }

@media (min-width: 1024px) {
  .clinic-info-col { order: 2; }
}

.clinic-map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -30px rgba(107, 26, 58, 0.35);
  height: 420px;
}

@media (min-width: 1024px) {
  .clinic-map-frame { height: 100%; min-height: 420px; }
}

.clinic-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.clinic-info-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  padding: 2rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clinic-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.clinic-info-row:first-child { padding-top: 0; }
.clinic-info-row:last-child { border-bottom: none; }

.clinic-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--rose-pale);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clinic-info-kicker {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.clinic-info-text {
  font-family: "Lato", sans-serif;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.clinic-info-text a {
  color: var(--wine);
  transition: color 0.2s;
}

.clinic-info-text a:hover {
  color: var(--wine-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clinic-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .clinic-nav-btns { flex-direction: row; }
}

.clinic-nav-btns a { flex: 1; justify-content: center; }

/* ---- Clinic carousel ---- */
.clinic-carousel {
  position: relative;
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(107, 26, 58, 0.72);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.carousel-btn:hover { background: var(--wine); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.35);
}

/* ---- Tech modal ---- */
.tech-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 31, 34, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.tech-modal-overlay.open { display: flex; }

.tech-modal-box {
  background: var(--cream);
  border-radius: 1.25rem;
  max-width: 38rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 24px 80px rgba(42, 31, 34, 0.35);
}

.tech-modal-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 1.5rem;
}

.tech-modal-body {
  padding: 1.75rem 2rem 2rem;
}

.tech-modal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--wine);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}

@media (min-width: 640px) { .tech-modal-title { font-size: 30px; } }

.tech-modal-desc {
  font-family: "Lato", sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.tech-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(107, 26, 58, 0.85);
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.tech-modal-close:hover { background: var(--wine); }

/* ---- Footer ---- */
footer {
  background: var(--wine);
  color: white;
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
    padding-inline: 2.5rem;
  }
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--rose-pale);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
}

.footer-logo-role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-top: 2px;
}

.footer-brand-desc {
  font-family: "Lato", sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-ig:hover { color: white; }

.footer-ig-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-ig:hover .footer-ig-icon { background: rgba(255,255,255,0.2); }

.footer-nav-title, .footer-contact-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-pale);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-nav-list a {
  font-family: "Lato", sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--rose-pale); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: "Lato", sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-item svg { color: var(--rose-pale); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 2rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2.5rem;
  }
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
}

.whatsapp-float-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: #25D366;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.2;
}

.whatsapp-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-float-btn:hover { transform: scale(1.04); }

.whatsapp-float-btn svg { fill: white; }

/* ---- Specialty Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 31, 34, 0.65);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--wine);
  border-radius: 1rem;
  max-width: 32rem;
  width: 100%;
  padding: 2rem;
  position: relative;
  animation: fadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) { .modal-box { padding: 2.5rem; } }

.modal-kicker {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-pale);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: "Cormorant Garamond", serif;
  color: white;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

@media (min-width: 640px) { .modal-title { font-size: 32px; } }

.modal-desc {
  font-family: "Lato", sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modal-close:hover { background: rgba(255,255,255,0.2); }

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* Hero animations (trigger immediately) */
.hero-content { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }
.hero-photo-col { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s both; }
