/* =============================================================
   style.css – Dra. Janeide Góis
   Ginecologia & Obstetrícia | Imperatriz - MA
   Paleta: Rose / Vinho / Plum — Design Feminino Premium
   Sem dependências externas – apenas Google Fonts via index.html
   ============================================================= */

/* -------------------------------------------------------
   1. VARIÁVEIS / DESIGN TOKENS
   ------------------------------------------------------- */
:root {
  /* Cores primárias */
  --color-primary:       #8B3A62;    /* vinho/rosa escuro */
  --color-primary-dark:  #6C2D4E;    /* vinho mais escuro */
  --color-primary-light: #A85278;    /* rose médio */
  --color-secondary:     #C4748A;    /* mauve/rose */
  --color-accent:        #F2D9E4;    /* blush claro */
  --color-accent-gold:   #D4A56A;    /* dourado suave */

  /* Neutros */
  --color-white:         #FFFFFF;
  --color-light:         #FDF8FA;
  --color-light-2:       #F7EEF3;
  --color-neutral-100:   #F3E8EF;
  --color-neutral-200:   #ECD5E2;
  --color-neutral-400:   #9E7A8E;
  --color-text:          #2D1A25;
  --color-text-muted:    #64748B;
  --color-text-light:    #94A3B8;

  /* Typography */
  --font-heading:        'DM Serif Display', Georgia, serif;
  --font-body:           'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(139, 58, 98, 0.08);
  --shadow-md:   0 4px 24px rgba(139, 58, 98, 0.14);
  --shadow-lg:   0 8px 40px rgba(139, 58, 98, 0.18);
  --shadow-card: 0 2px 16px rgba(139, 58, 98, 0.1);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin: 0; }

/* -------------------------------------------------------
   3. LAYOUT HELPERS
   ------------------------------------------------------- */
.page-wrapper {
  overflow: hidden;
}

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

.w-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.w-layout-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.split-content { display: flex; flex-direction: column; justify-content: center; }

.flex-vc { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

._2-buttons { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
._2-buttons.justify-center { justify-content: center; }

/* -------------------------------------------------------
   4. TYPOGRAPHY CLASSES
   ------------------------------------------------------- */
.subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
  display: block;
}

.subtitle.color-primary-1 { color: var(--color-primary); }

.title {
  font-family: var(--font-heading);
  color: var(--color-text);
  margin-bottom: 20px;
}

.title.home-hero {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.title.home-about,
.title.home-services,
.title.testimonials,
.title.cta {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.title.cta { color: var(--color-white); }

.title.card-home-feature {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 8px;
}

.title.card-service {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.title.card-testimonial-about-name {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0 14px;
}

.title.footer-title {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.paragraph.home-hero { font-size: 1.1rem; max-width: 520px; margin-bottom: 28px; }
.paragraph.home-about { margin-bottom: 24px; }
.paragraph.cta { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.paragraph.card-service { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; }
.paragraph.card-testimonial { font-size: 0.95rem; line-height: 1.7; color: var(--color-text-muted); margin-bottom: 20px; font-style: italic; }

.paragraph-small {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.paragraph-small.footer-address { color: #9E7A8E; line-height: 1.75; }
.paragraph-small.small-print { font-size: 0.875rem; color: #9E7A8E; }

/* -------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------- */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(139, 58, 98, 0.35);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 58, 98, 0.45);
  color: var(--color-white);
}

.button-primary.bg-secondary-1 {
  background: linear-gradient(135deg, var(--color-secondary), #D9919E);
  box-shadow: 0 4px 16px rgba(196, 116, 138, 0.4);
}

.button-primary.bg-white-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: none;
}

.button-primary.bg-white-outline:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: none;
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.button-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* -------------------------------------------------------
   6. NAVBAR / HEADER
   ------------------------------------------------------- */
.header.w-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(139, 58, 98, 0.08);
}

/* Top contact bar */
.header-topbar {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 8px 0;
}

.header-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-contact-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-contact-link:hover { color: var(--color-accent); }
.header-contact-link.last { font-weight: 700; color: var(--color-white); }

.contact-icon { font-size: 0.9rem; }

/* Main header */
.header-main {
  padding: 10px 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand.w-nav-brand {
  display: block;
  flex-shrink: 0;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.header-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.w--current {
  color: var(--color-primary);
  background: var(--color-accent);
}

/* Header buttons */
.split-content.header-right { flex-direction: row; align-items: center; gap: 20px; }
.split-content.header-left { flex-direction: row; align-items: center; gap: 12px; }

.header-button {
  padding: 11px 24px;
  font-size: 0.875rem;
}

.header-button-mobile { display: none !important; }

/* Hamburger menu */
.menu-button.w-nav-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  border: none;
  outline: none;
}

.menu-line-top, .menu-line-middle, .menu-line-bottom {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-button.w--open .menu-line-top    { transform: rotate(45deg) translate(5px, 5px); }
.menu-button.w--open .menu-line-middle { opacity: 0; }
.menu-button.w--open .menu-line-bottom { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Overlay (mobile) */
.w-nav-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.w-nav-overlay .nav-menu.w-nav-menu { display: block !important; }

/* -------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------- */
.section.home-hero {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--color-light) 0%, var(--color-accent) 50%, var(--color-light-2) 100%);
  position: relative;
  overflow: hidden;
}

.section.home-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,116,138,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bg.home-hero {
  display: none;
}

.home-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 60px;
}

.split-content.home-hero-left {
  z-index: 2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* Hero image */
.split-content.home-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.image-wrapper.home-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: 600px;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image.home-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-circle {
  position: absolute;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  opacity: 0.12;
  z-index: 1;
}

/* -------------------------------------------------------
   8. FEATURES SECTION
   ------------------------------------------------------- */
.section.home-features {
  padding: 60px 0;
  background: var(--color-white);
  box-shadow: 0 -1px 0 var(--color-neutral-200);
}

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

.card.home-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-200);
  transition: var(--transition);
}

.card.home-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
}

/* -------------------------------------------------------
   9. ABOUT SECTION
   ------------------------------------------------------- */
.section.home-about {
  background: var(--color-light);
}

.home-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-content.home-about-left {
  position: relative;
}

.image-wrapper.home-about {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.image.home-about {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  min-width: 220px;
}

.accent-card-icon { font-size: 2rem; }

.accent-card-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.accent-card-text strong { display: block; font-weight: 700; }

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.list-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* -------------------------------------------------------
   10. SERVICES SECTION
   ------------------------------------------------------- */
.section.home-services {
  background: var(--color-white);
}

.top-content.home-services {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.split-content.home-services-left { flex: 1; }

.paragraph.services-desc {
  flex: 1;
  max-width: 400px;
  padding-top: 8px;
  align-self: flex-end;
}

/* CAROUSEL */
.expertises-carousel-wrapper {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.expertises-carousel-track {
  display: flex;
  gap: 24px;
  user-select: none;
  will-change: transform;
  cursor: grab;
}

.card-service-item {
  flex: 0 0 300px;
}

.card.service {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: block;
  width: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.card.service:hover,
.card.service.glow {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card.service.glow {
  border-color: var(--color-primary);
  background: linear-gradient(160deg, var(--color-white), var(--color-accent));
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.service-icon-wrap svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

/* -------------------------------------------------------
   11. CTA SECTION
   ------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.split-content.cta-left {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.cta-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  z-index: 1;
}

.cta-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--color-primary), transparent);
  z-index: 2;
}

.image.cta {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) saturate(0.85);
}

/* -------------------------------------------------------
   12. TESTIMONIALS SECTION
   ------------------------------------------------------- */
.section.bg-neutral-200 {
  background: var(--color-light-2);
}

.top-content.testimonials {
  margin-bottom: 48px;
}

/* Testimonials Carousel */
.testi-carousel-wrapper {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.testi-carousel-track {
  display: flex;
  gap: 24px;
  user-select: none;
  will-change: transform;
}

.card.testimonial {
  flex: 0 0 360px;
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.card-testimonial-about-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

/* -------------------------------------------------------
   13. CONTACT / LOCAIS SECTION
   ------------------------------------------------------- */
.contato-section {
  background: var(--color-white);
}

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

.locais-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.locais-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.locais-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contato-card {
  background: var(--color-light);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.contato-card.endereco-card {
  border-color: var(--color-secondary);
  background: linear-gradient(160deg, var(--color-white), var(--color-accent));
}

.contato-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.contato-titulo {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.contato-detalhe {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contato-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
}

.contato-link:hover { color: var(--color-primary-dark); text-decoration: underline; }

/* WhatsApp CTA grande */
.whatsapp-cta-wrapper {
  text-align: center;
}

.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25D366, #20BA5A);
  color: white;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  color: white;
}

/* -------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------- */
.footer {
  background: linear-gradient(160deg, #1A0A12, #2D1A25);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-links-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.9rem;
  color: #9E7A8E;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4748A;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-nav-links.w-list-unstyled li + li { margin-top: 10px; }

.footer-nav-link {
  font-size: 0.9rem;
  color: #9E7A8E;
  transition: var(--transition);
  display: inline-block;
}

.footer-nav-link:hover { color: var(--color-secondary); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.small-print-wrapper {
  padding: 20px 0;
  text-align: center;
}

/* -------------------------------------------------------
   15. FLOATING WHATSAPP BUTTON
   ------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #20BA5A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  color: white;
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-text);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* -------------------------------------------------------
   16. REVEAL ANIMATIONS
   ------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

.glow {
  transition: var(--transition), box-shadow 0.5s ease;
}

/* -------------------------------------------------------
   17. RESPONSIVE – TABLET (max-width: 991px)
   ------------------------------------------------------- */
@media screen and (max-width: 991px) {
  /* Nav */
  .menu-button.w-nav-button { display: flex; }
  .nav-menu.w-nav-menu { display: none; }
  .header-button { display: none; }
  .header-button-mobile { display: block !important; }

  .nav-menu.w-nav-menu[data-nav-menu-open] {
    display: block;
    padding: 16px;
  }

  .header-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-link { width: 100%; }

  /* Hero */
  .home-hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 130px 0 48px;
    gap: 40px;
  }

  .split-content.home-hero-left { align-items: center; }

  .paragraph.home-hero { margin: 0 auto 28px; }

  .hero-badges { justify-content: center; }

  .image-wrapper.home-hero {
    height: 420px;
    max-width: 380px;
    margin: 0 auto;
  }

  /* Features */
  .home-features-grid { grid-template-columns: 1fr; }

  /* About */
  .home-about-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .image-wrapper.home-about { height: 420px; }
  .about-accent-card { right: 0; bottom: -16px; }

  /* Services */
  .top-content.home-services { flex-direction: column; }

  /* CTA */
  .cta-image-wrapper { display: none; }

  /* Contato */
  .contato-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-area { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------------
   18. RESPONSIVE – MOBILE (max-width: 767px)
   ------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .section { padding: 64px 0; }

  .header-contact-wrapper { justify-content: center; gap: 12px; }
  .header-contact-link { font-size: 0.78rem; }

  .home-hero-wrapper { padding: 110px 0 40px; }

  .image-wrapper.home-hero { height: 340px; }

  .card.home-feature { flex-direction: column; gap: 14px; padding: 24px 20px; }

  .about-list { grid-template-columns: 1fr; }
  .image-wrapper.home-about { height: 340px; }
  .about-accent-card { position: relative; right: auto; bottom: auto; margin-top: 20px; }

  .card-service-item { flex: 0 0 260px; }

  .card.testimonial { flex: 0 0 300px; }

  ._2-buttons { flex-direction: column; align-items: flex-start; }
  ._2-buttons.justify-center { align-items: center; }

  .contato-card { flex-direction: column; gap: 16px; padding: 24px 20px; }

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

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* -------------------------------------------------------
   19. RESPONSIVE – EXTRA SMALL (max-width: 479px)
   ------------------------------------------------------- */
@media screen and (max-width: 479px) {
  .container-default,
  .w-container { padding: 0 16px; }

  .header-contact-wrapper { display: none; }
  .header-topbar { display: none; }

  .logo-img { height: 50px; }

  .title.home-hero { font-size: 2.2rem; }

  .image-wrapper.home-hero { height: 280px; max-width: 300px; }

  .card-service-item { flex: 0 0 240px; }
  .card.testimonial { flex: 0 0 270px; }

  .whatsapp-cta-btn { padding: 15px 24px; font-size: 0.95rem; }
}

/* -------------------------------------------------------
   20. DIVIDER
   ------------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--color-neutral-200);
}

/* W-NAV MENU OPEN (mobile) */
[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-neutral-200);
  padding: 16px;
  box-shadow: var(--shadow-md);
}

/* -------------------------------------------------------
   21. SURGERY HIGHLIGHT SECTION
   ------------------------------------------------------- */
.surgery-highlight-section {
  background: linear-gradient(160deg, var(--color-light) 0%, var(--color-white) 60%, var(--color-accent) 100%);
  overflow: hidden;
  position: relative;
}

.surgery-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.35;
}

.surgery-bg-blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-secondary), transparent 70%);
  top: -100px;
  right: -100px;
}

.surgery-bg-blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary-light), transparent 70%);
  bottom: -80px;
  left: -80px;
  opacity: 0.2;
}

.surgery-highlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- IMAGE SIDE --- */
.surgery-img-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.surgery-img-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 28px 28px 28px 80px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 58, 98, 0.25);
}

.surgery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.surgery-img-frame:hover .surgery-img {
  transform: scale(1.04);
}

.surgery-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(108, 45, 78, 0.5) 100%
  );
  pointer-events: none;
}

.surgery-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(139, 58, 98, 0.18);
  border: 1px solid rgba(196, 116, 138, 0.25);
}

.surgery-badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.surgery-badge-float div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.surgery-badge-float strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: block;
}

.surgery-badge-float span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Stat cards below image */
.surgery-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.surgery-stat {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.surgery-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 4px 0 0 4px;
}

.surgery-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.surgery-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
}

.surgery-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* --- CONTENT SIDE --- */
.surgery-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.surgery-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.surgery-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.surgery-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.surgery-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 16px;
}

.surgery-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

/* Features list */
.surgery-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.surgery-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.surgery-feature-item:hover {
  border-color: var(--color-secondary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.surgery-feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.surgery-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
}

.surgery-feature-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.surgery-feature-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-body);
}

.surgery-feature-item span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.surgery-cta {
  align-self: flex-start;
}

/* -------------------------------------------------------
   21. SURGERY SECTION – RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 991px) {
  .surgery-highlight-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .surgery-img-frame {
    height: 420px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .surgery-img-frame {
    height: 320px;
  }

  .surgery-title {
    font-size: 1.9rem;
  }

  .surgery-stat-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .surgery-stat-number {
    font-size: 1.6rem;
  }

  .surgery-feature-item {
    padding: 14px 16px;
  }

  .surgery-cta {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

