/* ==========================================================================
   DIONARA COZZATI ODONTOLOGIA - MAIN STYLESHEET
   Location: São João - PR
   ========================================================================== */

/* Hide browser scrollbar completely across all browsers */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html,
body {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}

/* Utility & Reset Overrides */
.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 64px 0;
  }
}

/* Typography Helpers */
.text-serif {
  font-family: var(--font-title);
}

.text-sans {
  font-family: var(--font-body);
}

.text-wine {
  color: var(--color-wine-main);
}

.text-wine-dark {
  color: var(--color-wine-dark);
}

.text-rose {
  color: var(--color-rose-medium);
}

.text-graphite {
  color: var(--color-graphite);
}

.text-muted {
  color: var(--color-graphite-muted);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-wine-main);
  background: var(--color-rose-ultra-light);
  border: 1px solid var(--color-rose-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--color-graphite);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--color-off-white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-graphite-muted);
  max-width: 680px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-wine-main);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(168, 32, 69, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 32, 69, 0.3);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-graphite);
  border: 1px solid rgba(40, 35, 38, 0.2);
}

.btn-secondary:hover {
  background-color: var(--color-rose-ultra-light);
  border-color: var(--color-wine-main);
  color: var(--color-wine-main);
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--color-off-white);
  color: var(--color-wine-dark);
}

.btn-light:hover {
  background-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Base Animation Classes */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.animate-fade-up,
.animate-stagger-item,
[data-reveal] {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js.animations-ready .reveal:not(.is-visible),
.js.animations-ready .reveal-up:not(.is-visible),
.js.animations-ready .animate-fade-up:not(.is-visible),
.js.animations-ready .animate-stagger-item:not(.is-visible),
.js.animations-ready [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.js.animations-ready .reveal-left:not(.is-visible) {
  opacity: 0;
  transform: translateX(-28px);
}

.js.animations-ready .reveal-right:not(.is-visible) {
  opacity: 0;
  transform: translateX(28px);
}

.js.animations-ready .reveal-scale:not(.is-visible) {
  opacity: 0;
  transform: scale(0.96);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.animate-fade-up.is-visible,
.animate-stagger-item.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) scale(1);
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition-fast);
  text-decoration: none;
}

.floating-wa svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }
  .floating-wa.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  transform: translateZ(0);
  will-change: background, box-shadow;
}

.header.scrolled {
  background: rgba(250, 248, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(40, 35, 38, 0.06);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 64px;
  max-height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header.scrolled .header-logo-img {
  height: 64px;
}

@media (max-width: 992px) {
  .header-logo-img {
    height: 44px;
    max-height: 44px;
  }
  .header.scrolled .header-logo-img {
    height: 44px;
  }
}

.footer-logo-img {
  height: 64px;
  max-height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}

.header-logo-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-wine-dark);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.header-logo-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-graphite-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-graphite);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-wine-main);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--color-graphite);
  cursor: pointer;
}

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

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions .btn-header-cta {
    display: none;
  }
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
  display: none !important;
  pointer-events: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #FAF6F4;
  z-index: 1100;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
  display: flex !important;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-rose-light);
}

/* Logo menor dentro do menu mobile */
.mobile-menu .header-logo-img {
  height: 38px;
  max-height: 38px;
}

.mobile-menu-close {
  background: var(--color-rose-ultra-light);
  border: 1px solid var(--color-rose-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-graphite);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 28px 0;
  flex: 1;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-graphite);
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 117, 140, 0.12);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--color-wine-main);
}

.mobile-menu-footer {
  padding-top: 24px;
  border-top: 1px solid var(--color-rose-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.menu-locked {
  overflow: hidden;
}

/* ==========================================================================
   HERO SECTION (COMPACT EDITORIAL DESIGN)
   ========================================================================== */
.hero {
  min-height: 78vh;
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 48px;
  background-color: #FAF6F4;
  background-image: url('../images/hero-bg.png');
  background-size: auto 100%;
  background-position: right 0 top 40px;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, #FAF6F4 0%, rgba(250, 246, 244, 0.9) 35px, rgba(250, 246, 244, 0.2) 65px, transparent 95px),
    linear-gradient(to right, #FAF6F4 0%, rgba(250, 246, 244, 0.95) 28%, rgba(250, 246, 244, 0.3) 40%, transparent 48%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-tag-clean {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-rose-medium);
  margin-bottom: 14px;
}

.hero-title-editorial {
  font-family: var(--font-title);
  font-size: 2.7rem;
  font-weight: 400;
  color: var(--color-wine-dark);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-title-editorial .highlight-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--color-rose-medium);
}

.hero-subtitle-editorial {
  font-size: 0.98rem;
  color: var(--color-graphite-muted);
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: 26px;
}

.hero-actions-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-hero-wine {
  background: var(--color-wine-dark);
  color: var(--color-white);
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(116, 21, 47, 0.22);
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-hero-wine:hover {
  background: var(--color-wine-main);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(116, 21, 47, 0.32);
  color: var(--color-white);
}

.wa-circle-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-circle-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.btn-hero-outline {
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  color: var(--color-wine-dark);
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-hero-outline:hover {
  border-color: var(--color-wine-main);
  color: var(--color-wine-main);
  transform: translateY(-2px);
}

.btn-hero-outline svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-hero-outline:hover svg {
  transform: translateX(4px);
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-graphite-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-divider {
  color: rgba(168, 32, 69, 0.25);
  font-weight: 300;
}

.google-score {
  font-weight: 600;
  color: var(--color-graphite);
}

.google-stars {
  color: #F5A623;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.hero-image-wrapper {
  display: none;
}

@media (max-width: 992px) {
  .hero {
    min-height: 100svh;
    padding-top: var(--header-height);
    padding-bottom: 56px;
    background-image: url('../images/hero-bg-mobile.png');
    background-size: cover;
    background-position: calc(50% + 95px) -30px;
    background-repeat: no-repeat;
  }
  
  .hero::before {
    background: 
      linear-gradient(to right, #FAF6F4 0%, rgba(250, 246, 244, 0.88) 32%, rgba(250, 246, 244, 0.15) 56%, transparent 72%),
      linear-gradient(to bottom, rgba(250, 246, 244, 0.65) 0%, transparent 40%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag-clean {
    margin-bottom: 20px;
    display: inline-block;
  }

  .hero-title-editorial {
    font-size: 2.1rem;
    line-height: 1.35;
    margin-bottom: 24px;
  }

  .hero-subtitle-editorial {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .hero-actions-group {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 36px;
  }

  .btn-hero-wine,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-bar {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 48px;
    background-size: cover;
    background-position: calc(50% + 80px) -20px;
  }

  .hero-title-editorial {
    font-size: 1.85rem;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .hero-subtitle-editorial {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 32px;
  }
}

/* Hero Scroll Hint — Mobile Only */
.hero-scroll-hint {
  display: none;
}

@media (max-width: 992px) {
  .hero-scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    text-decoration: none;
    color: #7A6A70;
    opacity: 0.7;
  }

  .hero-scroll-hint span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .hero-scroll-hint svg {
    width: 14px;
    height: 14px;
    stroke: #7A6A70;
    animation: scrollBounce 1.8s ease-in-out infinite;
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
  }
}

/* Hero Mobile Differentials Block */
.hero-mobile-differentials {
  display: none;
}

@media (max-width: 992px) {
  .hero-mobile-differentials {
    display: grid !important;
    margin-top: 20px;
    background: transparent;
    padding: 16px 0;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 16px;
    width: 100%;
  }
}

.hero-diff-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-diff-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #74152F;
}

.hero-diff-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-diff-item strong {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: #74152F;
}

.hero-diff-item span {
  font-size: 0.72rem;
  color: #7A6A70;
  font-weight: 400;
}

/* ==========================================================================
   AUTHORITY STRIP (EXACT DESIGN MATCH)
   ========================================================================== */
.authority-strip {
  background-color: var(--color-wine-dark);
  border-top: none;
  border-bottom: none;
  padding: 38px 0;
  color: var(--color-white);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.authority-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  padding: 0 24px;
}

.authority-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.authority-icon {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.authority-icon svg {
  width: 32px;
  height: 32px;
}

.authority-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.authority-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

.authority-subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.25;
}

@media (max-width: 992px) {
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }
  .authority-item:nth-child(2)::after {
    display: none;
  }
  .authority-item {
    justify-content: flex-start;
    padding: 0 14px;
    gap: 10px;
  }
  .authority-icon svg {
    width: 24px;
    height: 24px;
  }
  .authority-title {
    font-size: 0.88rem;
  }
  .authority-subtitle {
    font-size: 0.76rem;
  }
}

@media (max-width: 576px) {
  .authority-strip {
    padding: 24px 0;
  }
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 0;
  }
  .authority-item:nth-child(2)::after,
  .authority-item:nth-child(4)::after {
    display: none !important;
  }
  .authority-item {
    justify-content: flex-start;
    padding: 0 10px;
    gap: 8px;
  }
  .authority-icon svg {
    width: 20px;
    height: 20px;
  }
  .authority-title {
    font-size: 0.82rem;
  }
  .authority-subtitle {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (BRAND WINE STYLING)
   ========================================================================== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-wine-dark);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(116, 21, 47, 0.3);
  z-index: 999;
  transition: var(--transition-fast);
  text-decoration: none;
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-wa:hover {
  transform: scale(1.08);
  background-color: var(--color-wine-main);
  box-shadow: 0 12px 30px rgba(116, 21, 47, 0.4);
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   FINAL CTA SECTION (LIGHT LUXURY ROSÉ DESIGN)
   ========================================================================== */
.final-cta-section {
  background: radial-gradient(circle at 50% 40%, #FAF6F4 0%, #F5ECED 100%);
  color: var(--color-graphite);
  text-align: center;
  padding: 84px 0 76px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(168, 32, 69, 0.06);
}

/* Decorative Curves (Top-Left) */
.cta-decorative-curves {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 240px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

/* Large Tooth Watermark (Right side ~35% width, 4%-7% opacity) */
.cta-watermark-tooth {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 440px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
}

.cta-watermark-tooth svg {
  width: 100%;
  height: auto;
}

.final-cta-content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-tag-clean {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-rose-medium);
  margin-bottom: 16px;
}

.final-cta-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--color-wine-dark);
  margin-bottom: 20px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.final-cta-desc {
  font-size: 1.05rem;
  color: var(--color-graphite-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 620px;
}

.btn-cta-wine {
  background: var(--color-wine-dark);
  color: var(--color-white);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(116, 21, 47, 0.22);
  transition: var(--transition-fast);
  text-decoration: none;
  margin-bottom: 36px;
}

.btn-cta-wine:hover {
  background: var(--color-wine-main);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(116, 21, 47, 0.32);
  color: var(--color-white);
}

.btn-cta-wine svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-cta-wine:hover svg {
  transform: translateX(4px);
}

/* 3 Diferenciais em Linha */
.cta-differentials {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--color-graphite-muted);
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diff-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.diff-divider {
  color: rgba(168, 32, 69, 0.22);
  font-weight: 300;
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 54px 0 48px 0;
  }
  .final-cta-title {
    font-size: 1.95rem;
  }
  .final-cta-desc {
    font-size: 0.95rem;
  }
  .btn-cta-wine {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
  .cta-watermark-tooth {
    width: 60%;
    right: -15%;
    opacity: 0.6;
  }
  .cta-differentials {
    flex-direction: column;
    gap: 12px;
  }
  .diff-divider {
    display: none;
  }
}

/* ==========================================================================
   LIGHT ELEGANT 4-COLUMN FOOTER
   ========================================================================== */
.footer {
  background: #FDFBFB;
  color: var(--color-graphite);
  padding: 64px 0 28px 0;
  border-top: 1px solid rgba(168, 32, 69, 0.08);
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: var(--color-graphite-muted);
  line-height: 1.6;
  max-width: 290px;
  margin-bottom: 20px;
}

.btn-insta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-wine-dark);
  background: var(--color-rose-ultra-light);
  border: 1px solid var(--color-rose-light);
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-insta-pill:hover {
  background: var(--color-wine-dark);
  color: var(--color-white);
  border-color: var(--color-wine-dark);
}

.btn-insta-pill svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-wine-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  font-size: 0.9rem;
  color: var(--color-graphite-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-list a .arrow {
  color: var(--color-rose-medium);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--color-wine-dark);
}

.footer-link-list a:hover .arrow {
  transform: translateX(3px);
  color: var(--color-wine-dark);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--color-graphite-muted);
}

.contact-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-rose-ultra-light);
  color: var(--color-wine-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-circle svg {
  width: 16px;
  height: 16px;
}

.contact-row a {
  color: var(--color-graphite-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-row a:hover {
  color: var(--color-wine-dark);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(168, 32, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-graphite-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-motto {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
  color: var(--color-wine-dark);
  font-family: var(--font-title);
  font-size: 0.95rem;
}

.motto-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-copyright {
  color: var(--color-graphite-muted);
}

.footer-developer a {
  color: var(--color-wine-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-developer a:hover {
  color: var(--color-rose-medium);
}

@media (max-width: 992px) {
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-grid-4col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
  .authority-label {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   ABOUT CLINIC SECTION (EXACT DESIGN MATCH)
   ========================================================================== */
.about-section {
  background-color: var(--color-rose-ultra-light);
  position: relative;
  overflow: hidden;
}

.about-botanical-bg {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 260px;
  height: 380px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.about-botanical-bg svg {
  width: 100%;
  height: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-wine-main);
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--color-wine-dark);
  line-height: 1.22;
  margin-bottom: 24px;
}

.about-title .highlight-pink {
  color: var(--color-wine-main);
  font-style: normal;
}

.about-text {
  font-size: 1rem;
  color: var(--color-graphite-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-callout-box {
  background: rgba(245, 216, 223, 0.35);
  border: 1px solid rgba(168, 32, 69, 0.12);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 32px 0;
}

.callout-icon {
  color: var(--color-wine-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-icon svg {
  width: 24px;
  height: 24px;
}

.callout-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-wine-dark);
  line-height: 1.5;
}

.btn-about-cta {
  background: var(--color-white);
  border: 1.5px solid var(--color-wine-main);
  color: var(--color-wine-main);
  padding: 12px 26px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

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

.btn-about-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-about-cta:hover svg {
  transform: translateX(4px);
}

.about-image-column {
  position: relative;
}

.about-image-frame-rounded {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(116, 21, 47, 0.08);
}

.about-image-frame-rounded img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-seal-badge-wine {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--color-wine-dark);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 28px rgba(116, 21, 47, 0.35);
  border: 4px solid var(--color-white);
}

.about-seal-badge-wine .num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.9;
  color: var(--color-white);
}

.about-seal-badge-wine .lbl-anos {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
  color: var(--color-white);
}

.about-seal-badge-wine .lbl-historia {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1px;
}

@media (max-width: 992px) {
  .about-section {
    padding: 44px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-botanical-bg {
    display: none;
  }
  .about-title {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .about-text {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .about-image-frame-rounded img {
    height: 260px;
  }
  .about-seal-badge-wine {
    bottom: -12px;
    right: -4px;
    width: 90px;
    height: 90px;
  }
  .about-seal-badge-wine .num {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 36px 0;
  }
  .about-title {
    font-size: 1.5rem;
  }
  .about-image-frame-rounded img {
    height: 220px;
  }
}

/* ==========================================================================
   TREATMENTS SECTION
   ========================================================================== */
.treatments-section {
  background: var(--color-rose-ultra-light);
  border-top: 1px solid var(--color-rose-light);
  border-bottom: 1px solid var(--color-rose-light);
}

.treatments-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  border-radius: 20px;
  padding: 36px 30px;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(168, 32, 69, 0.08);
  border-color: var(--color-rose-medium);
}

.treatment-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--color-rose-ultra-light);
  border: 1px solid var(--color-rose-light);
  color: var(--color-wine-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.treatment-card:hover .treatment-icon {
  background: var(--color-wine-main);
  color: var(--color-white);
  border-color: var(--color-wine-main);
}

.treatment-icon svg {
  width: 26px;
  height: 26px;
}

.treatment-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 12px;
}

.treatment-desc {
  font-size: 0.95rem;
  color: var(--color-graphite-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.treatment-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-wine-main);
  transition: color 0.2s ease;
  margin-top: auto;
}

.treatment-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.treatment-card:hover .treatment-link svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .treatments-section {
    padding: 48px 0;
  }
  .treatments-header {
    margin-bottom: 32px;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .treatment-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .treatment-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 10px;
  }
  .treatment-icon svg {
    width: 22px;
    height: 22px;
  }
  .treatment-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .treatment-desc {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   DIFFERENTIALS SECTION (DARK WINE BACKGROUND)
   ========================================================================== */
.differentials-section {
  background: var(--color-wine-dark);
  color: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.differentials-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 138, 159, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.differentials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.differentials-header .section-tag {
  background: rgba(245, 216, 223, 0.15);
  border-color: rgba(245, 216, 223, 0.25);
  color: var(--color-rose-light);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.differential-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 216, 223, 0.15);
  border-radius: 20px;
  padding: 32px 24px;
  transition: var(--transition-fast);
  backdrop-filter: blur(6px);
}

.differential-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-rose-medium);
  transform: translateY(-4px);
}

.differential-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-rose-medium);
  line-height: 1;
  margin-bottom: 18px;
}

.differential-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-off-white);
  margin-bottom: 12px;
}

.differential-desc {
  font-size: 0.92rem;
  color: rgba(250, 248, 246, 0.78);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .differentials-section {
    padding: 48px 0;
  }
  .differentials-header {
    margin-bottom: 32px;
  }
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .differential-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .differential-num {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .differential-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .differential-desc {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .differential-card {
    padding: 18px 14px;
  }
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-section {
  background: var(--color-off-white);
}

.team-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(40, 35, 38, 0.04);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(168, 32, 69, 0.1);
  border-color: var(--color-rose-medium);
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-rose-ultra-light);
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo-wrapper img {
  transform: scale(1.03);
}

.team-cro-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-rose-light);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-wine-dark);
  letter-spacing: 0.05em;
}

.team-info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-wine-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.team-desc {
  font-size: 0.92rem;
  color: var(--color-graphite-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .team-section {
    padding: 48px 0;
  }
  .team-header {
    margin-bottom: 32px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .team-card {
    border-radius: 18px;
  }
  .team-info {
    padding: 20px 18px;
  }
  .team-name {
    font-size: 1.35rem;
  }
  .team-role {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  .team-desc {
    font-size: 0.86rem;
    line-height: 1.55;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   CLINIC GALLERY / ESTRUTURA SECTION (EXACT DESIGN MATCH)
   ========================================================================== */
.structure-section {
  background-color: var(--color-rose-ultra-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-rose-light);
  border-bottom: 1px solid var(--color-rose-light);
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.structure-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  min-width: 0;
}

.structure-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.structure-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-rose-medium);
  margin-bottom: 14px;
}

.structure-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-wine-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.structure-desc {
  font-size: 0.95rem;
  color: var(--color-graphite-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-structure-cta {
  background: var(--color-white);
  border: 1.5px solid var(--color-wine-main);
  color: var(--color-wine-main);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

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

.structure-gallery-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  min-width: 0;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.structure-gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(40, 35, 38, 0.05);
}

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

.gallery-card:hover img {
  transform: scale(1.05);
}

.card-reception {
  width: 320px;
  height: 280px;
}

.gallery-col-stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.card-stacked-top,
.card-stacked-bottom {
  width: 190px;
  height: 134px;
}

.card-vertical-staff {
  width: 150px;
  height: 280px;
}

.card-wine-trigger {
  width: 140px;
  height: 280px;
  background: var(--color-wine-dark);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 16px;
  transition: var(--transition-fast);
}

.card-wine-trigger:hover {
  background: var(--color-wine-main);
  transform: translateY(-2px);
}

.wine-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-white);
}

.wine-card-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .structure-grid-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    min-width: 0;
  }
  .card-reception {
    width: 260px;
    height: 220px;
  }
  .card-vertical-staff,
  .card-wine-trigger {
    width: 130px;
    height: 220px;
  }
  .card-stacked-top,
  .card-stacked-bottom {
    width: 145px;
    height: 104px;
  }
}

@media (max-width: 992px) {
  .structure-section {
    padding: 48px 0;
  }

  .structure-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }

  .structure-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .structure-gallery-strip {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 4px 0 12px 0;
  }

  .gallery-card {
    border-radius: 12px;
  }

  .card-reception {
    width: 210px;
    height: 160px;
  }

  .card-stacked-top,
  .card-stacked-bottom {
    width: 115px;
    height: 76px;
  }

  .gallery-col-stacked {
    gap: 8px;
  }

  .card-vertical-staff {
    width: 105px;
    height: 160px;
  }
}

@media (max-width: 576px) {
  .container-wide {
    padding: 0 16px;
  }

  .structure-section {
    padding: 40px 0;
  }

  .structure-title {
    font-size: 1.5rem;
  }

  .card-reception {
    width: 190px;
    height: 144px;
  }

  .card-stacked-top,
  .card-stacked-bottom {
    width: 100px;
    height: 68px;
  }

  .card-vertical-staff {
    width: 95px;
    height: 144px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(40, 35, 38, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.is-active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   SERVICE PROCESS SECTION
   ========================================================================== */
.process-section {
  background: var(--color-off-white);
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--color-rose-light);
  z-index: 1;
}

.process-card {
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-fast);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-rose-medium);
  box-shadow: 0 10px 24px rgba(168, 32, 69, 0.06);
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-rose-ultra-light);
  border: 2px solid var(--color-wine-main);
  color: var(--color-wine-main);
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--color-graphite-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS / RATING SECTION
   ========================================================================== */
.testimonials-section {
  background: var(--color-rose-ultra-light);
  border-top: 1px solid var(--color-rose-light);
  border-bottom: 1px solid var(--color-rose-light);
}

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-score-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(40, 35, 38, 0.04);
  margin-top: 16px;
}

.rating-score-box .score {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-wine-dark);
  line-height: 1;
}

.rating-score-box .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-score-box .stars {
  display: flex;
  gap: 4px;
  color: #E5A93C;
}

.rating-score-box .stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-score-box .source {
  font-size: 0.82rem;
  color: var(--color-graphite-muted);
  margin-top: 2px;
}

.reviews-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  background: var(--color-off-white);
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.is-open {
  border-color: var(--color-rose-medium);
  box-shadow: 0 8px 24px rgba(168, 32, 69, 0.06);
}

.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-graphite);
  padding-right: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-rose-ultra-light);
  color: var(--color-wine-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-wine-main);
  color: var(--color-white);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--color-graphite-muted);
  line-height: 1.65;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.location-section {
  background: var(--color-rose-ultra-light);
  border-top: 1px solid var(--color-rose-light);
  border-bottom: 1px solid var(--color-rose-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 40px 0;
  width: 100%;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-rose-light);
  color: var(--color-wine-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon-box svg {
  width: 22px;
  height: 22px;
}

.location-detail-text h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 2px;
}

.location-detail-text p {
  font-size: 0.95rem;
  color: var(--color-graphite-muted);
  line-height: 1.5;
}

.location-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.map-wrapper {
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-rose-light);
  box-shadow: 0 12px 30px rgba(40, 35, 38, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    height: 340px;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (BRAND WINE STYLING)
   ========================================================================== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-wine-dark);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(116, 21, 47, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  text-decoration: none;
}

.floating-wa.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-wa.is-visible:hover {
  transform: scale(1.08);
  background-color: var(--color-wine-main);
  box-shadow: 0 12px 30px rgba(116, 21, 47, 0.4);
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   FINAL CTA SECTION (LIGHT LUXURY ROSÉ DESIGN)
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(180deg, #FDF7F8 0%, #F8ECEE 100%);
  color: var(--color-graphite);
  text-align: center;
  padding: 88px 0 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #F0DAE0;
}

/* Decorative Curves (Top-Left) */
.cta-decorative-curves {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 420px;
  height: 300px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.cta-decorative-curves svg {
  width: 100%;
  height: 100%;
}



.final-cta-content {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-tag-clean {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C8758C;
  margin-bottom: 18px;
}

.final-cta-title {
  font-family: var(--font-title);
  font-size: 2.85rem;
  font-weight: 400;
  color: #74152F;
  margin-bottom: 22px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.final-cta-desc {
  font-size: 1.05rem;
  color: #7A6A70;
  margin-bottom: 34px;
  line-height: 1.65;
  max-width: 680px;
}

.btn-cta-wine {
  background: #841634;
  color: #FFFFFF;
  padding: 16px 38px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(132, 22, 52, 0.25);
  transition: var(--transition-fast);
  text-decoration: none;
  margin-bottom: 40px;
}

.btn-cta-wine:hover {
  background: #6B1129;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(132, 22, 52, 0.35);
  color: #FFFFFF;
}

.btn-cta-wine svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-cta-wine:hover svg {
  transform: translateX(4px);
}

/* 3 Diferenciais em Linha */
.cta-differentials {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  color: #7A6A70;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diff-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.diff-divider {
  color: rgba(200, 117, 140, 0.35);
  font-weight: 300;
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 56px 0 48px 0;
  }
  .final-cta-title {
    font-size: 2rem;
  }
  .final-cta-desc {
    font-size: 0.95rem;
  }
  .btn-cta-wine {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
  .cta-watermark-tooth {
    width: 65%;
    right: -15%;
    opacity: 0.08;
  }
  .cta-differentials {
    flex-direction: column;
    gap: 12px;
  }
  .diff-divider {
    display: none;
  }
}

/* ==========================================================================
   LIGHT ELEGANT 4-COLUMN FOOTER (EXACT REFERENCE MATCH)
   ========================================================================== */
.footer {
  background: #FAF6F4;
  color: var(--color-graphite);
  padding: 68px 0 28px 0;
  border-top: 1px solid #EEDBDD;
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: #6B5C62;
  line-height: 1.65;
  max-width: 290px;
  margin-bottom: 22px;
}

.btn-insta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #74152F;
  background: transparent;
  border: 1.5px solid #D98A9F;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-insta-pill:hover {
  background: #74152F;
  color: #FFFFFF;
  border-color: #74152F;
}

.btn-insta-pill svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: #74152F;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  font-size: 0.9rem;
  color: #55484D;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-list a .arrow {
  color: #C8758C;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.footer-link-list a:hover {
  color: #74152F;
}

.footer-link-list a:hover .arrow {
  transform: translateX(3px);
  color: #74152F;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #6B5C62;
}

.contact-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3E2E5;
  color: #74152F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-circle svg {
  width: 16px;
  height: 16px;
}

.contact-row a {
  color: #6B5C62;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-row a:hover {
  color: #74152F;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid #EEDBDD;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #7A6A70;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-motto {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
  color: #74152F;
  font-family: var(--font-title);
  font-size: 0.95rem;
}

.motto-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-copyright {
  color: #7A6A70;
}

.footer-developer a {
  color: #74152F;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-developer a:hover {
  color: #C8758C;
}

@media (max-width: 768px) {
  .footer-col.nav-col,
  .footer-col.specs-col {
    display: none;
  }
}

@media (max-width: 992px) {
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-grid-4col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}


