/* ============================================================
   Mobile Custom Layout — cinthiadallavalle.com.br
   Paleta fiel ao desktop Wix:
     --color_11 = #FFFFFF (fundo)
     --color_15 = #585551 (texto escuro)
     --color_14 = #848079 (títulos/marrom médio)
     --color_18 = #8FD169 (verde musgo - destaque)
             +   #F93416 (vermelho - accent secundário)
             +   #F8F8F8 (off-white)
             +   #B5B1A9 (bege cinza)
   Ativa apenas em telas <= 900px.
   ============================================================ */

@import url('/assets/fonts/google-fonts.css');

/* Paleta central */
:root {
  --cdv-bg:        #FFFFFF;
  --cdv-bg-soft:   #F8F8F8;
  --cdv-beige:     #B5B1A9;
  --cdv-text:      #585551;
  --cdv-text-dim:  #848079;
  --cdv-title:     #585551;
  --cdv-accent:    #8FD169;
  --cdv-accent-dk: #6DB449;
  --cdv-hot:       #F93416;
  --cdv-dark:      #2D2A26;
  --cdv-dark-soft: #3F3B36;
}

.cdv-mobile-shell,
.cdv-mobile-shell * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.cdv-mobile-shell {
  display: none;
}

@media screen and (max-width: 900px) {

  body > #SITE_CONTAINER,
  #SITE_CONTAINER {
    display: none !important;
  }

  html, body {
    background: var(--cdv-bg) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--cdv-text) !important;
    -webkit-font-smoothing: antialiased;
  }

  .cdv-mobile-shell {
    display: block;
    position: relative;
    min-height: 100vh;
    background: var(--cdv-bg);
    color: var(--cdv-text);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
  }

  /* ============= HEADER ============= */
  .cdv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(88, 85, 81, 0.1);
    min-height: 68px;
  }

  .cdv-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
  }

  .cdv-brand-logo {
    height: 48px;
    width: auto;
    display: block;
  }

  .cdv-brand-text {
    display: none; /* logo já contém o nome */
  }

  /* Hamburger */
  .cdv-menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
  }

  .cdv-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cdv-text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                background 0.3s ease;
  }

  .cdv-menu-open .cdv-menu-toggle span {
    background: var(--cdv-bg);
  }
  .cdv-menu-open .cdv-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .cdv-menu-open .cdv-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .cdv-menu-open .cdv-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ============= NAV DRAWER ============= */
  .cdv-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(160deg, var(--cdv-dark) 0%, var(--cdv-dark-soft) 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 96px 32px 40px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  }

  .cdv-menu-open .cdv-nav-drawer {
    transform: translateX(0);
  }

  .cdv-nav-drawer::before {
    content: "";
    position: absolute;
    top: 35%;
    right: -90px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(143, 209, 105, 0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .cdv-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .cdv-nav-list li {
    margin-bottom: 4px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .cdv-menu-open .cdv-nav-list li {
    opacity: 1;
    transform: translateX(0);
  }
  .cdv-menu-open .cdv-nav-list li:nth-child(1) { transition-delay: 0.12s; }
  .cdv-menu-open .cdv-nav-list li:nth-child(2) { transition-delay: 0.18s; }
  .cdv-menu-open .cdv-nav-list li:nth-child(3) { transition-delay: 0.24s; }
  .cdv-menu-open .cdv-nav-list li:nth-child(4) { transition-delay: 0.30s; }
  .cdv-menu-open .cdv-nav-list li:nth-child(5) { transition-delay: 0.36s; }
  .cdv-menu-open .cdv-nav-list li:nth-child(6) { transition-delay: 0.42s; }

  .cdv-nav-link {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, padding 0.25s ease;
  }

  .cdv-nav-link:hover,
  .cdv-nav-link.active {
    color: var(--cdv-accent);
    padding-left: 10px;
  }

  .cdv-nav-link.active::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--cdv-accent);
    border-radius: 2px;
  }

  .cdv-nav-footer {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
  }

  .cdv-nav-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px;
    line-height: 1.5;
  }

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

  .cdv-nav-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .cdv-nav-social a:hover {
    background: var(--cdv-accent);
    transform: translateY(-2px);
  }

  .cdv-nav-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .cdv-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 42, 38, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 98;
  }
  .cdv-menu-open .cdv-nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* ============= HERO ============= */
  .cdv-hero {
    position: relative;
    min-height: 82vh;
    padding: 56px 24px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
    overflow: hidden;
  }

  .cdv-hero-decor {
    position: absolute;
    top: -80px;
    right: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 209, 105, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .cdv-hero-decor-2 {
    position: absolute;
    bottom: -140px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 177, 169, 0.25) 0%, transparent 70%);
    pointer-events: none;
  }

  .cdv-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--cdv-accent-dk);
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }

  .cdv-hero-eyebrow::before {
    content: "";
    width: 30px;
    height: 1.5px;
    background: var(--cdv-accent-dk);
  }

  .cdv-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--cdv-title);
    margin: 0 0 22px;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
  }

  .cdv-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--cdv-accent-dk);
  }

  .cdv-hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: var(--cdv-text);
    margin: 0 0 36px;
    max-width: 520px;
    position: relative;
    z-index: 1;
  }

  .cdv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
  }

  .cdv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    min-height: 50px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: 'Open Sans', sans-serif;
  }

  .cdv-btn-primary {
    background: var(--cdv-accent);
    color: var(--cdv-dark);
    box-shadow: 0 8px 22px rgba(143, 209, 105, 0.4);
  }
  .cdv-btn-primary:hover,
  .cdv-btn-primary:active {
    background: var(--cdv-accent-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(109, 180, 74, 0.5);
  }

  .cdv-btn-ghost {
    background: transparent;
    color: var(--cdv-text);
    border: 1.5px solid rgba(88, 85, 81, 0.3);
  }
  .cdv-btn-ghost:hover,
  .cdv-btn-ghost:active {
    background: var(--cdv-dark);
    color: #fff;
    border-color: var(--cdv-dark);
  }

  .cdv-btn-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
  }
  .cdv-btn:hover .cdv-btn-arrow {
    transform: translateX(3px);
  }

  /* ============= HERO IMAGEM ============= */
  .cdv-hero-image {
    position: relative;
    margin-top: 44px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(88, 85, 81, 0.25);
    z-index: 1;
  }

  .cdv-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cdv-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(45, 42, 38, 0.55) 100%);
  }

  .cdv-hero-caption {
    position: absolute;
    bottom: 20px;
    left: 22px;
    right: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: #fff;
    z-index: 2;
    line-height: 1.4;
  }

  /* ============= SEÇÕES ============= */
  .cdv-section {
    padding: 64px 24px;
    position: relative;
  }

  .cdv-section-alt {
    background: var(--cdv-bg-soft);
  }

  .cdv-section-dark {
    background: linear-gradient(160deg, var(--cdv-dark) 0%, var(--cdv-dark-soft) 100%);
    color: #fff;
  }

  .cdv-section-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cdv-accent);
  }

  .cdv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--cdv-accent-dk);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .cdv-eyebrow::before {
    content: "";
    width: 26px;
    height: 1.5px;
    background: var(--cdv-accent-dk);
  }

  .cdv-section-dark .cdv-eyebrow {
    color: var(--cdv-accent);
  }
  .cdv-section-dark .cdv-eyebrow::before {
    background: var(--cdv-accent);
  }

  .cdv-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--cdv-title);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .cdv-section-dark .cdv-section-title {
    color: #fff;
  }

  .cdv-section-title em {
    font-style: italic;
    color: var(--cdv-accent-dk);
  }

  .cdv-section-dark .cdv-section-title em {
    color: var(--cdv-accent);
  }

  .cdv-section-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--cdv-text);
    margin: 0 0 32px;
  }
  .cdv-section-dark .cdv-section-lead {
    color: rgba(255, 255, 255, 0.82);
  }

  /* ============= CARDS DE SERVIÇO ============= */
  .cdv-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .cdv-service-card {
    background: var(--cdv-bg);
    border-radius: 6px;
    padding: 30px 26px;
    box-shadow: 0 4px 20px rgba(88, 85, 81, 0.08);
    border: 1px solid rgba(181, 177, 169, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cdv-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(88, 85, 81, 0.14);
  }

  .cdv-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--cdv-accent), var(--cdv-hot));
  }

  .cdv-service-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--cdv-hot);
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.05em;
  }

  .cdv-service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--cdv-title);
    margin: 0 0 12px;
    line-height: 1.2;
  }

  .cdv-service-desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--cdv-text);
    margin: 0;
  }

  /* ============= QUOTE / DESTAQUE ============= */
  .cdv-quote {
    position: relative;
    padding: 52px 28px 44px;
    margin: 48px 0;
    background: var(--cdv-bg);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(88, 85, 81, 0.08);
    border-left: 4px solid var(--cdv-accent);
  }

  .cdv-quote::before {
    content: "“";
    position: absolute;
    top: -6px;
    left: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: var(--cdv-accent);
    line-height: 1;
    opacity: 0.22;
  }

  .cdv-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 23px;
    line-height: 1.45;
    color: var(--cdv-title);
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
  }

  .cdv-quote-author {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--cdv-accent-dk);
    font-weight: 700;
  }

  /* ============= IMAGEM + TEXTO ============= */
  .cdv-media-block {
    margin: 32px 0;
  }

  .cdv-media-block img {
    width: 100%;
    border-radius: 4px;
    display: block;
    box-shadow: 0 14px 36px rgba(88, 85, 81, 0.22);
  }

  /* ============= LIVRO DESTAQUE ============= */
  .cdv-book {
    background: linear-gradient(140deg, #F8F8F8 0%, #EFEDE8 100%);
    border-radius: 8px;
    padding: 42px 28px;
    margin-top: 28px;
    text-align: center;
    border: 1px solid rgba(181, 177, 169, 0.4);
    position: relative;
    overflow: hidden;
  }

  .cdv-book::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 209, 105, 0.22) 0%, transparent 70%);
  }

  .cdv-book-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: var(--cdv-dark);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .cdv-book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--cdv-title);
    margin: 0 0 14px;
    font-weight: 600;
    line-height: 1.15;
    position: relative;
    z-index: 1;
  }

  .cdv-book-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--cdv-text);
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
  }

  /* ============= BLOG LIST ============= */
  .cdv-blog-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }

  .cdv-blog-item {
    background: var(--cdv-bg);
    border-radius: 6px;
    padding: 26px 24px;
    box-shadow: 0 4px 18px rgba(88, 85, 81, 0.07);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(181, 177, 169, 0.35);
    border-left: 3px solid var(--cdv-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  }

  .cdv-blog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(88, 85, 81, 0.14);
    border-left-color: var(--cdv-hot);
  }

  .cdv-blog-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--cdv-hot);
    font-weight: 700;
    margin-bottom: 8px;
  }

  .cdv-blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cdv-title);
    line-height: 1.25;
    margin: 0 0 10px;
  }

  .cdv-blog-cta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cdv-accent-dk);
    font-weight: 700;
  }

  /* ============= CONTATO ============= */
  .cdv-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .cdv-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: var(--cdv-bg);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(88, 85, 81, 0.07);
    border: 1px solid rgba(181, 177, 169, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .cdv-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(88, 85, 81, 0.12);
    border-color: var(--cdv-accent);
  }

  .cdv-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cdv-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cdv-dark);
    flex-shrink: 0;
  }

  .cdv-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .cdv-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cdv-accent-dk);
    font-weight: 700;
    margin-bottom: 4px;
  }

  .cdv-contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cdv-title);
    font-weight: 500;
  }

  /* ============= FOOTER ============= */
  .cdv-footer {
    background: linear-gradient(160deg, var(--cdv-dark) 0%, var(--cdv-dark-soft) 100%);
    color: #fff;
    padding: 56px 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cdv-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cdv-accent);
  }

  .cdv-footer::after {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 209, 105, 0.16) 0%, transparent 70%);
  }

  .cdv-footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 14px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
  }

  .cdv-footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }

  .cdv-footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }

  .cdv-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
  }
  .cdv-footer-social a:hover {
    background: var(--cdv-accent);
    color: var(--cdv-dark);
    transform: translateY(-2px);
  }
  .cdv-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .cdv-footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
  }
  .cdv-footer-contact a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .cdv-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
  }

  /* ============= LISTAS FORMATADAS ============= */
  .cdv-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  .cdv-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--cdv-text);
  }
  .cdv-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 1.5px;
    background: var(--cdv-accent-dk);
  }

  /* ============= PÁGINA INTERNA HEADER ============= */
  .cdv-page-header {
    padding: 58px 24px 44px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(181, 177, 169, 0.35);
  }

  .cdv-page-header::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 209, 105, 0.14) 0%, transparent 70%);
  }

  .cdv-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 9vw, 50px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cdv-title);
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
  }
  .cdv-page-title em {
    font-style: italic;
    color: var(--cdv-accent-dk);
  }

  .cdv-page-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--cdv-text);
    max-width: 560px;
    position: relative;
    z-index: 1;
    margin: 0;
  }

  body.cdv-menu-open {
    overflow: hidden !important;
  }
}

/* ---------- CELULAR PEQUENO (≤420px) ---------- */
@media screen and (max-width: 420px) {
  .cdv-hero-title { font-size: 40px; }
  .cdv-section-title { font-size: 29px; }
  .cdv-service-title { font-size: 22px; }
  .cdv-quote-text { font-size: 20px; }
  .cdv-book-title { font-size: 27px; }
  .cdv-nav-link { font-size: 25px; padding: 12px 0; }
  .cdv-section { padding: 54px 20px; }
  .cdv-hero { padding: 48px 20px 60px; }
  .cdv-page-header { padding: 46px 20px 34px; }
  .cdv-brand-logo { height: 42px; }
}
