    /* ===== CSS VARIABLES ===== */
    :root {
      --navy: #061B4D;
      --navy-light: #0a2660;
      --navy-dark: #040f2e;
      --gold: #D4AF6A;
      --gold-light: #e8c988;
      --gold-dark: #b8923f;
      --ice: #F8F8F8;
      --white: #ffffff;
      --charcoal: #1C1C1C;
      --gray: #5a5a6e;
      --gray-light: #9a9aaa;
      --border: rgba(212, 175, 106, 0.2);
      --shadow-gold: 0 4px 40px rgba(212,175,106,0.12);
      --shadow-navy: 0 8px 60px rgba(6,27,77,0.18);
      --radius: 2px;
      --radius-lg: 6px;
      --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--charcoal);
      background: var(--ice);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { border: none; cursor: pointer; font-family: inherit; }

    /* ===== TYPOGRAPHY ===== */
    .serif { font-family: 'Cormorant Garamond', serif; }

    /* ===== UTILITIES ===== */
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .section-label--wide {
      display: block;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      margin-bottom: 4px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--navy);
    }
    .section-title.light { color: var(--white); }
    .divider-gold {
      display: block;
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 20px 0;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--navy-dark);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: var(--radius);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.12);
      opacity: 0;
      transition: var(--transition);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,106,0.35); }
    .btn-primary:hover::after { opacity: 1; }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--navy);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 15px 34px;
      border: 1px solid var(--navy);
      border-radius: var(--radius);
      transition: var(--transition);
    }
    .btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
    .btn-outline.light { color: var(--white); border-color: rgba(255,255,255,0.4); }
    .btn-outline.light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 15px 34px;
      border: 1px solid rgba(212,175,106,0.45);
      border-radius: var(--radius);
      transition: var(--transition);
    }
    .btn-whatsapp:hover { background: rgba(212,175,106,0.12); border-color: var(--gold); transform: translateY(-2px); }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .delay-1 { transition-delay: 0.1s !important; }
    .delay-2 { transition-delay: 0.2s !important; }
    .delay-3 { transition-delay: 0.3s !important; }
    .delay-4 { transition-delay: 0.4s !important; }
    .delay-5 { transition-delay: 0.5s !important; }

    /* ===== HEADER ===== */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 24px 0;
      transition: var(--transition);
    }
    #header.scrolled {
      padding: 14px 0;
      background: rgba(6, 27, 77, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(212,175,106,0.15);
      box-shadow: 0 4px 40px rgba(0,0,0,0.18);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .logo-subtitle {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .logo-line { display: flex; align-items: center; gap: 10px; }
    .logo-emblem {
      width: 36px; height: 36px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-emblem svg { width: 18px; height: 18px; }
    nav { display: flex; align-items: center; gap: 36px; }
    nav a {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      transition: color 0.3s;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    nav a:hover { color: var(--white); }
    nav a:hover::after { width: 100%; }
    .nav-cta { margin-left: 8px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--white);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--navy-dark);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mobile-menu.open { opacity: 1; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 24px; right: 32px;
      font-size: 2rem;
      color: var(--white);
      cursor: pointer;
      background: none; border: none;
    }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      background: var(--navy-dark);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(10,38,96,0.7) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,175,106,0.06) 0%, transparent 60%),
        linear-gradient(135deg, #040f2e 0%, #061B4D 50%, #0a2660 100%);
    }
    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(212,175,106,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,106,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-gold-accent {
      position: absolute;
      top: 0; right: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(135deg, transparent 40%, rgba(212,175,106,0.04) 100%);
    }
    .hero-line-v {
      position: absolute;
      right: 44%;
      top: 10%;
      bottom: 10%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(212,175,106,0.3), transparent);
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
      padding-top: 100px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 32px;
    }
    .hero-badge-line { width: 32px; height: 1px; background: var(--gold); }
    .hero-badge-text {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 28px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-subtitle {
      font-size: 0.97rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      max-width: 460px;
      margin-bottom: 48px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-image-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-photo-frame {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
    }
    .hero-photo-outer {
      position: relative;
      padding-bottom: 115%;
      overflow: hidden;
      border-radius: 1px;
    }
    .hero-photo-outer img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .hero-frame-corner {
      position: absolute;
      width: 32px; height: 32px;
      border-color: var(--gold);
      border-style: solid;
      opacity: 0.6;
    }
    .hero-frame-corner.tl { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
    .hero-frame-corner.tr { top: -8px; right: -8px; border-width: 1px 1px 0 0; }
    .hero-frame-corner.bl { bottom: -8px; left: -8px; border-width: 0 0 1px 1px; }
    .hero-frame-corner.br { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }
    .hero-photo-tag {
      position: absolute;
      bottom: -20px;
      left: 20px;
      background: var(--gold);
      color: var(--navy-dark);
      padding: 12px 20px;
      border-radius: var(--radius);
    }
    .hero-photo-tag-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
    }
    .hero-photo-tag-crm {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
    }
    .hero-scroll-text {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollLine 2s ease infinite;
    }
    @keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

    /* ===== STRIP ===== */
    .strip {
      background: var(--gold);
      padding: 18px 0;
      overflow: hidden;
    }
    .strip-inner {
      display: flex;
      align-items: center;
      gap: 60px;
      animation: stripScroll 22s linear infinite;
      white-space: nowrap;
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--navy); opacity: 0.4; }
    .strip-text {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy-dark);
    }
    @keyframes stripScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ===== SOBRE ===== */
    #sobre {
      padding: 120px 0;
      background: var(--white);
    }
    .sobre-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .sobre-image-wrap {
      position: relative;
      padding-bottom: 32px;
    }
    .sobre-photo-frame {
      position: relative;
      width: 100%;
    }
    .sobre-photo {
      position: relative;
      padding-bottom: 120%;
      background: linear-gradient(145deg, var(--ice), #ebebeb);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(6, 27, 77, 0.12);
    }
    .sobre-frame-corner {
      position: absolute;
      width: 32px;
      height: 32px;
      border-color: var(--gold);
      border-style: solid;
      opacity: 0.6;
      z-index: 2;
    }
    .sobre-frame-corner.tl { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
    .sobre-frame-corner.tr { top: -8px; right: -8px; border-width: 1px 1px 0 0; }
    .sobre-frame-corner.bl { bottom: -8px; left: -8px; border-width: 0 0 1px 1px; }
    .sobre-frame-corner.br { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }
    .sobre-photo-tag {
      position: absolute;
      bottom: -20px;
      left: 20px;
      z-index: 3;
      background: var(--navy);
      color: var(--white);
      padding: 12px 20px;
      border-radius: var(--radius);
      border-left: 3px solid var(--gold);
      box-shadow: var(--shadow-navy);
    }
    .sobre-photo-tag-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.2;
    }
    .sobre-photo-tag-role {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
      margin-top: 4px;
    }
    .sobre-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .sobre-badge {
      position: absolute;
      top: 32px; right: -24px;
      background: var(--navy);
      color: var(--white);
      padding: 20px 24px;
      border-radius: var(--radius);
      border-left: 3px solid var(--gold);
      box-shadow: var(--shadow-navy);
    }
    .sobre-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .sobre-badge-label {
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }
    .sobre-ornament {
      position: absolute;
      bottom: -16px; left: -16px;
      width: 80px; height: 80px;
      border: 1px solid var(--gold);
      opacity: 0.3;
      border-radius: var(--radius);
    }
    .sobre-bio {
      font-size: 0.97rem;
      line-height: 1.9;
      color: var(--gray);
      margin-bottom: 20px;
    }
    .sobre-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin: 32px 0;
    }
    .sobre-list-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .sobre-list-icon {
      width: 28px; height: 28px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .sobre-list-icon svg { width: 12px; height: 12px; stroke: var(--gold); }
    .sobre-list-text { font-size: 0.9rem; color: var(--charcoal); line-height: 1.5; }
    .sobre-list-text strong { font-weight: 600; }

    /* ===== ESPECIALIDADES ===== */
    #especialidades {
      padding: 120px 0;
      background: var(--ice);
    }
    .section-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .section-header .section-label { margin-bottom: 14px; }
    .section-header .divider-gold { margin: 20px auto; }
    .section-header p {
      font-size: 0.97rem;
      color: var(--gray);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .esp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .esp-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.06);
      padding: 48px 36px;
      border-radius: var(--radius-lg);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .esp-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .esp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(212,175,106,0.2); }
    .esp-card:hover::before { transform: scaleX(1); }
    .esp-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(212,175,106,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
      transition: var(--transition);
    }
    .esp-card:hover .esp-icon {
  background: transparent;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,106,0.2);
}

.esp-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  transition: all 0.3s ease;
}

.esp-icon svg * {
  stroke: var(--gold);
  fill: none;
}

.esp-card:hover .esp-icon svg,
.esp-card:hover .esp-icon svg * {
  stroke: var(--gold-light);
  fill: none;
}
    .esp-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }

    /* ===== GALERIA SERVIÇOS ===== */
    .esp-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 56px;
    }
    .esp-gallery-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      padding-bottom: 65%;
    }
    .esp-gallery-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .esp-gallery-img:hover img { transform: scale(1.04); }
    .esp-gallery-img .esp-gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(4,15,46,0.85), transparent);
      padding: 28px 20px 16px;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }

    /* ===== JORNADA ===== */
    #jornada {
      padding: 120px 0;
      background: var(--white);
    }
    .jornada-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      margin-top: 72px;
    }
    .jornada-grid::before {
      content: '';
      position: absolute;
      top: 36px; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.4;
    }
    .jornada-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px;
      position: relative;
    }
    .jornada-num {
      width: 72px; height: 72px;
      border: 1px solid rgba(212,175,106,0.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--white);
      margin-bottom: 28px;
      transition: var(--transition);
      position: relative;
      z-index: 1;
    }
    .jornada-step:hover .jornada-num { background: var(--gold); border-color: var(--gold); }
    .jornada-num-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--navy);
      transition: color 0.3s;
    }
    .jornada-step:hover .jornada-num-text { color: var(--navy-dark); }
    .jornada-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .jornada-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

    /* ===== RINOPLASTIA ===== */
    #rinoplastia {
      padding: 120px 0;
      background: var(--ice);
    }
    .rino-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .rino-inner--full {
      grid-template-columns: 1fr;
    }
    .rino-image-wrap { position: relative; }
    .rino-image {
      padding-bottom: 110%;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #e8edf4, #d8dfe8);
    }
    .rino-image img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .rino-image-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #e8edf4 0%, #cdd4e2 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .rino-image-placeholder svg { width: 56px; height: 56px; stroke: rgba(6,27,77,0.2); fill: none; }
    .rino-image-placeholder span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(6,27,77,0.3); }
    .rino-image-caption {
      position: absolute;
      bottom: 28px; left: 28px; right: 28px;
      background: rgba(6,27,77,0.9);
      backdrop-filter: blur(10px);
      padding: 20px 24px;
      border-left: 3px solid var(--gold);
      border-radius: var(--radius);
    }
    .rino-caption-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--white);
      line-height: 1.4;
    }
    .rino-caption-author {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 8px;
    }
    .rino-bio {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--gray);
      margin-bottom: 24px;
    }
    .rino-indicacoes-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 18px;
      margin-top: 32px;
    }
    .rino-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 40px;
      margin-bottom: 36px;
    }
    .rino-list-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.97rem;
      color: var(--gray);
      line-height: 1.6;
    }
    .rino-list-item::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 7px;
    }

    /* ===== SEPTO ===== */
    #septo {
      padding: 120px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    #septo::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212,175,106,0.04) 0%, transparent 60%);
    }
    .septo-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .septo-inner--full {
      grid-template-columns: 1fr;
    }
    .septo-bio {
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.65);
      margin-bottom: 24px;
    }
    .septo-indicacoes-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 18px;
      margin-top: 32px;
    }
    .septo-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 40px;
      margin-bottom: 36px;
    }
    .septo-list-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.97rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
    .septo-list-item::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 7px;
    }
    .septo-image-wrap { position: relative; }
    .septo-image {
      padding-bottom: 110%;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #0a2660, #040f2e);
    }
    .septo-image-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #0d2d73 0%, #061B4D 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .septo-image-placeholder svg { width: 56px; height: 56px; stroke: rgba(212,175,106,0.2); fill: none; }
    .septo-image-placeholder span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(212,175,106,0.3); }

    /* ===== NASOFIBROSCOPIA ===== */
    #nasofi {
      padding: 120px 0;
      background: var(--white);
    }
    .nasofi-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .nasofi-inner--full {
      grid-template-columns: 1fr;
    }
    .nasofi-bio {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--gray);
      margin-bottom: 24px;
    }
    .nasofi-indicacoes-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 18px;
      margin-top: 32px;
    }
    .nasofi-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 40px;
      margin-bottom: 36px;
    }
    .nasofi-list-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.97rem;
      color: var(--gray);
      line-height: 1.6;
    }
    .nasofi-list-item::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 7px;
    }
    .nasofi-image-wrap { position: relative; }
    .nasofi-image {
      padding-bottom: 110%;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #e8edf4, #d8dfe8);
    }
    .nasofi-image-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #e8edf4 0%, #cdd4e2 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .nasofi-image-placeholder svg { width: 56px; height: 56px; stroke: rgba(6,27,77,0.2); fill: none; }
    .nasofi-image-placeholder span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(6,27,77,0.3); }

    /* ===== LOCAIS ===== */
    #locais {
      padding: 120px 0;
      background: var(--ice);
    }
    .locais-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 72px;
    }
    .local-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.06);
      padding: 40px 32px;
      border-radius: var(--radius-lg);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .local-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .local-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(212,175,106,0.2); }
    .local-card:hover::before { transform: scaleX(1); }
    .local-icon {
      width: 48px; height: 48px;
      border: 1px solid rgba(212,175,106,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }
    .local-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
    .local-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .local-addr { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
    .local-tel { display: flex; align-items: center; gap: 8px; }
    .local-tel svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; }
    .local-tel a { font-size: 0.9rem; color: var(--charcoal); font-weight: 500; transition: color 0.3s; }
    .local-tel a:hover { color: var(--gold); }

    /* ===== DIFERENCIAIS ===== */
    #diferenciais {
      padding: 120px 0;
      background: var(--white);
    }
    .dif-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .dif-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 40px;
    }
    .dif-item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: var(--transition);
      cursor: default;
    }
    .dif-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
    .dif-item:hover .dif-num { color: var(--gold); }
    .dif-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: rgba(6,27,77,0.12);
      line-height: 1;
      flex-shrink: 0;
      transition: color 0.3s;
      min-width: 40px;
    }
    .dif-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .dif-desc { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }
    .dif-image-wrap { position: relative; }
    .dif-image {
      padding-bottom: 110%;
      background: linear-gradient(145deg, #e8edf4, #d8dfe8);
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
    }
    .dif-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .dif-image-caption {
      position: absolute;
      bottom: 28px; left: 28px; right: 28px;
      background: rgba(6,27,77,0.9);
      backdrop-filter: blur(10px);
      padding: 20px 24px;
      border-left: 3px solid var(--gold);
      border-radius: var(--radius);
    }
    .dif-caption-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: var(--white);
      line-height: 1.4;
    }
    .dif-caption-author {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 8px;
    }

    /* ===== PROCESSO ===== */
    #processo {
      padding: 120px 0;
      background: var(--ice);
    }
    .processo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      margin-top: 72px;
    }
    .processo-grid::before {
      content: '';
      position: absolute;
      top: 36px; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.4;
    }
    .processo-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px;
      position: relative;
    }
    .processo-num {
      width: 72px; height: 72px;
      border: 1px solid rgba(212,175,106,0.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--white);
      margin-bottom: 28px;
      transition: var(--transition);
      position: relative;
      z-index: 1;
    }
    .processo-step:hover .processo-num { background: var(--gold); border-color: var(--gold); }
    .processo-num-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--navy);
      transition: color 0.3s;
    }
    .processo-step:hover .processo-num-text { color: var(--navy-dark); }
    .processo-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .processo-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

    /* ===== DEPOIMENTOS ===== */
    #depoimentos {
      padding: 120px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    #depoimentos::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      border: 1px solid rgba(212,175,106,0.08);
      border-radius: 50%;
    }
    #depoimentos::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 250px; height: 250px;
      border: 1px solid rgba(212,175,106,0.06);
      border-radius: 50%;
    }
    .dep-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 72px;
    }
    .dep-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(212,175,106,0.12);
      padding: 40px 32px;
      border-radius: var(--radius-lg);
      transition: var(--transition);
      position: relative;
    }
    .dep-card::before {
      content: '"';
      position: absolute;
      top: 16px; right: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      line-height: 1;
      color: rgba(212,175,106,0.12);
    }
    .dep-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(212,175,106,0.25); transform: translateY(-4px); }
    .dep-stars { display: flex; gap: 3px; margin-bottom: 20px; }
    .dep-stars span { font-size: 0.85rem; color: var(--gold); }
    .dep-text {
      font-size: 0.92rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.7);
      margin-bottom: 28px;
      font-style: italic;
    }
    .dep-author { display: flex; align-items: center; gap: 14px; }
    .dep-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(212,175,106,0.15);
      border: 1px solid rgba(212,175,106,0.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--gold);
    }
    .dep-name {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 2px;
    }
    .dep-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

    /* ===== FAQ ===== */
    #faq {
      padding: 120px 0;
      background: var(--white);
    }
    .faq-inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .faq-list { margin-top: 56px; }
    .faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 28px 0;
      cursor: pointer;
      user-select: none;
    }
    .faq-q-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }
    .faq-icon {
      width: 28px; height: 28px;
      border: 1px solid rgba(212,175,106,0.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
    }
    .faq-icon svg { width: 12px; height: 12px; stroke: var(--gold); transition: transform 0.3s; }
    .faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
    .faq-item.open .faq-icon svg { stroke: var(--navy-dark); transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 28px; }
    .faq-answer p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; }

    /* ===== CTA ===== */
    #cta {
      padding: 120px 0;
      background: var(--navy-dark);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,106,0.05) 0%, transparent 70%),
        linear-gradient(135deg, #040f2e 0%, #061B4D 100%);
    }
    .cta-border-top {
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.3;
    }
    .cta-border-bottom {
      position: absolute;
      bottom: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.3;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.15;
    }
    .cta-title em { color: var(--gold); font-style: italic; }
    .cta-sub {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      margin-bottom: 52px;
    }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-whatsapp-lg {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--navy-dark);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 20px 44px;
      border-radius: var(--radius);
      transition: var(--transition);
    }
    .btn-whatsapp-lg:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,175,106,0.3); }

    /* ===== CONTATO ===== */
    #contato {
      padding: 120px 0;
      background: var(--ice);
    }
    .contato-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contato-items {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 40px;
    }
    .contato-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .contato-icon {
      width: 44px; height: 44px;
      border: 1px solid rgba(212,175,106,0.35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contato-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
    .contato-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .contato-value {
      font-size: 0.95rem;
      color: var(--charcoal);
      line-height: 1.5;
    }
    .contato-map {
      background: #e0e4ed;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      height: 100%;
      min-height: 400px;
    }
    .contato-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      min-height: 400px;
    }
    .map-overlay {
      position: absolute;
      top: 20px; left: 20px;
      background: var(--navy);
      color: var(--white);
      padding: 12px 18px;
      border-radius: var(--radius);
      border-left: 3px solid var(--gold);
      font-size: 0.78rem;
      font-weight: 500;
      pointer-events: none;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-dark);
      padding: 64px 0 32px;
      border-top: 1px solid rgba(212,175,106,0.1);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 32px;
    }
    .footer-bio {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.75;
      margin-top: 16px;
      margin-bottom: 24px;
    }
    .footer-social { display: flex; gap: 12px; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); transition: stroke 0.3s; }
    .social-btn:hover { border-color: var(--gold); background: rgba(212,175,106,0.1); }
    .social-btn:hover svg { stroke: var(--gold); }
    .footer-col-title {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
    }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
      transition: color 0.3s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.5); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .hero-inner { gap: 48px; }
      .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
      .footer-inner > :last-child { display: none; }
    }
    @media (max-width: 900px) {
      nav { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .hero-inner { grid-template-columns: 1fr; padding-top: 120px; }
      .hero-image-wrap { order: -1; max-width: 360px; margin: 0 auto; }
      .hero-photo-frame { max-width: 100%; }
      .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
      .sobre-badge { right: 0; }
      .sobre-photo-tag { left: 12px; bottom: -16px; }
      .esp-grid { grid-template-columns: repeat(2, 1fr); }
      .esp-gallery { grid-template-columns: 1fr; }
      .rino-list,
      .septo-list,
      .nasofi-list { grid-template-columns: 1fr; }
      .locais-grid { grid-template-columns: 1fr 1fr; }
      .jornada-grid { grid-template-columns: repeat(3, 1fr); }
      .jornada-grid::before { display: none; }
      .dif-inner { grid-template-columns: 1fr; gap: 60px; }
      .processo-grid { grid-template-columns: repeat(3, 1fr); }
      .processo-grid::before { display: none; }
      .dep-grid { grid-template-columns: 1fr 1fr; }
      .contato-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
      .container { padding: 0 20px; }
      #hero { padding: 100px 0 80px; }
      .hero-inner { gap: 40px; }
      .esp-grid { grid-template-columns: 1fr; }
      .locais-grid { grid-template-columns: 1fr; }
      .jornada-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
      .dep-grid { grid-template-columns: 1fr; }
      .processo-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .cta-actions { flex-direction: column; align-items: center; }
    }

    /* ===== FLOATING WHATSAPP ===== */
    .wa-float {
      position: fixed;
      bottom: 32px; right: 32px;
      z-index: 900;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
    .wa-float svg { width: 26px; height: 26px; fill: white; }
