/* Despertar nas Páginas Elementor — CSS isolado */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&display=swap');

.dnp-page,
.dnp-page * {
    box-sizing: border-box;
}

.dnp-page {
    --bg-page: #F8F6EF;
    --bg-card: #FFFFFF;
    --text-main: #3D352E;
    --text-support: #70655A;
    --brand-sage: #A3B89F;
    --brand-sage-dark: #6F8066;
    --btn-black: #17171A;
    --overlay-dark: rgba(16, 18, 20, 0.66);
    --grid-line: rgba(163, 184, 159, 0.20);
    --font-main: 'Poppins', sans-serif;

    font-family: var(--font-main);
    background-color: var(--bg-page);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dnp-page:first-child {
    padding-top: 60px;
}

.dnp-footer-page {
    padding-top: 40px;
    padding-bottom: 54px;
}

/* Elementos reutilizáveis */
.dnp-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-sage-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dnp-eyebrow .line {
    width: 30px;
    height: 3px;
    background-color: var(--brand-sage-dark);
    border-radius: 2px;
    display: inline-block;
}

.dnp-eyebrow .dot {
    width: 4px;
    height: 4px;
    background: var(--text-main);
    border-radius: 50%;
    display: inline-block;
}

.dnp-section-title {
    color: var(--text-main);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 0 48px;
    text-align: center;
    line-height: 1.2;
}

.dnp-section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brand-sage-dark);
}

/* =========================================
   SEÇÃO 1: HERO BANNER
   ========================================= */
.dnp-hero-banner {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--grid-line);
    max-width: 1100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(61, 53, 46, 0.04);
}

.dnp-hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.dnp-hero-content .dnp-eyebrow {
    margin-bottom: 16px;
}

.dnp-hero-content h1 {
    color: var(--text-main);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.dnp-hero-content p {
    color: var(--text-support);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
    max-width: 520px;
    font-weight: 300;
}

.dnp-hero-content p strong {
    font-weight: 500;
    color: var(--text-main);
}

.dnp-hero-highlight {
    font-size: 1.05rem ;
    font-style: italic;
    color: var(--text-main);
    margin-top: 8px !important;
    margin-bottom: 40px !important;
    border-left: 3px solid var(--brand-sage);
    padding-left: 16px;
}

.dnp-hero-highlight strong {
    font-weight: 600 ;
    font-style: normal;
}

.dnp-btn-agendar {
    display: inline-flex;
    align-items: center;
    background-color: var(--btn-black);
    color: #FFFFFF;
    text-decoration: none ;
    padding: 8px 24px 8px 8px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    width: max-content;
    max-width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow .2s ease;
}

.dnp-btn-agendar:hover {
    background-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(61, 53, 46, .14);
}

.dnp-btn-icon {
    background-color: var(--brand-sage);
    color: var(--btn-black);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.dnp-hero-image-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.dnp-hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--overlay-dark), transparent);
    pointer-events: none;
    z-index: 2;
}

.dnp-hero-image-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 400px;
    z-index: 1;
    display: block;
}

/* =========================================
   SEÇÃO 2: O QUE EXPLORAMOS
   ========================================= */
.dnp-differentials-section {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.dnp-diff-left {
    flex: 0 0 35%;
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dnp-diff-left h2 {
    color: var(--text-main);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.dnp-diff-left h2 em {
    color: var(--brand-sage-dark);
    font-style: italic;
    font-weight: 400;
}

.dnp-diff-arrow {
    width: 100%;
    height: 1px;
    background-color: var(--text-support);
    position: relative;
    margin: 20px 0;
    opacity: 0.3;
}

.dnp-diff-arrow::after {
    content: '>';
    position: absolute;
    right: -4px;
    top: -10px;
    font-size: 1.2rem;
    color: var(--text-support);
}

.dnp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--brand-sage-dark);
    color: var(--brand-sage-dark);
    text-decoration: none ;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: max-content;
    transition: all 0.3s ease;
    background: rgba(163, 184, 159, 0.05);
}

.dnp-btn-outline:hover {
    background-color: var(--brand-sage-dark);
    color: #FFFFFF;
}

.dnp-diamond-icon {
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    transform: rotate(45deg);
}

.dnp-diff-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dnp-diff-card {
    background: rgba(163, 184, 159, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(61, 53, 46, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 168px;
    gap: 16px;
}

.dnp-diff-card:hover {
    transform: translateY(-4px);
    background: rgba(163, 184, 159, 0.35);
    box-shadow: 0 12px 40px rgba(61, 53, 46, 0.08);
}

.dnp-diff-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.dnp-diff-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(163, 184, 159, 0.15);
}

.dnp-diff-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--brand-sage-dark);
}

.dnp-diff-card p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* =========================================
   SEÇÃO 3: FORMATOS DE ENCONTRO
   ========================================= */
.dnp-formats-section {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dnp-formats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 1px solid rgba(112, 101, 90, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-support);
    margin-bottom: 24px;
}

.dnp-formats-badge .diamond {
    width: 6px;
    height: 6px;
    border: 1px solid var(--text-support);
    transform: rotate(45deg);
}

.dnp-formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.dnp-format-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(112, 101, 90, 0.15);
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow .3s ease;
}

.dnp-format-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 53, 46, 0.05);
}

.dnp-format-card-line {
    position: absolute;
    top: -1px;
    left: 32px;
    width: 40px;
    height: 3px;
    background-color: var(--brand-sage-dark);
    border-radius: 2px;
}

.dnp-format-card-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(112, 101, 90, 0.2);
    border-radius: 50px;
    padding: 4px 16px 4px 4px;
    margin-bottom: 20px;
    width: max-content;
}

.dnp-pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(163, 184, 159, 0.2);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
}

.dnp-pill-text {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.dnp-format-card p {
    color: var(--text-support);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* =========================================
   SEÇÃO 4: PARA QUEM É
   ========================================= */
.dnp-audience-section {
    max-width: 1100px;
    width: 100%;
}

.dnp-audience-box {
    background: linear-gradient(135deg, var(--brand-sage), var(--brand-sage-dark));
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 15px 40px rgba(111, 128, 102, 0.15);
}

.dnp-audience-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background-color: var(--bg-page);
    border-radius: 0 0 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.dnp-audience-notch svg {
    width: 14px;
    height: 14px;
    fill: var(--brand-sage-dark);
}

.dnp-audience-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.dnp-audience-title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 auto 24px;
    letter-spacing: -0.01em;
    max-width: 900px;
    color: #FFFFFF;
}

.dnp-audience-title em {
    font-style: italic;
    font-weight: 400;
}

.dnp-audience-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
    color: #FFFFFF;
}

/* =========================================
   SEÇÃO 5: PROPÓSITO
   ========================================= */
.dnp-purpose-section {
    max-width: 1100px;
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(61, 53, 46, 0.08);
}

.dnp-purpose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dnp-purpose-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dnp-purpose-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
    z-index: 2;
}

.dnp-purpose-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dnp-purpose-pill {
    display: inline-flex;
    align-items: center;
    background-color: #F4EFEA;
    border-radius: 50px;
    margin-bottom: 24px;
    overflow: hidden;
}

.dnp-purpose-pill-dark {
    background-color: var(--text-main);
    color: #FFFFFF;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
}

.dnp-purpose-pill-light {
    color: var(--text-main);
    padding: 6px 16px 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dnp-purpose-card h3 {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.dnp-purpose-divider {
    width: 100%;
    height: 1px;
    background-color: var(--grid-line);
    margin-bottom: 24px;
}

.dnp-purpose-card p {
    color: var(--text-support);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 16px;
}

.dnp-purpose-card .dnp-highlight-quote {
    color: var(--brand-sage-dark);
    font-weight: 500;
    font-style: italic;
    font-size: 1.05rem;
    margin-top: 24px;
    margin-bottom: 0;
    border-left: 2px solid var(--brand-sage);
    padding-left: 16px;
}

/* =========================================
   SEÇÃO 6: TIMELINE
   ========================================= */
.dnp-timeline-section {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dnp-timeline-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dnp-timeline-header .dnp-section-title {
    margin-bottom: 0;
    margin-top: 16px;
}

.dnp-timeline-container {
    position: relative;
    width: 100%;
}

.dnp-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-sage) 0%, rgba(163, 184, 159, 0) 100%);
}

.dnp-timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.dnp-timeline-item:last-child {
    margin-bottom: 0;
}

.dnp-timeline-marker {
    width: 66px;
    height: 66px;
    background-color: var(--bg-card);
    border: 2px solid var(--brand-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(163, 184, 159, 0.2);
}

.dnp-timeline-card {
    background-color: var(--bg-card);
    border: 1px solid var(--grid-line);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02);
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow .3s ease;
}

.dnp-timeline-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-sage);
    box-shadow: 0 8px 30px rgba(61, 53, 46, 0.05);
}

.dnp-timeline-card::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -9px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-card);
    border-left: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

.dnp-timeline-card:hover::before {
    border-color: var(--brand-sage);
}

.dnp-timeline-card h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 12px;
}

.dnp-timeline-card p {
    color: var(--text-support);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* RODAPÉ */
.dnp-footer {
    max-width: 1100px;
    width: 100%;
    padding: 34px 0 0;
    border-top: 1px solid rgba(230,223,211,.78);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
}

.dnp-footer-brand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.dnp-logo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-sage);
    box-shadow: 0 0 0 6px rgba(163,184,159,.12);
    margin-top: 4px;
    flex: 0 0 auto;
}

.dnp-footer strong {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.dnp-footer p {
    color: var(--text-support);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 440px;
    font-weight: 300;
}

.dnp-footer-contact {
    text-align: right;
}

.dnp-footer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--btn-black);
    color: #FFFFFF;
    text-decoration: none ;
    padding: 7px 20px 7px 7px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 400;
    width: max-content;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow .2s ease;
}

.dnp-footer-button:hover {
    background-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(61, 53, 46, .14);
}

.dnp-footer-button span {
    background-color: var(--brand-sage);
    color: var(--btn-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 991px) {
    .dnp-differentials-section {
        flex-direction: column;
        gap: 40px;
    }

    .dnp-diff-left {
        position: relative;
        top: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .dnp-diff-arrow {
        display: none;
    }

    .dnp-audience-box {
        padding: 60px 40px;
    }

    .dnp-audience-title {
        font-size: 1.8rem;
    }

    .dnp-purpose-section {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .dnp-page {
        padding: 30px 16px;
    }

    .dnp-hero-content {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }

    .dnp-hero-content h1,
    .dnp-diff-left h2,
    .dnp-section-title,
    .dnp-purpose-card h3 {
        font-size: 2rem;
    }

    .dnp-hero-highlight {
        padding-left: 0;
        border-left: 0;
        border-top: 3px solid var(--brand-sage);
        padding-top: 16px;
    }

    .dnp-diff-right,
    .dnp-formats-grid {
        grid-template-columns: 1fr;
    }

    .dnp-audience-box {
        padding: 50px 24px;
        border-radius: 16px;
    }

    .dnp-audience-title {
        font-size: 1.5rem;
    }

    .dnp-audience-text {
        font-size: 0.95rem;
    }

    .dnp-purpose-section {
        padding: 24px;
        min-height: auto;
    }

    .dnp-purpose-bg::after {
        background: rgba(0,0,0,0.4);
    }

    .dnp-purpose-card {
        padding: 32px 24px;
        width: 100%;
    }

    .dnp-timeline-item {
        gap: 20px;
    }

    .dnp-timeline-marker {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .dnp-timeline-container::before {
        left: 23px;
    }

    .dnp-timeline-card {
        padding: 24px;
    }

    .dnp-timeline-card::before {
        top: 15px;
    }

    .dnp-timeline-card h3 {
        font-size: 1.2rem;
    }

    .dnp-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .dnp-footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .dnp-footer-contact {
        text-align: center;
    }

    .dnp-footer p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* v1.0.1 — Hero corrigida: texto à esquerda e foto à direita no desktop */
.dnp-hero-banner {
    flex-direction: row !important;
    align-items: stretch !important;
}

.dnp-hero-content {
    flex: 0 0 58% !important;
}

.dnp-hero-image-container {
    flex: 0 0 42% !important;
    min-height: 100% !important;
}

.dnp-hero-image-container img {
    width: 100% !important;
    height: 100% !important;
    min-height: 520px !important;
    object-fit: cover !important;
    object-position: center center;
}

@media (max-width: 991px) {
    .dnp-hero-banner {
        flex-direction: column !important;
    }

    .dnp-hero-image-container {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .dnp-hero-image-container img {
        height: auto !important;
        min-height: 400px !important;
    }
}

@media (max-width: 767px) {
    .dnp-hero-image-container img {
        min-height: 360px !important;
    }
}


/* v1.0.2 — Identidade visual Daniela Parente + fundo de grid */
.dnp-page {
    --bg-page: #f8f6ef;
    --bg-card: rgba(253, 251, 247, .74);
    --text-main: #3d352e;
    --text-support: #70655a;
    --brand-sage: #a3b89f;
    --brand-sage-dark: #6f8066;
    --brand-sage-hover: #8fa48b;
    --terracotta: #cc6d52;
    --sand: #e6dfd3;
    --beige: #ebe4d8;
    --btn-black: #17171A;
    --overlay-dark: rgba(16, 18, 20, 0.56);
    --grid-line: rgba(230, 223, 211, .72);
    --grid-bg-line: rgba(255, 255, 255, .82);
    --font-main: 'Poppins', sans-serif;
    --shadow-soft: 0 14px 40px rgba(61, 53, 46, .05);

    font-family: var(--font-main) ;
    color: var(--text-main);
    background-color: var(--bg-page);
    background-image:
        linear-gradient(to right, var(--grid-bg-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-bg-line) 1px, transparent 1px);
    background-size: 64px 64px;
}

.dnp-page h1,
.dnp-page h2,
.dnp-page h3,
.dnp-page p,
.dnp-page a,
.dnp-page span,
.dnp-page div {
    font-family: var(--font-main) ;
}

/* Cards principais com o acabamento da Daniela */
.dnp-hero-banner,
.dnp-format-card,
.dnp-purpose-card,
.dnp-timeline-card {
    background: var(--bg-card);
    border-color: var(--grid-line);
    box-shadow: var(--shadow-soft) !important;
}

.dnp-hero-banner {
    border-radius: 18px !important;
}

.dnp-purpose-card,
.dnp-timeline-card,
.dnp-format-card {
    border-radius: 18px !important;
}

.dnp-purpose-section,
.dnp-audience-box {
    box-shadow: 0 18px 44px rgba(61, 53, 46, .08) !important;
}

/* Verde mais Daniela, menos saturado */
.dnp-diff-card {
    background: rgba(163, 184, 159, .20);
    border-color: rgba(255, 255, 255, .62);
    box-shadow: 0 14px 34px rgba(61, 53, 46, .045) !important;
}

.dnp-diff-card:hover {
    background: rgba(163, 184, 159, .28);
    box-shadow: 0 18px 40px rgba(61, 53, 46, .07) !important;
}

.dnp-diff-card-icon,
.dnp-timeline-marker {
    background: rgba(253, 251, 247, .72);
    border-color: rgba(255, 255, 255, .8);
}

.dnp-format-card-pill,
.dnp-formats-badge {
    background: rgba(253, 251, 247, .45);
}

/* Botões no padrão da página Daniela */
.dnp-btn-agendar,
.dnp-footer-button {
    background: var(--text-main);
    font-weight: 500 ;
}

.dnp-btn-agendar:hover,
.dnp-footer-button:hover {
    background: #17171A;
}

.dnp-btn-icon,
.dnp-footer-button span {
    background: var(--brand-sage);
    color: var(--text-main);
}

/* Títulos mais próximos da página principal */
.dnp-hero-content h1,
.dnp-diff-left h2,
.dnp-section-title,
.dnp-purpose-card h3,
.dnp-audience-title {
    color: var(--text-main);
    letter-spacing: -.025em;
}

.dnp-section-title em,
.dnp-diff-left h2 em {
    color: var(--brand-sage-dark);
}

/* Destaques com respiro premium */
.dnp-hero-highlight,
.dnp-purpose-card .dnp-highlight-quote {
    border-color: var(--brand-sage);
}

/* Rodapé no mesmo clima visual */
.dnp-footer {
    border-top-color: rgba(230, 223, 211, .78);
}

.dnp-logo-dot {
    background: var(--brand-sage);
    box-shadow: 0 0 0 6px rgba(163, 184, 159, .12) !important;
}


/* v1.0.3 — Ícones pela biblioteca do Elementor + cores editáveis */
.dnp-diff-card-icon i,
.dnp-pill-icon i,
.dnp-timeline-marker i {
    font-size: 22px;
    line-height: 1;
    color: var(--brand-sage-dark);
}

.dnp-diff-card-icon svg,
.dnp-pill-icon svg,
.dnp-timeline-marker svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: var(--brand-sage-dark);
}

.dnp-pill-icon svg,
.dnp-timeline-marker svg {
    fill: var(--text-main);
}

.dnp-pill-icon i,
.dnp-timeline-marker i {
    color: var(--text-main);
}

.dnp-diff-card-icon .elementor-icon,
.dnp-pill-icon .elementor-icon,
.dnp-timeline-marker .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* v1.0.4 — Textos separados por Desktop, Tablet e Mobile */
.dnp-device {
    box-sizing: border-box;
}

.dnp-device-block {
    display: none;
}

.dnp-device-inline {
    display: none;
}

.dnp-device-desktop.dnp-device-block {
    display: block;
}

.dnp-device-desktop.dnp-device-inline {
    display: inline;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .dnp-device-desktop.dnp-device-block,
    .dnp-device-mobile.dnp-device-block,
    .dnp-device-desktop.dnp-device-inline,
    .dnp-device-mobile.dnp-device-inline {
        display: none !important;
    }

    .dnp-device-tablet.dnp-device-block {
        display: block !important;
    }

    .dnp-device-tablet.dnp-device-inline {
        display: inline !important;
    }
}

@media (max-width: 767px) {
    .dnp-device-desktop.dnp-device-block,
    .dnp-device-tablet.dnp-device-block,
    .dnp-device-desktop.dnp-device-inline,
    .dnp-device-tablet.dnp-device-inline {
        display: none !important;
    }

    .dnp-device-mobile.dnp-device-block {
        display: block !important;
    }

    .dnp-device-mobile.dnp-device-inline {
        display: inline !important;
    }
}

/* Ajuste para wrappers de parágrafos responsivos não criarem espaçamento extra */
.dnp-hero-content > .dnp-device-block,
.dnp-purpose-card > .dnp-device-block {
    margin: 0;
}

.dnp-format-card > .dnp-device-block,
.dnp-timeline-card > .dnp-device-block {
    margin: 0;
}

.dnp-footer-button em {
    font-style: normal;
}


/* v1.0.5 — Configurações realmente separadas por dispositivo.
   Cada widget renderiza uma versão própria para Desktop, Tablet e Mobile. */
.dnp-device-shell {
    display: none !important;
}

@media (min-width: 1025px) {
    .dnp-device-shell.dnp-device-desktop {
        display: flex !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .dnp-device-shell.dnp-device-tablet {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .dnp-device-shell.dnp-device-mobile {
        display: flex !important;
    }
}

/* Garante que as seções antigas de texto responsivo não interfiram na v1.0.5 */
.dnp-device-shell .dnp-device {
    display: initial;
}


/* v1.0.9 — Ícones dos botões trocados de emoji para biblioteca do Elementor */
.dnp-btn-icon i,
.dnp-footer-button span i {
    font-size: 15px;
    line-height: 1;
    color: inherit;
}

.dnp-btn-icon svg,
.dnp-footer-button span svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor;
}

.dnp-btn-icon svg *,
.dnp-footer-button span svg * {
    fill: currentColor;
}

.dnp-btn-icon .elementor-icon,
.dnp-footer-button span .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* v1.0.10 — Ajuste de proporção para ficar mais próximo da página principal Daniela */
.dnp-page {
    padding: 46px 20px !important;
}

.dnp-footer-page {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
}

/* Containers mais elegantes */
.dnp-hero-banner,
.dnp-differentials-section,
.dnp-formats-section,
.dnp-audience-section,
.dnp-purpose-section,
.dnp-footer {
    max-width: 1040px !important;
}

.dnp-timeline-section {
    max-width: 840px !important;
}

/* Hero menos gigante */
.dnp-hero-content {
    padding: 46px 48px !important;
}

.dnp-hero-content h1 {
    font-size: 2.18rem ;
    line-height: 1.18 ;
    margin-bottom: 20px !important;
}

.dnp-hero-content p {
    font-size: .9rem ;
    line-height: 1.62 ;
    margin-bottom: 13px !important;
    max-width: 500px !important;
}

.dnp-hero-highlight {
    font-size: .98rem ;
    margin-bottom: 30px !important;
}

.dnp-hero-image-container img {
    min-height: 430px !important;
}

/* Botões mais finos */
.dnp-btn-agendar {
    font-size: .86rem ;
    padding: 7px 20px 7px 7px !important;
}

.dnp-btn-icon {
    width: 32px !important;
    height: 32px !important;
    margin-right: 13px !important;
}

.dnp-btn-icon i,
.dnp-btn-icon svg,
.dnp-footer-button span i,
.dnp-footer-button span svg {
    width: 13px !important;
    height: 13px !important;
    font-size: 13px ;
}

/* Títulos e etiquetas */
.dnp-eyebrow {
    font-size: .72rem ;
    letter-spacing: 1.35px ;
}

.dnp-eyebrow .line {
    width: 26px !important;
    height: 2px !important;
}

.dnp-section-title,
.dnp-diff-left h2 {
    font-size: 2.05rem ;
    line-height: 1.16 ;
}

.dnp-section-title {
    margin-bottom: 38px !important;
}

/* Exploramos */
.dnp-differentials-section {
    gap: 48px !important;
}

.dnp-diff-left {
    gap: 19px !important;
}

.dnp-diff-arrow {
    margin: 14px 0 !important;
}

.dnp-btn-outline {
    font-size: .76rem ;
    padding: 12px 20px !important;
    gap: 10px !important;
}

.dnp-diff-right {
    gap: 18px !important;
}

.dnp-diff-card {
    padding: 26px 20px !important;
    min-height: 142px !important;
    gap: 13px !important;
}

.dnp-diff-card-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
}

.dnp-diff-card-icon i,
.dnp-diff-card-icon svg {
    width: 19px !important;
    height: 19px !important;
    font-size: 19px ;
}

.dnp-diff-card p {
    font-size: .92rem ;
    line-height: 1.36 ;
}

/* Formatos */
.dnp-formats-badge {
    font-size: .78rem ;
    padding: 5px 14px !important;
    margin-bottom: 18px !important;
}

.dnp-formats-grid {
    gap: 20px !important;
}

.dnp-format-card {
    padding: 32px 26px !important;
}

.dnp-format-card-line {
    left: 26px !important;
    width: 34px !important;
}

.dnp-format-card-pill {
    margin-bottom: 17px !important;
}

.dnp-pill-icon {
    width: 25px !important;
    height: 25px !important;
    margin-right: 10px !important;
}

.dnp-pill-icon i,
.dnp-pill-icon svg {
    width: 14px !important;
    height: 14px !important;
    font-size: 14px ;
}

.dnp-pill-text {
    font-size: .88rem ;
}

.dnp-format-card p {
    font-size: .9rem ;
    line-height: 1.58 ;
}

/* Para quem é */
.dnp-audience-box {
    padding: 60px 50px !important;
    border-radius: 20px !important;
}

.dnp-audience-eyebrow {
    font-size: .75rem ;
    margin-bottom: 18px !important;
}

.dnp-audience-title {
    font-size: 1.78rem ;
    line-height: 1.28 ;
    margin-bottom: 18px !important;
}

.dnp-audience-text {
    font-size: .98rem ;
    line-height: 1.58 ;
}

/* Propósito */
.dnp-purpose-section {
    min-height: 460px !important;
    padding: 46px !important;
    border-radius: 20px !important;
}

.dnp-purpose-card {
    max-width: 460px !important;
    padding: 38px !important;
}

.dnp-purpose-pill {
    margin-bottom: 20px !important;
}

.dnp-purpose-pill-dark,
.dnp-purpose-pill-light {
    font-size: .72rem ;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.dnp-purpose-card h3 {
    font-size: 1.72rem ;
    line-height: 1.18 ;
    margin-bottom: 20px !important;
}

.dnp-purpose-divider {
    margin-bottom: 20px !important;
}

.dnp-purpose-card p {
    font-size: .9rem ;
    line-height: 1.58 ;
    margin-bottom: 13px !important;
}

.dnp-purpose-card .dnp-highlight-quote {
    font-size: .98rem ;
    margin-top: 20px !important;
}

/* Timeline */
.dnp-timeline-header {
    margin-bottom: 46px !important;
}

.dnp-timeline-item {
    gap: 30px !important;
    margin-bottom: 38px !important;
}

.dnp-timeline-container::before {
    left: 27px !important;
}

.dnp-timeline-marker {
    width: 56px !important;
    height: 56px !important;
}

.dnp-timeline-marker i,
.dnp-timeline-marker svg {
    width: 18px !important;
    height: 18px !important;
    font-size: 18px ;
}

.dnp-timeline-card {
    padding: 30px 32px !important;
    border-radius: 14px !important;
}

.dnp-timeline-card::before {
    top: 20px !important;
}

.dnp-timeline-card h3 {
    font-size: 1.2rem ;
    margin-bottom: 9px !important;
}

.dnp-timeline-card p {
    font-size: .92rem ;
    line-height: 1.58 ;
}

/* Rodapé */
.dnp-footer {
    padding-top: 28px !important;
}

.dnp-footer p {
    font-size: .86rem ;
    line-height: 1.56 ;
}

.dnp-footer-button {
    font-size: .8rem ;
    padding: 6px 18px 6px 6px !important;
}

.dnp-footer-button span {
    width: 27px !important;
    height: 27px !important;
}

/* Mobile refinado */
@media (max-width: 767px) {
    .dnp-page {
        padding: 26px 16px !important;
    }

    .dnp-hero-content {
        padding: 34px 24px !important;
    }

    .dnp-hero-content h1,
    .dnp-diff-left h2,
    .dnp-section-title,
    .dnp-purpose-card h3 {
        font-size: 1.78rem ;
    }

    .dnp-hero-image-container img {
        min-height: 330px !important;
    }

    .dnp-diff-card {
        min-height: auto !important;
        padding: 24px 20px !important;
    }

    .dnp-audience-box {
        padding: 44px 22px !important;
    }

    .dnp-audience-title {
        font-size: 1.36rem ;
    }

    .dnp-purpose-section {
        padding: 22px !important;
    }

    .dnp-purpose-card {
        padding: 28px 22px !important;
    }

    .dnp-timeline-item {
        gap: 18px !important;
    }

    .dnp-timeline-marker {
        width: 44px !important;
        height: 44px !important;
    }

    .dnp-timeline-container::before {
        left: 21px !important;
    }

    .dnp-timeline-card {
        padding: 22px !important;
    }
}


/* v1.0.11 — Transições premium delicadas no padrão Daniela */
.dnp-reveal-ready {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(2px);
    transition:
        opacity 820ms cubic-bezier(.22, 1, .36, 1),
        transform 820ms cubic-bezier(.22, 1, .36, 1),
        filter 820ms cubic-bezier(.22, 1, .36, 1),
        box-shadow 280ms ease,
        border-color 280ms ease,
        background-color 280ms ease;
    transition-delay: var(--dnp-reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.dnp-reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* Variações sutis por tipo de elemento */
.dnp-hero-image-container.dnp-reveal-ready,
.dnp-purpose-section.dnp-reveal-ready {
    transform: translate3d(0, 14px, 0) scale(.985);
}

.dnp-hero-image-container.dnp-reveal-visible,
.dnp-purpose-section.dnp-reveal-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.dnp-diff-card.dnp-reveal-ready,
.dnp-format-card.dnp-reveal-ready,
.dnp-timeline-item.dnp-reveal-ready {
    transform: translate3d(0, 20px, 0) scale(.985);
}

.dnp-diff-card.dnp-reveal-visible,
.dnp-format-card.dnp-reveal-visible,
.dnp-timeline-item.dnp-reveal-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Microinterações premium, sem exagero */
.dnp-btn-agendar,
.dnp-btn-outline,
.dnp-footer-button,
.dnp-diff-card,
.dnp-format-card,
.dnp-timeline-card,
.dnp-purpose-card {
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        background-color 260ms ease,
        color 260ms ease,
        border-color 260ms ease,
        opacity 260ms ease !important;
}

.dnp-btn-agendar:hover,
.dnp-btn-outline:hover,
.dnp-footer-button:hover {
    transform: translateY(-2px) !important;
}

.dnp-diff-card:hover,
.dnp-format-card:hover,
.dnp-timeline-card:hover {
    transform: translateY(-4px) !important;
}

.dnp-btn-icon,
.dnp-footer-button span,
.dnp-diff-card-icon,
.dnp-pill-icon,
.dnp-timeline-marker {
    transition:
        transform 260ms ease,
        background-color 260ms ease,
        color 260ms ease,
        fill 260ms ease,
        border-color 260ms ease !important;
}

.dnp-btn-agendar:hover .dnp-btn-icon,
.dnp-footer-button:hover span {
    transform: rotate(-8deg) scale(1.04);
}

.dnp-diff-card:hover .dnp-diff-card-icon,
.dnp-format-card:hover .dnp-pill-icon,
.dnp-timeline-item:hover .dnp-timeline-marker {
    transform: translateY(-1px) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .dnp-reveal-ready,
    .dnp-reveal-visible,
    .dnp-btn-agendar,
    .dnp-btn-outline,
    .dnp-footer-button,
    .dnp-diff-card,
    .dnp-format-card,
    .dnp-timeline-card,
    .dnp-purpose-card,
    .dnp-btn-icon,
    .dnp-footer-button span,
    .dnp-diff-card-icon,
    .dnp-pill-icon,
    .dnp-timeline-marker {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}


/* v1.0.12 — Hero ajustada: nome como destaque principal e título como subtítulo terracota */
.dnp-hero-brand-title {
    color: #CC6D52;
    font-size: 2.36rem ;
    line-height: 1.08 ;
    letter-spacing: -0.035em ;
    font-weight: 600 ;
    margin: 0 0 10px !important;
}

.dnp-hero-subtitle {
    color: #CC6D52;
    font-size: 1.02rem ;
    line-height: 1.55 ;
    letter-spacing: .01em ;
    font-weight: 400 ;
    font-style: italic ;
    margin: 0 0 24px !important;
    max-width: 460px !important;
}

.dnp-hero-content > p:not(.dnp-hero-subtitle):not(.dnp-hero-highlight) strong {
    color: #CC6D52;
    font-weight: 600 ;
}

.dnp-hero-content > p:not(.dnp-hero-subtitle):not(.dnp-hero-highlight) span {
    color: inherit;
}

@media (max-width: 767px) {
    .dnp-hero-brand-title {
        font-size: 1.92rem ;
        line-height: 1.1 ;
    }

    .dnp-hero-subtitle {
        font-size: .94rem ;
        margin-bottom: 20px !important;
    }
}


/* v1.0.13 — Etiquetas premium estilo Daniela */
.dnp-tag-pill,
.dnp-formats-badge.dnp-tag-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: 100% !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background-color: #F1E7DC;
    color: #CC6D52;
    border: 1px solid rgba(204, 109, 82, .10);
    font-family: var(--font-main) ;
    font-size: .68rem ;
    line-height: 1 ;
    font-weight: 700 ;
    letter-spacing: .13em ;
    text-transform: uppercase ;
    box-shadow: 0 10px 24px rgba(61, 53, 46, .035) !important;
    margin-bottom: 18px !important;
}

.dnp-tag-pill .line,
.dnp-tag-pill .dot,
.dnp-formats-badge.dnp-tag-pill .diamond {
    display: none !important;
}

.dnp-diff-left .dnp-tag-pill {
    margin-bottom: 0 !important;
}

.dnp-timeline-header .dnp-tag-pill {
    margin-left: auto !important;
    margin-right: auto !important;
}

.dnp-audience-box .dnp-tag-pill {
    background-color: rgba(248, 246, 239, .28);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .22);
    margin-bottom: 18px !important;
}

.dnp-formats-badge.dnp-tag-pill {
    margin-bottom: 20px !important;
}

/* remove aparência antiga das etiquetas */
.dnp-formats-badge {
    gap: 0 !important;
}

@media (max-width: 767px) {
    .dnp-tag-pill,
    .dnp-formats-badge.dnp-tag-pill {
        padding: 7px 14px !important;
        font-size: .62rem ;
        letter-spacing: .11em ;
        margin-bottom: 16px !important;
    }
}


/* v1.0.14 — Todos os botões no padrão da Hero */
.dnp-btn-agendar,
.dnp-btn-standard,
.dnp-footer-button.dnp-btn-standard {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 42px !important;
    padding: 6px 20px 6px 6px !important;
    border-radius: 999px !important;
    background-color: #3D352E;
    color: #FFFFFF;
    border: 1px solid transparent;
    font-family: var(--font-main) ;
    font-size: .84rem ;
    font-weight: 500 ;
    line-height: 1.1 ;
    letter-spacing: -.01em ;
    text-decoration: none ;
    gap: 0 !important;
    box-shadow: 0 12px 28px rgba(61, 53, 46, .11) !important;
    overflow: hidden !important;
}

.dnp-btn-agendar .dnp-btn-icon,
.dnp-footer-button.dnp-btn-standard span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 32px !important;
    height: 32px !important;
    margin-right: 13px !important;
    border-radius: 50% !important;
    background-color: #A3B89F;
    color: #3D352E;
}

.dnp-footer-button.dnp-btn-standard span {
    margin-left: 0 !important;
}

.dnp-btn-agendar .dnp-btn-icon i,
.dnp-footer-button.dnp-btn-standard span i {
    color: inherit;
    font-size: 13px ;
    line-height: 1 ;
}

.dnp-btn-agendar .dnp-btn-icon svg,
.dnp-footer-button.dnp-btn-standard span svg {
    width: 13px !important;
    height: 13px !important;
    display: block !important;
    fill: currentColor;
}

.dnp-btn-agendar .dnp-btn-icon svg *,
.dnp-footer-button.dnp-btn-standard span svg * {
    fill: currentColor;
}

.dnp-btn-agendar:hover,
.dnp-btn-standard:hover,
.dnp-footer-button.dnp-btn-standard:hover {
    background-color: #17171A;
    color: #FFFFFF;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 34px rgba(61, 53, 46, .15) !important;
}

.dnp-btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: fit-content !important;
    min-height: 42px !important;
    padding: 6px 20px 6px 6px !important;
    border-radius: 999px !important;
    background-color: #3D352E;
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(61, 53, 46, .11) !important;
}

.dnp-btn-outline .dnp-diamond-icon {
    display: none !important;
}

@media (max-width: 767px) {
    .dnp-btn-agendar,
    .dnp-btn-standard,
    .dnp-footer-button.dnp-btn-standard,
    .dnp-btn-outline {
        min-height: 40px !important;
        padding: 5px 17px 5px 5px !important;
        font-size: .78rem ;
    }

    .dnp-btn-agendar .dnp-btn-icon,
    .dnp-footer-button.dnp-btn-standard span {
        width: 30px !important;
        height: 30px !important;
        margin-right: 11px !important;
    }
}


/* v1.0.16 — Título da Hero no estilo da Daniela principal */
.dnp-hero-brand-title {
    color: #3D352E;
    font-family: var(--font-main) ;
    font-size: 2.34rem ;
    line-height: 1.06 ;
    letter-spacing: -0.04em ;
    font-weight: 500 ;
    margin: 0 0 10px !important;
    text-wrap: balance;
}

@media (max-width: 767px) {
    .dnp-hero-brand-title {
        font-size: 1.92rem ;
        line-height: 1.08 ;
        letter-spacing: -0.035em ;
    }
}


/* v1.0.17 — Correção: tipografia do Elementor funcionando */
.dnp-page,
.dnp-page h1,
.dnp-page h2,
.dnp-page h3,
.dnp-page p,
.dnp-page a,
.dnp-page span,
.dnp-page div,
.dnp-hero-brand-title,
.dnp-hero-subtitle,
.dnp-hero-content p,
.dnp-hero-highlight,
.dnp-diff-left h2,
.dnp-diff-card p,
.dnp-section-title,
.dnp-formats-badge,
.dnp-tag-pill,
.dnp-pill-text,
.dnp-format-card p,
.dnp-audience-eyebrow,
.dnp-audience-title,
.dnp-audience-text,
.dnp-purpose-card h3,
.dnp-purpose-card p,
.dnp-highlight-quote,
.dnp-timeline-card h3,
.dnp-timeline-card p,
.dnp-footer strong,
.dnp-footer p,
.dnp-btn-agendar,
.dnp-footer-button {
    font-family: inherit;
}

/* A partir daqui, tamanho, fonte, peso, altura da linha e espaçamento ficam livres para o Elementor. */

/* v1.0.18 — Correção definitiva da visualização Tablet no editor e no front-end */
html[data-dnp-device="desktop"] .dnp-device-shell,
html[data-dnp-device="tablet"] .dnp-device-shell,
html[data-dnp-device="mobile"] .dnp-device-shell {
    display: none !important;
}

html[data-dnp-device="desktop"] .dnp-device-shell.dnp-device-desktop,
html[data-dnp-device="tablet"] .dnp-device-shell.dnp-device-tablet,
html[data-dnp-device="mobile"] .dnp-device-shell.dnp-device-mobile {
    display: flex !important;
    width: 100%;
}

/* Segurança para o modo responsivo do editor Elementor */
body.elementor-device-desktop .dnp-device-shell { display: none !important; }
body.elementor-device-desktop .dnp-device-shell.dnp-device-desktop { display: flex !important; width: 100%; }
body.elementor-device-tablet .dnp-device-shell { display: none !important; }
body.elementor-device-tablet .dnp-device-shell.dnp-device-tablet { display: flex !important; width: 100%; }
body.elementor-device-mobile .dnp-device-shell { display: none !important; }
body.elementor-device-mobile .dnp-device-shell.dnp-device-mobile { display: flex !important; width: 100%; }

/* v1.0.19 — Hero Tablet: texto menor e foto ao lado */
@media (min-width: 768px) and (max-width: 1024px) {
    .dnp-device-shell.dnp-device-tablet .dnp-hero-banner {
        flex-direction: row !important;
        align-items: stretch !important;
        min-height: 470px !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-content {
        flex: 0 0 56% !important;
        width: 56% !important;
        padding: 34px 30px !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-image-container {
        flex: 0 0 44% !important;
        width: 44% !important;
        min-height: 470px !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-image-container img {
        width: 100% !important;
        height: 100% !important;
        min-height: 470px !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-content .dnp-eyebrow {
        font-size: .67rem;
        letter-spacing: 1.1px !important;
        margin-bottom: 10px !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-brand-title,
    .dnp-device-shell.dnp-device-tablet .dnp-hero-content h1 {
        font-size: 1.72rem;
        line-height: 1.08;
        letter-spacing: -.035em !important;
        margin-bottom: 14px !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-subtitle,
    .dnp-device-shell.dnp-device-tablet .dnp-hero-content p {
        font-size: .78rem;
        line-height: 1.48;
        margin-bottom: 10px !important;
        max-width: 100% !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-hero-highlight {
        font-size: .82rem;
        line-height: 1.42;
        margin-top: 4px !important;
        margin-bottom: 22px !important;
        padding-left: 12px !important;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-btn-agendar {
        min-height: 38px !important;
        padding: 5px 16px 5px 5px !important;
        font-size: .74rem;
    }

    .dnp-device-shell.dnp-device-tablet .dnp-btn-agendar .dnp-btn-icon {
        width: 28px !important;
        height: 28px !important;
        margin-right: 10px !important;
    }
}


/* v1.0.20 — Hero Mobile: imagem antes do conteúdo */
@media (max-width: 767px) {
    .dnp-device-shell.dnp-device-mobile .dnp-hero-banner {
        display: flex !important;
        flex-direction: column !important;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-image-container {
        order: 1 !important;
        width: 100% !important;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-content {
        order: 2 !important;
        width: 100% !important;
    }
}

/* v1.0.21 — HERO TABLET REAL: layout lateral independente do breakpoint do Elementor */
.dnp-device-shell.dnp-device-tablet .dnp-hero-banner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    min-height: 460px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-content {
    order: 1 !important;
    flex: 0 0 56% !important;
    width: 56% !important;
    min-width: 0 !important;
    padding: 30px 26px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-image-container {
    order: 2 !important;
    flex: 0 0 44% !important;
    width: 44% !important;
    min-width: 0 !important;
    min-height: 460px !important;
    align-self: stretch !important;
    overflow: hidden !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-image-container img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 460px !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-brand-title,
.dnp-device-shell.dnp-device-tablet .dnp-hero-content h1 {
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    line-height: 1.08;
    margin: 0 0 12px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-subtitle,
.dnp-device-shell.dnp-device-tablet .dnp-hero-content p {
    font-size: .76rem;
    line-height: 1.45;
    margin-bottom: 9px !important;
    max-width: 100% !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-highlight {
    font-size: .8rem;
    line-height: 1.4;
    margin: 3px 0 18px !important;
    padding-left: 10px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-btn-agendar {
    font-size: .72rem;
    padding: 5px 14px 5px 5px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-btn-icon {
    width: 27px !important;
    height: 27px !important;
    margin-right: 9px !important;
}

/* v1.0.21 — HERO TABLET REAL: layout lateral independente do breakpoint do Elementor */
.dnp-device-shell.dnp-device-tablet .dnp-hero-banner{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;align-items:stretch!important;min-height:460px!important}
.dnp-device-shell.dnp-device-tablet .dnp-hero-content{order:1!important;flex:0 0 56%!important;width:56%!important;min-width:0!important;padding:30px 26px!important;justify-content:center!important;align-items:flex-start!important;text-align:left!important}
.dnp-device-shell.dnp-device-tablet .dnp-hero-image-container{order:2!important;flex:0 0 44%!important;width:44%!important;min-width:0!important;min-height:460px!important;align-self:stretch!important;overflow:hidden!important}
.dnp-device-shell.dnp-device-tablet .dnp-hero-image-container img{display:block!important;width:100%!important;max-width:none!important;height:100%!important;min-height:460px!important;object-fit:cover!important;object-position:center center!important}
.dnp-device-shell.dnp-device-tablet .dnp-hero-brand-title,.dnp-device-shell.dnp-device-tablet .dnp-hero-content h1{font-size:clamp(1.45rem,2.5vw,1.75rem);line-height:1.08;margin:0 0 12px!important}
.dnp-device-shell.dnp-device-tablet .dnp-hero-subtitle,.dnp-device-shell.dnp-device-tablet .dnp-hero-content p{font-size:.76rem;line-height:1.45;margin-bottom:9px!important;max-width:100%!important}
.dnp-device-shell.dnp-device-tablet .dnp-hero-highlight{font-size:.8rem;line-height:1.4;margin:3px 0 18px!important;padding-left:10px!important}
.dnp-device-shell.dnp-device-tablet .dnp-btn-agendar{font-size:.72rem;padding:5px 14px 5px 5px!important}
.dnp-device-shell.dnp-device-tablet .dnp-btn-icon{width:27px!important;height:27px!important;margin-right:9px!important}


/* v1.0.27 — cores controladas diretamente pelo Elementor, sem fallback bloqueando o preview. */

/* v1.0.28 — Hero: sombra removível e posicionamento manual da foto por dispositivo */
.dnp-hero-image-container::after {
    opacity: var(--dnp-image-overlay-opacity, 0) !important;
}
.dnp-hero-image-container img {
    object-position: 50% 50%;
}


/* v1.0.29 — Hero com três molduras fotográficas.
   Desktop/tablet: texto à esquerda e fotos à direita.
   Mobile: fotos primeiro e texto abaixo. */
.dnp-hero-banner {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 520px;
}

.dnp-hero-content {
    order: 1 !important;
    flex: 0 0 55% !important;
    width: 55% !important;
    min-width: 0 !important;
}

.dnp-hero-collage {
    --dnp-collage-bg: #f5f0e8;
    order: 2 !important;
    flex: 0 0 45% !important;
    width: 45% !important;
    min-width: 0 !important;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 82% 16%, rgba(204, 109, 82, .10) 0 2px, transparent 3px),
        linear-gradient(135deg, rgba(255,255,255,.46), rgba(255,255,255,0)),
        var(--dnp-collage-bg);
}

.dnp-hero-collage::before,
.dnp-hero-collage::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(204, 109, 82, .28);
    border-radius: 50%;
}

.dnp-hero-collage::before {
    width: 150px;
    height: 150px;
    right: -88px;
    top: -88px;
}

.dnp-hero-collage::after {
    width: 120px;
    height: 120px;
    left: 38%;
    bottom: -92px;
}

.dnp-hero-photo {
    position: absolute;
    overflow: hidden;
    background: #eee8df;
    border: 1px solid rgba(61, 53, 46, .08);
    z-index: 1;
}

.dnp-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(20, 18, 16, .45);
    opacity: var(--dnp-image-overlay-opacity, 0);
}

.dnp-hero-photo img {
    position: relative;
    z-index: 1;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: 50% 50%;
}

.dnp-hero-photo-left {
    left: 2%;
    top: 17%;
    width: 36%;
    height: 67%;
    z-index: 1;
}

.dnp-hero-photo-center {
    left: 29%;
    top: 9%;
    width: 43%;
    height: 82%;
    z-index: 3;
}

.dnp-hero-photo-right {
    right: 2%;
    top: 20%;
    width: 28%;
    height: 58%;
    z-index: 2;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-banner {
    min-height: 460px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-content {
    order: 1 !important;
    flex: 0 0 56% !important;
    width: 56% !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-hero-collage {
    order: 2 !important;
    flex: 0 0 44% !important;
    width: 44% !important;
    min-height: 460px !important;
}

@media (max-width: 767px) {
    .dnp-device-shell.dnp-device-mobile .dnp-hero-banner {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-collage {
        order: 1 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: 330px;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-content {
        order: 2 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-photo-left {
        left: 2%;
        top: 16%;
        width: 36%;
        height: 68%;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-photo-center {
        left: 29%;
        top: 8%;
        width: 43%;
        height: 84%;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-hero-photo-right {
        right: 2%;
        top: 20%;
        width: 28%;
        height: 58%;
    }
}

/* v1.0.31 — Propósito em card arredondado.
   Imagem à esquerda; conteúdo à direita; botão em formato pílula. */
.dnp-purpose-section {
    width: 100% !important;
    max-width: 1100px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    background-color: #F8F5EF;
    box-shadow: none !important;
    border: 1px solid rgba(112, 101, 90, .10);
    isolation: isolate;
}

.dnp-purpose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .58;
    background:
        radial-gradient(ellipse at 18% 45%, transparent 0 42%, rgba(204,109,82,.07) 42.3% 42.8%, transparent 43.1% 52%, rgba(204,109,82,.045) 52.3% 52.7%, transparent 53%),
        linear-gradient(112deg, transparent 0 31%, rgba(255,255,255,.52) 31.2% 31.7%, transparent 32% 100%);
}

.dnp-purpose-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.48fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
    width: 100%;
    padding: clamp(38px, 5.4vw, 72px);
}

.dnp-purpose-copy {
    min-width: 0;
    padding-top: 2px;
}

.dnp-purpose-layout .dnp-tag-pill {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 0 20px !important;
}

.dnp-purpose-title {
    max-width: 650px;
    margin: 0 0 28px !important;
    color: var(--text-main);
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 400;
}

.dnp-purpose-benefits {
    width: 100%;
    max-width: 680px;
    border-top: 1px solid rgba(112, 101, 90, .13);
}

.dnp-purpose-benefit {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 19px 0;
    border-bottom: 1px solid rgba(112, 101, 90, .13);
}

.dnp-purpose-check {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid var(--brand-sage-dark);
    border-radius: 6px;
    color: var(--brand-sage-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
}

.dnp-purpose-check svg {
    display: block;
    width: 15px;
    height: 15px;
}

.dnp-purpose-benefit-text {
    margin: 0 !important;
    color: var(--text-support);
    font-size: .94rem;
    line-height: 1.62;
    font-weight: 400;
}

.dnp-purpose-note {
    max-width: 660px;
    margin: 26px 0 0 !important;
    color: var(--text-support);
    font-size: .84rem;
    line-height: 1.62;
    font-style: italic;
}

.dnp-purpose-media {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.dnp-purpose-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 24px;
    background: #EEE7DE;
}

.dnp-purpose-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,.02), rgba(61,53,46,.05));
}

.dnp-purpose-image-frame img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.dnp-purpose-media-title {
    margin: 16px 0 12px !important;
    color: var(--text-main);
    text-align: center;
    font-size: .92rem;
    line-height: 1.18;
    letter-spacing: .01em;
    font-weight: 500;
}

.dnp-purpose-cta {
    width: 100%;
    min-height: 40px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #CC6D52;
    color: #FFFFFF;
    text-decoration: none !important;
    text-align: center;
    font-size: .75rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .04em;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.dnp-purpose-cta svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    stroke: currentColor;
}

.dnp-purpose-cta:hover {
    transform: translateY(-2px);
    opacity: .94;
    box-shadow: 0 10px 22px rgba(61, 53, 46, .12);
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-layout {
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    padding: 42px;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-section {
    border-radius: 28px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-image-frame {
    border-radius: 20px;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-title {
    font-size: 2.15rem;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-benefit {
    gap: 13px;
    padding: 16px 0;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-benefit-text {
    font-size: .83rem;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-note {
    font-size: .75rem;
    margin-top: 21px !important;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-media-title {
    font-size: .78rem;
}

.dnp-device-shell.dnp-device-tablet .dnp-purpose-cta {
    min-height: 36px;
    font-size: .68rem;
}

@media (max-width: 767px) {
    .dnp-device-shell.dnp-device-mobile .dnp-purpose-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 24px;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-section {
        border-radius: 24px !important;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-media {
        order: 1;
        width: 100%;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-copy {
        order: 2;
        width: 100%;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-title {
        font-size: 2rem;
        line-height: 1.08;
        margin-bottom: 24px !important;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-benefit {
        grid-template-columns: 23px minmax(0, 1fr);
        gap: 13px;
        padding: 16px 0;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-check {
        width: 21px;
        height: 21px;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-benefit-text {
        font-size: .88rem;
        line-height: 1.58;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-note {
        margin-top: 21px !important;
        font-size: .8rem;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-image-frame {
        aspect-ratio: 4 / 4.6;
        border-radius: 18px;
    }

    .dnp-device-shell.dnp-device-mobile .dnp-purpose-media-title {
        font-size: .86rem;
        margin-top: 14px !important;
    }
}


/* v1.0.32 — O texto abaixo da imagem e o botão respeitam exatamente a capitalização digitada.
   Maiúsculas, minúsculas e capitalização continuam livres no controle de Tipografia do Elementor. */


/* v1.0.33 — Transições suaves e premium para Hero e Propósito */
.dnp-hero-photo,
.dnp-purpose-section,
.dnp-purpose-image-frame,
.dnp-purpose-image-frame img,
.dnp-purpose-benefit,
.dnp-purpose-check,
.dnp-purpose-media-title,
.dnp-purpose-cta,
.dnp-purpose-title,
.dnp-purpose-note {
    transition:
        transform 420ms cubic-bezier(.22, 1, .36, 1),
        opacity 320ms ease,
        box-shadow 420ms cubic-bezier(.22, 1, .36, 1),
        border-color 320ms ease,
        background-color 320ms ease,
        color 320ms ease,
        filter 420ms cubic-bezier(.22, 1, .36, 1) !important;
}

.dnp-hero-photo,
.dnp-purpose-image-frame {
    box-shadow: 0 14px 34px rgba(61, 53, 46, .06);
}

.dnp-hero-photo:hover,
.dnp-purpose-section:hover .dnp-purpose-image-frame {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(61, 53, 46, .08);
}

.dnp-hero-photo img,
.dnp-purpose-image-frame img {
    transform: scale(1.001);
}

.dnp-hero-photo:hover img,
.dnp-purpose-section:hover .dnp-purpose-image-frame img {
    transform: scale(1.028);
}

.dnp-purpose-section:hover {
    border-color: rgba(112, 101, 90, .16);
    box-shadow: 0 20px 44px rgba(61, 53, 46, .05);
}

.dnp-purpose-benefit {
    border-radius: 14px;
    padding-left: 2px;
    padding-right: 2px;
}

.dnp-purpose-benefit:hover {
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, .34);
}

.dnp-purpose-benefit:hover .dnp-purpose-check {
    transform: scale(1.06);
    background-color: rgba(163, 184, 159, .08);
}

.dnp-purpose-section:hover .dnp-purpose-media-title,
.dnp-purpose-section:hover .dnp-purpose-title {
    transform: translateY(-1px);
}

.dnp-purpose-cta {
    box-shadow: 0 10px 24px rgba(204, 109, 82, .14);
}

.dnp-purpose-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 28px rgba(61, 53, 46, .14);
}

.dnp-purpose-cta:hover svg {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .dnp-hero-photo,
    .dnp-purpose-section,
    .dnp-purpose-image-frame,
    .dnp-purpose-image-frame img,
    .dnp-purpose-benefit,
    .dnp-purpose-check,
    .dnp-purpose-media-title,
    .dnp-purpose-cta,
    .dnp-purpose-title,
    .dnp-purpose-note,
    .dnp-purpose-cta svg {
        transition: none !important;
        transform: none !important;
    }
}


/* v1.0.34 — Transições suaves em toda a página */
.dnp-hero-banner,
.dnp-hero-content > *,
.dnp-hero-photo,
.dnp-diff-left > *,
.dnp-diff-card,
.dnp-formats-badge,
.dnp-section-title,
.dnp-format-card,
.dnp-audience-box,
.dnp-audience-title,
.dnp-audience-text,
.dnp-purpose-section,
.dnp-purpose-media > *,
.dnp-purpose-copy > *,
.dnp-purpose-benefit,
.dnp-timeline-header > *,
.dnp-timeline-item,
.dnp-footer > *,
.dnp-footer-brand > *,
.dnp-footer-contact > * {
    transition:
        transform 520ms cubic-bezier(.22, 1, .36, 1),
        opacity 380ms ease,
        box-shadow 380ms ease,
        border-color 320ms ease,
        background-color 320ms ease,
        color 320ms ease,
        filter 520ms cubic-bezier(.22, 1, .36, 1) !important;
}

.dnp-tag-pill,
.dnp-btn-agendar,
.dnp-btn-outline,
.dnp-footer-button,
.dnp-purpose-cta,
.dnp-diff-card-icon,
.dnp-pill-icon,
.dnp-purpose-check,
.dnp-timeline-marker,
.dnp-logo-dot {
    transition:
        transform 280ms ease,
        opacity 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease,
        background-color 280ms ease,
        color 280ms ease,
        fill 280ms ease !important;
}

.dnp-audience-box:hover,
.dnp-footer:hover > *,
.dnp-diff-left:hover > *,
.dnp-timeline-header:hover > * {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .dnp-hero-banner,
    .dnp-hero-content > *,
    .dnp-hero-photo,
    .dnp-diff-left > *,
    .dnp-diff-card,
    .dnp-formats-badge,
    .dnp-section-title,
    .dnp-format-card,
    .dnp-audience-box,
    .dnp-audience-title,
    .dnp-audience-text,
    .dnp-purpose-section,
    .dnp-purpose-media > *,
    .dnp-purpose-copy > *,
    .dnp-purpose-benefit,
    .dnp-timeline-header > *,
    .dnp-timeline-item,
    .dnp-footer > *,
    .dnp-footer-brand > *,
    .dnp-footer-contact > *,
    .dnp-tag-pill,
    .dnp-btn-agendar,
    .dnp-btn-outline,
    .dnp-footer-button,
    .dnp-purpose-cta,
    .dnp-diff-card-icon,
    .dnp-pill-icon,
    .dnp-purpose-check,
    .dnp-timeline-marker,
    .dnp-logo-dot {
        transition: none !important;
        transform: none !important;
    }
}


/* v1.0.35 — Efeito somente ao surgir, sem animações ao passar o mouse */
.dnp-btn-agendar:hover,
.dnp-btn-standard:hover,
.dnp-footer-button:hover,
.dnp-footer-button.dnp-btn-standard:hover,
.dnp-btn-outline:hover,
.dnp-diff-card:hover,
.dnp-format-card:hover,
.dnp-timeline-card:hover,
.dnp-timeline-card:hover::before,
.dnp-purpose-cta:hover,
.dnp-hero-photo:hover,
.dnp-purpose-section:hover,
.dnp-purpose-section:hover .dnp-purpose-image-frame,
.dnp-purpose-benefit:hover,
.dnp-audience-box:hover,
.dnp-footer:hover > *,
.dnp-diff-left:hover > *,
.dnp-timeline-header:hover > * {
    transform: none !important;
    opacity: 1 !important;
    box-shadow: inherit !important;
}

.dnp-btn-agendar:hover,
.dnp-btn-standard:hover,
.dnp-footer-button:hover,
.dnp-footer-button.dnp-btn-standard:hover {
    background-color: var(--btn-black) !important;
    color: #FFFFFF !important;
}

.dnp-btn-outline:hover {
    background: rgba(163, 184, 159, 0.05) !important;
    background-color: rgba(163, 184, 159, 0.05) !important;
    color: var(--brand-sage-dark) !important;
    border-color: var(--brand-sage-dark) !important;
}

.dnp-diff-card:hover {
    background: rgba(163, 184, 159, 0.25) !important;
}

.dnp-format-card:hover {
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02) !important;
}

.dnp-timeline-card:hover {
    border-color: var(--grid-line) !important;
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02) !important;
}

.dnp-timeline-card:hover::before {
    border-color: var(--grid-line) !important;
}

.dnp-btn-agendar:hover .dnp-btn-icon,
.dnp-footer-button:hover span,
.dnp-diff-card:hover .dnp-diff-card-icon,
.dnp-format-card:hover .dnp-pill-icon,
.dnp-timeline-item:hover .dnp-timeline-marker,
.dnp-purpose-benefit:hover .dnp-purpose-check,
.dnp-purpose-cta:hover svg,
.dnp-hero-photo:hover img,
.dnp-purpose-section:hover .dnp-purpose-image-frame img,
.dnp-purpose-section:hover .dnp-purpose-media-title,
.dnp-purpose-section:hover .dnp-purpose-title {
    transform: none !important;
}

.dnp-purpose-section:hover {
    border-color: rgba(112, 101, 90, .10) !important;
    box-shadow: none !important;
}

.dnp-purpose-section:hover .dnp-purpose-image-frame {
    box-shadow: 0 14px 34px rgba(61, 53, 46, .06) !important;
}

.dnp-purpose-benefit:hover {
    background-color: transparent !important;
}

.dnp-purpose-benefit:hover .dnp-purpose-check {
    background-color: transparent !important;
}

.dnp-purpose-cta:hover {
    box-shadow: 0 10px 24px rgba(204, 109, 82, .14) !important;
}

@media (prefers-reduced-motion: reduce) {
    .dnp-btn-agendar:hover,
    .dnp-btn-standard:hover,
    .dnp-footer-button:hover,
    .dnp-footer-button.dnp-btn-standard:hover,
    .dnp-btn-outline:hover,
    .dnp-diff-card:hover,
    .dnp-format-card:hover,
    .dnp-timeline-card:hover,
    .dnp-purpose-cta:hover,
    .dnp-hero-photo:hover,
    .dnp-purpose-section:hover,
    .dnp-purpose-section:hover .dnp-purpose-image-frame,
    .dnp-purpose-benefit:hover {
        transition: none !important;
        transform: none !important;
    }
}


/* v1.0.36 — Correção real do efeito de entrada ao rolar a página */
.dnp-reveal-ready {
    opacity: 0 !important;
    transform: translate3d(0, 24px, 0) !important;
    filter: blur(2px) !important;
    transition:
        opacity 900ms cubic-bezier(.22, 1, .36, 1),
        transform 900ms cubic-bezier(.22, 1, .36, 1),
        filter 900ms cubic-bezier(.22, 1, .36, 1) !important;
    transition-delay: var(--dnp-reveal-delay, 0ms) !important;
    will-change: opacity, transform, filter;
}

.dnp-reveal-ready.dnp-reveal-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    filter: blur(0) !important;
}

.dnp-hero-photo.dnp-reveal-ready,
.dnp-purpose-section.dnp-reveal-ready,
.dnp-audience-box.dnp-reveal-ready {
    transform: translate3d(0, 20px, 0) scale(.985) !important;
}

.dnp-hero-photo.dnp-reveal-ready.dnp-reveal-visible,
.dnp-purpose-section.dnp-reveal-ready.dnp-reveal-visible,
.dnp-audience-box.dnp-reveal-ready.dnp-reveal-visible {
    transform: translate3d(0, 0, 0) scale(1) !important;
}

@media (prefers-reduced-motion: reduce) {
    .dnp-reveal-ready,
    .dnp-reveal-ready.dnp-reveal-visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}
