:root {
    --gold-light: #d4a574;
    --gold: #b8893f;
    --gold-dark: #8b6520;
    --gold-deep: #6b4d18;
    --cream: #fdfaf5;
    --cream-soft: #f8f1e4;
    --ivory: #fffdf8;
    --charcoal: #2a2520;
    --soft-gray: #5a534a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ===== Logo SVG (tooth) reusable ===== */
  .tooth-logo {
    width: 60px;
    height: 60px;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 250, 245, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(184, 137, 63, 0.15);
    transition: padding 0.3s ease;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-brand .tooth-logo { width: 42px; height: 42px; }

  .nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-brand-text .vitae {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 0.35em;
    color: var(--gold-dark);
    font-weight: 500;
  }

  .nav-brand-text .essenza {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
  }

  .nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:hover { color: var(--gold-dark); }
  .nav-links a:hover::after { width: 100%; }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gold-dark);
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 6% 80px;
    background:
      radial-gradient(ellipse at top, rgba(212, 165, 116, 0.08), transparent 60%),
      linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C360,20 720,100 1080,60 C1260,40 1380,70 1440,50 L1440,120 L0,120 Z' fill='%23b8893f' opacity='0.12'/%3E%3Cpath d='M0,90 C360,40 720,110 1080,75 C1260,58 1380,82 1440,68 L1440,120 L0,120 Z' fill='%23b8893f' opacity='0.18'/%3E%3C/svg%3E") no-repeat bottom/cover;
    pointer-events: none;
  }

  .hero-content { max-width: 900px; position: relative; z-index: 2; }

  .hero .tooth-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    display: block;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    letter-spacing: 0.32em;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 8px;
  }

  .hero .essenza-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .hero .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }

  .hero .divider .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
  }

  .hero .divider span {
    font-size: 0.85rem;
    letter-spacing: 0.45em;
    color: var(--soft-gray);
    text-transform: uppercase;
  }

  .hero .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
  }

  .btn {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(184, 137, 63, 0.25);
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 137, 63, 0.4);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-deep) 100%);
  }

  .btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    box-shadow: none;
  }

  .btn-outline:hover {
    background: var(--gold);
    color: var(--ivory);
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 110px 6%; }

  .section-header { text-align: center; margin-bottom: 70px; }

  .section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
  }

  .section-title .accent {
    font-family: 'Great Vibes', cursive;
    color: var(--gold);
    font-weight: 600;
  }

  .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--soft-gray);
    max-width: 650px;
    margin: 0 auto;
  }

  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 20px 0 30px;
  }

  .ornament .line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }

  .ornament .line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .ornament .diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  /* ===== SOBRE ===== */
  .sobre {
    background: var(--cream-soft);
    position: relative;
  }

  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sobre-text p {
    margin-bottom: 20px;
    color: var(--soft-gray);
    font-size: 1.02rem;
  }

  .sobre-text p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    float: left;
    line-height: 1;
    padding: 5px 12px 0 0;
    font-weight: 500;
  }

  .sobre-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
  }

  .sobre-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.4;
  }

  .sobre-visual::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    opacity: 0.25;
  }

  .sobre-visual .tooth-logo {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 2;
  }

  /* ===== SERVIÇOS ===== */
  .servicos { background: var(--ivory); }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .servico-card {
    background: var(--cream);
    padding: 45px 35px;
    border: 1px solid rgba(184, 137, 63, 0.15);
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
  }

  .servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }

  .servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 101, 32, 0.15);
    background: var(--ivory);
  }

  .servico-card:hover::before { transform: scaleX(1); }

  .servico-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--gold);
  }

  .servico-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .servico-card p {
    color: var(--soft-gray);
    font-size: 0.94rem;
    line-height: 1.7;
  }

  /* ===== DENTISTAS ===== */
  .dentistas {
    background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 100%);
    position: relative;
  }

  .dentistas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .dentista-card {
    background: var(--ivory);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(184, 137, 63, 0.18);
    position: relative;
    transition: all 0.4s ease;
  }

  .dentista-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(139, 101, 32, 0.12);
  }

  .dentista-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(184, 137, 63, 0.3);
    position: relative;
  }

  .dentista-avatar::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.4;
  }

  .dentista-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .dentista-title {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .dentista-card p {
    color: var(--soft-gray);
    font-size: 0.95rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
  }

  /* ===== CONTATO ===== */
  .contato {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1612 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .contato::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 137, 63, 0.15), transparent 70%);
  }

  .contato::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
  }

  .contato .section-title { color: var(--cream); }
  .contato .section-subtitle { color: rgba(253, 250, 245, 0.7); }

  .contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
  }

  .contato-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(253, 250, 245, 0.03);
    border: 1px solid rgba(184, 137, 63, 0.2);
    transition: all 0.4s ease;
  }

  .contato-item:hover {
    background: rgba(184, 137, 63, 0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
  }

  .contato-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 18px;
    color: var(--gold-light);
  }

  .contato-item h4 {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .contato-item p, .contato-item a {
    color: var(--cream);
    font-size: 0.98rem;
    text-decoration: none;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
  }

  .contato-item a:hover { color: var(--gold-light); }

  .whatsapp-cta {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    border-radius: 2px;
  }

  .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  }

  .btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: white;
  }

  /* ===== FOOTER ===== */
  footer {
    background: #14110d;
    color: rgba(253, 250, 245, 0.6);
    padding: 50px 6% 30px;
    text-align: center;
    border-top: 1px solid rgba(184, 137, 63, 0.2);
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 25px;
  }

  .footer-brand .tooth-logo { width: 50px; height: 50px; }

  .footer-brand-text { text-align: left; line-height: 1; }

  .footer-brand-text .vitae {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    color: var(--gold);
  }

  .footer-brand-text .essenza {
    font-family: 'Great Vibes', cursive;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-top: 2px;
  }

  footer p {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  footer .copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 137, 63, 0.15);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  /* ===== FLOATING WHATSAPP ===== */
  .float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
  }

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

  .float-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
  }

  .float-whatsapp::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.6;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: var(--ivory);
      flex-direction: column;
      padding: 30px;
      gap: 22px;
      border-bottom: 1px solid rgba(184, 137, 63, 0.2);
      transform: translateY(-150%);
      transition: transform 0.4s ease;
    }
    .nav-links.active { transform: translateY(0); }
    .menu-toggle { display: block; }
    .sobre-grid, .dentistas-grid { grid-template-columns: 1fr; gap: 50px; }
    .sobre-visual { min-height: 300px; }
    .sobre-visual::before { width: 240px; height: 240px; }
    .sobre-visual::after { width: 290px; height: 290px; }
    .sobre-visual .tooth-logo { width: 150px; height: 150px; }
    section { padding: 80px 6%; }
  }

  @media (max-width: 500px) {
    .hero { padding: 120px 5% 60px; }
    .nav-brand-text .vitae { font-size: 1rem; letter-spacing: 0.25em; }
    .servico-card { padding: 35px 25px; }
  }

.nav-brand-text .vitae,
.hero h1,
.footer-brand-text .vitae{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
    letter-spacing:0.55em;
    text-transform:uppercase;
}

.nav-brand-text .essenza,
.hero .essenza-title,
.footer-brand-text .essenza,
.section-title .accent{
    font-family:'Great Vibes', cursive;
    font-size:1.25em;
    font-weight:400;
    letter-spacing:0;
}

.hero h1{
    font-size:clamp(3rem,7vw,5.5rem);
}

.hero .essenza-title{
    font-size:clamp(4rem,8vw,7rem);
}