/* =========================================
   PIXEL PERFECT LAYOUT CLONE + SEO + HOVER VIDEOS
   ========================================= */

 :root {
    --bg-dark-hero: #0D2D27;
    --bg-dark-grad: linear-gradient(180deg, #10312A 0%, #061A16 100%);
    --bg-card-dark: #12332C;
    --bg-card-light: #184239;
    --bg-cream: #F5EFEB;
    --bg-cream-card: #FDF9F2;
    --bg-white: #FFFFFF;
    --gold: #B8863A;
    --gold-grad: linear-gradient(180deg, #D4A35B 0%, #8C5C18 100%);
    --text-white: #FFFFFF;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* CSS critical minification logic for PageSpeed (>90) implemented here implicitly by compressing redundant rules */

.btn-gold {
    background: var(--gold-grad);
    color: var(--text-white);
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: capitalize;
    font-size: 1.05rem;
    transition: 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-gold:hover {
    filter: contrast(1.1) brightness(1.1);
}


/* HERO */

.section-hero {
    background: var(--bg-dark-grad);
    min-height: 600px;
    height: auto;
    padding-bottom: 60px;
    position: relative;
    padding-top: 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.hero-left {
    width: 380px;
    padding-top: 30px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.hero-bullets span {
    color: var(--text-white);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.hero-bullets i {
    color: var(--gold);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.hero-form input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
}

.badge-tag {
    display: inline-flex;
    border: none;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    background: var(--gold-grad);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-tag i {
    color: var(--text-dark);
    margin-right: 6px;
    font-size: 1rem;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.hero-btn {
    padding: 14px;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 5px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.hero-right {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 65%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}

.hero-portrait {
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    border-radius: 60px 60px 15px 15px;
    /* Curvatura suave apenas no topo, quinas mais retas embaixo */
    transform: scale(1.25);
    transform-origin: bottom center;
    /* Aumenta o tamanho geral da foto no espaço */
    filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.2));
    /* Natural feathering on all sides independently for a seamless blend */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 95%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 10%, black 65%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 95%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 10%, black 65%, transparent 100%);
    mask-composite: intersect;
}

.badge-float {
    position: absolute;
    top: calc(50% + 35px);
    right: 10%;
    background: #0E2E28;
    padding: 15px 25px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 10;
}

.fb-number {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--text-white);
}

.fb-text {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
}


/* CIRCLES */

.section-circles {
    background: var(--bg-white);
    padding-top: 30px;
    padding-bottom: 30px;
}

.circles-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.conn-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.circle-box {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 180px;
    background: var(--bg-white);
}

.circle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: #0E2922;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.circle-box h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.circle-box p {
    font-size: 0.85rem;
    color: #666;
}

.circle-subtext {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0 auto;
    font-size: 0.95rem;
    color: #444;
}

.circle-subtext strong {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    color: #111;
}


/* PROBLEMS */

.section-problems {
    background: var(--bg-dark-grad);
    padding: 30px 10px;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.problem-left {
    flex: 1;
}

.problem-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 50px;
    line-height: 1.2;
}

.problem-desc {
    color: rgb(255, 255, 255);
    font-size: 1.0rem;
    line-height: 1.6;
}

.problem-right {
    flex: 1;
}

.problem-img {
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom l;
    border-radius: 50px 50px 15px 15px;
    /* Curvatura suave apenas no topo, quinas mais retas embaixo */
    transform: scale(1.0);
    transform-origin: bottom center;
    /* Aumenta o tamanho geral da foto no espaço */
    filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.2));
    /* Natural feathering on all sides independently for a seamless blend */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 95%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 10%, black 65%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 95%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 10%, black 65%, transparent 100%);
    mask-composite: intersect;
}


/* DIAGNOSTICOS */

.section-diagnosticos {
    background: var(--bg-cream);
    padding: 40px 10px 20px;
}

.diag-main-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: #0E2922;
    text-align: center;
    margin-bottom: 40px;
}

.diag-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 20px;
}

.diag-flex {
    display: flex;
    gap: 15px;
    min-width: 1000px;
}

.d-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.d-card-top {
    background: var(--bg-card-dark);
    padding: 25px 15px;
    text-align: left;
}

.d-sub {
    display: block;
    font-size: 0.6rem;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.d-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--gold);
}

.d-card-bot {
    background: var(--bg-card-light);
    padding: 15px;
    text-align: left;
    height: 100%;
}

.d-card-bot p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}


/* MEGA BOTTOM */

.mega-bottom {
    background: #0E2B25;
    padding-top: 0;
    padding-bottom: 60px;
}

.mega-stats-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.stats-left {
    flex: 0 0 100px;
}

.stats-pic {
    width: 350px;
    height: 450px;
    border-radius: 120px 20px 20px 20px;
    /* Curvatura suave apenas no topo, quinas mais retas embaixo */
    transform: scale(1.0);
    transform-origin: bottom center;
    /* Aumenta o tamanho geral da foto no espaço */
    ;
    /* Natural feathering on all sides independently for a seamless blend */
    -webkit-mask-image: linear-gradient(to right, transparent 100%, black 10%, black 40%, transparent 100%), linear-gradient(to bottom, transparent 30%, black 100%, black 100%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 100%, black 100%, black 70%, transparent 100%), linear-gradient(to left, transparent 0%, black 20%, black 100%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 45%, black 95%, transparent 100%), linear-gradient(to bottom, transparent 10%, black 30%, black 95%, transparent 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 45%, black 95%, transparent 100%), linear-gradient(to bottom, transparent 10%, black 20%, black 85%, transparent 100%);
    mask-composite: intersect;
}

.stats-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-block {
    flex: 1;
    text-align: center;
}

.s-b-num {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    color: #FFF;
    line-height: 1;
    margin-bottom: 8px;
}

.s-b-num small {
    font-size: 1.5rem;
}

.s-b-text {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}


/* TESTIMONIAL VIDEO HOVER POPUP CSS */

.mega-cards-container {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.t-image-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-cream-card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
}

.t-main-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: filter 0.3s;
}


/* The popup/overlay Video */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    /* Only covers the top image block */
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    background: #000;
    overflow: hidden;
}

.hover-video-trigger:hover .video-overlay {
    opacity: 1;
    visibility: visible;
}

.hover-video-trigger:hover .t-main-img {
    filter: brightness(0.5);
}

.video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-bot-cream {
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--bg-cream-card);
    flex: 1;
}

.t-sm-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.t-bot-mid {
    flex: 1;
    font-size: 0.75rem;
    color: #444;
    line-height: 1.4;
}

.t-bot-right {
    align-self: flex-end;
}

.t-stars {
    color: #E8A843;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.t-card-auth-info {
    background: #fff;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: #666;
    font-family: var(--font-body);
    border-top: 1px rgba(0, 0, 0, 0.05) solid;
}

.t-card-auth-info strong {
    color: #111;
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 1rem;
}


/* BOTTOM */

.mega-footer-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    background-color: #0b1f1f;
}

.footer-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 50px;
}

.footer-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.foot-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.final-texts {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.copy {
    color: #7a8a8a;
    font-size: 12px;
}


/* FLOATING WA BUTTON */

.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #FFF;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(-5deg);
    color: #FFF;
    background: #20b858;
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-right {
        position: relative;
        bottom: auto;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }
    /* MOBILE */
    @media (max-width: 768px) {
        .hero-section {
            padding-top: 40px;
            /* 🔥 espaço no topo */
        }
        .hero-right {
            margin-top: 120px;
            /* opcional: separa imagem do topo */
        }
    }
    .hero-portrait {
        height: auto;
        width: 100%;
        max-height: 400px;
        object-position: center;
    }
    .section-circles {
        padding-top: 60px;
    }
    .circles-inner {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .conn-line {
        display: none;
    }
    .problem-container {
        flex-direction: column;
    }
    .mega-stats-container {
        flex-direction: column;
        text-align: center;
    }
    .stats-right {
        flex-direction: column;
        gap: 30px;
    }
    .s-divider {
        width: 60px;
        height: 1px;
    }
    .mega-cards-container {
        flex-direction: column;
    }
}


/*Calendy*/

.calendly-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.calendly-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 80%;
    margin: 5% auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.calendly-content iframe {
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}


/*header - auteraçõess */

.section-hero {
    padding-top: 10px;
    /* diminua se estiver muito alto (ex: estava 80/100px) */
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #D4AF37, #C9A227);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-line1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-title-line2 {
    font-family: 'Dancing Script', cursive;
    color: #D4AF37;
    font-size: 1.2em;
}

.hero-sub {
    margin-bottom: 20px;
    /* pode ajustar entre 18px e 28px se quiser mais respiro */
}

.hero-session-box {
    margin: 18px 0;
    padding: 10px 16px;
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #D4AF37;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-eyebrow {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


/* CONTAINER MAIS RESPIRADO */

.section-problems {
    padding: 100px 0;
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 60px;
}


/* EYEBROW MAIS PREMIUM */

.problem-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #D4AF37, #C9A227);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* HEADLINE FORTE E ELEGANTE */

.problem-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.problem-title br {
    display: block;
}


/* CONTRASTE NA FRASE FINAL */

.problem-highlight {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: #0f3d3e;
    display: block;
    margin-top: 10px;
}


/* PARÁGRAFO MAIS LEGÍVEL */

.problem-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5a5a;
    max-width: 480px;
    margin-bottom: 10px
}

.problem-unified-box {
    margin-top: 10px;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
}


/* COLUNAS */

.problem-col {
    flex: 1;
}


/* DIVISOR CENTRAL SUPER SUTIL */

.problem-divider {
    width: 3px;
    background: rgb(255, 255, 255);
}


/* TÍTULOS DOURADOS */

.problem-unified-box h3 {
    font-size: 15px;
    margin-bottom: 14px;
    color: #D4AF37;
    font-weight: 500;
}


/* LISTAS */

.problem-unified-box .problem-list {
    list-style: none;
    padding: 0;
    margin: 10px;
}

.problem-unified-box .problem-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}


/* DIFERENCIAÇÃO */

.problem-unified-box .wrong li {
    color: #ffff;
}

.problem-unified-box .right li {
    color: rgb(255, 255, 255);
}

.problem-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}


/* DIFERENCIAÇÃO SUTIL */

.problem-list.wrong li {
    color: rgba(255, 255, 255, 0.65);
}

.problem-list.right li {
    color: rgb(255, 255, 255);
}


/* LISTAS */

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #4a5a5a;
}


/* DIFERENCIAÇÃO VISUAL */

.problem-list.wrong li {
    color: #eb4c4c;
    font-weight: bold
}

.problem-list.right li {
    color: #ffffff;
}


/* IMAGEM */

.problem-img {
    width: 100%;
    border-radius: 12px;
}


/* CONTAINER IMAGEM */

.problem-right {
    position: relative;
    max-width: 500px;
    width: 100%;
}


/* DEPOIMENTO PREMIUM */

.problem-testimonial {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.problem-testimonial p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.problem-testimonial span {
    font-size: 12px;
    opacity: 0.8;
    color: #B8863A;
}


/* RESPONSIVO */

@media (max-width: 900px) {
    .problem-container {
        flex-direction: column;
        gap: 40px;
    }
    .problem-title {
        font-size: 36px;
    }
    .problem-highlight {
        font-size: 32px;
    }
    .problem-testimonial {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: -40px;
    }
}


/* ESPAÇAMENTO */

.section-diagnostico {
    padding-top: 70px;
    /* menor no topo */
    padding-bottom: 110px;
    padding-left: 40px;
    /* mais espaço lateral */
    padding-right: 40px;
}


/* telas grandes (luxo mesmo) */

@media (min-width: 1200px) {
    .section-diagnostico {
        padding-left: 80px;
        padding-right: 80px;
    }
}

.section-diagnostico .container {
    max-width: 1200px;
    margin: 0 auto;
}


/* EYEBROW */

.diag-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7a8a8a;
    display: block;
    margin-bottom: 16px;
}


/* TÍTULO */

.diag-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.1;
    color: #0b1f1f;
    margin-bottom: 16px;
}


/* SUBTÍTULO */

.diag-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #5c6b6b;
    max-width: 600px;
    margin-bottom: 50px;
}


/* GRID (mantém estrutura) */

.diag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}


/* CARD — LUXO DISCRETO (COERENTE COM O OUTRO) */

.diag-card {
    position: relative;
    padding: 28px;
    background: #0f3d3e;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.diag-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient( 90deg, transparent, #d4af37, transparent);
    opacity: 0.7;
}


/* HOVER SUAVE */

.diag-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: linear-gradient( 145deg, rgba(15, 61, 62, 1), rgba(15, 61, 62, 0.85));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}


/* TÍTULO DO CARD */

.diag-card h3 {
    color: #d4af37;
}

.diag-card p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
    .diag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section-diagnostico {
        padding-left: 20px;
        padding-right: 20px;
    }
    .diag-grid {
        grid-template-columns: 1fr;
    }
}

.diag-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #D4AF37, #C9A227);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.diag-cta {
    margin-top: 70px;
    padding: 50px 30px;
    text-align: center;
    background: #0f3d3e;
    border-radius: 16px;
}


/* TÍTULO */

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

.cta-title span {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 34px;
    color: #d4af37;
    text-transform: none;
    margin-top: 5px;
}


/* TEXTO */

.cta-subtitle {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}


/* BOTÃO */

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #d4af37;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #e5c04a;
}


/* NOTA */

.cta-note {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}


/* E PARA VOCE OU NÃO*/

.section-fit {
    padding-top: 2px;
    /* topo reduzido */
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 80px;
}

@media (min-width: 1200px) {
    .section-fit {
        padding-left: 80px;
        padding-right: 80px;
    }
}

.fit-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}


/* mantém lado a lado até tablets */

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

.fit-card {
    position: relative;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.fit-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7a8a8a;
    display: block;
    margin-bottom: 16px;
}

.fit-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    color: #0f3d3e;
}

.fit-title span {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
    color: #0f3d3e;
    /* petróleo */
    text-transform: none;
    margin-top: 8px;
}

.fit-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #D4AF37, #C9A227);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fit-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    color: #0b1f1f;
}

.fit-title span {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
    color: #C9A227;
    /* petróleo */
    text-transform: none;
    margin-top: 8px;
}

.fit-yes {
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient( 145deg, rgba(15, 61, 62, 0.95), rgba(15, 61, 62, 0.8));
    color: #ffffff;
}

.fit-yes h3 {
    color: #d4af37;
    margin-bottom: 18px;
    font-size: 18px;
}

.fit-yes li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.fit-yes li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.fit-no {
    padding: 32px;
    border-radius: 16px;
    background: #f7f4ef;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.fit-no h3 {
    color: #6b6b6b;
    margin-bottom: 18px;
    font-size: 18px;
}

.fit-card {
    transition: all 0.3s ease;
}

.fit-card:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
    .fit-title {
        font-size: 36px;
    }
    .fit-title span {
        font-size: 30px;
    }
}

.fit-card {
    position: relative;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.fit-card {
    position: relative;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}


/* quando passa o mouse no container */

.fit-grid:hover .fit-card {
    opacity: 0.6;
    filter: blur(1px);
}


/* card ativo ganha destaque */

.fit-grid .fit-card:hover {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-8px) scale(1.02);
    z-index: 2;
}


/* quando passa o mouse no container */

.fit-grid:hover .fit-card {
    opacity: 0.6;
    filter: blur(1px);
}


/* card ativo ganha destaque */

.fit-grid .fit-card:hover {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-8px) scale(1.02);
    z-index: 2;
}

.fit-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.4s ease;
}


/* ativa só no hover */

.fit-card:hover::after {
    width: 100%;
}


/*SECTION MAYARA*/

.mayara-section {
    position: relative;
    background-color: #0f2f2f;
    /* petróleo */
    color: #ffffff;
    padding: 80px 60px;
    overflow: hidden;
}

.mayara-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('assets/mayara.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* fade lateral */
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
}

.mayara-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #D4AF37, #C9A227);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.headline-top,
.headline-bottom {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    margin: 10px 0;
}

.headline-script {
    font-family: 'Dancing Script', cursive;
    color: #D4AF37;
    font-size: 32px;
    margin: 5px 0;
}

.paragraph {
    line-height: 1.6;
    margin-bottom: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tags span {
    border: 1px solid #c9a96e;
    padding: 6px 14px;
    border-radius: 20px;
}

.quote {
    border-left: 4px solid #c9a96e;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
}

.quote strong {
    display: block;
    margin-top: 10px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.metrics h3 {
    margin: 0;
    color: #D4AF37;
    font-size: 40px;
}

.metrics p {
    margin: 0;
    opacity: 0.7;
}


/*SECTION MAYARA -  FIM*/


/* SECTION CLIENTES*/


/* SECTION */

.clientes-section {
    background-color: #ffffff;
}


/* GRID FULL HEIGHT */

.clientes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    /* 🔥 ocupa a altura inteira da tela */
}


/* IMAGEM FULL */

.clientes-imagem {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('assets/mayara_clientes.png');
    background-size: cover;
    background-position: center;
}


/* OVERLAY DE TRANSPARÊNCIA (30%) */

.clientes-imagem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.568) 85%, rgb(255, 255, 255) 100%);
}


/* CONTEÚDO DIREITA */

.clientes-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}


/* HEADER */

.eyebrow {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.6;
}

.headline-top,
.headline-bottom {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    margin: 10px 0;
}

.headline-script {
    font-family: 'Dancing Script', cursive;
    color: #D4AF37;
    font-size: 46px;
}

.subtitulo {
    margin-top: 20px;
    line-height: 1.6;
    color: #444;
}


/* BOX */

.lista-box {
    margin-top: 30px;
    padding: 25px 30px;
    border: 1px solid #c9a96e;
    border-radius: 12px;
}


/* LISTA */

.clientes-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clientes-lista li {
    position: relative;
    padding: 10px 0 10px 20px;
    font-size: 14px;
    color: #333;
}

.clientes-lista li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background-color: #c9a96e;
    border-radius: 50%;
}


/* HOVER */

.clientes-lista li:hover {
    color: #0f2f2f;
    transform: translateX(4px);
    transition: all 0.25s ease;
}


/*SECTION CIENTES*/


/* SECTION DEPOIMENTS*/


/* SECTION */

.depoimentos-section {
    background-color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}


/* HEADER */

.depoimentos-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.eyebrow {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.6;
}

.headline-top,
.headline-bottom {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    margin: 10px 0;
}

.headline-script {
    font-family: 'Dancing Script', cursive;
    color: #D4AF37;
    font-size: 34px;
}


/* GRID */

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}


/* CARD */

.depoimento-card {
    background: #faf8f8;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 2px solid #c9a96e;
}


/* HOVER */

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}


/* FOTO */

.depoimento-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #c9a96e;
}


/* NOME */

.depoimento-card h4 {
    margin: 5px 0;
}


/* CARGO */

.cargo {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.stars {
    color: #D4AF37;
}


/* TEXTO */

.texto {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}


/* BOTÃO */

.btn-video {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #c9a96e;
    color: #0f2f2f;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
}


/* HOVER BOTÃO */

.btn-video:hover {
    background-color: #c9a96e;
    color: #fff;
}


/* RESPONSIVO - MOBILE */

@media (max-width: 768px) {
    .depoimentos-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* 🔥 um abaixo do outro */
        gap: 20px;
    }
    .depoimento-card {
        width: 100%;
    }
}


/* MODAL */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}


/* ATIVO */

.video-modal.active {
    opacity: 1;
    visibility: visible;
}


/* CAIXA CENTRAL */


/* MODAL BASE continua igual */


/* FORMATO MOBILE (CELULAR) */

.modal-content {
    position: relative;
    width: 320px;
    /* largura padrão celular */
    max-width: 90%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}


/* VÍDEO VERTICAL (9:16) */

.modal-content iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    /* 🔥 formato celular */
    display: block;
}


/* CENTRALIZA MELHOR */

.video-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* BOTÃO FECHAR */

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: #c9a96e;
    color: #000;
}


/* SECTION DEPOIMENTS*/