/* =============================================
   ADVOCACIA NA PRÁTICA — Premium v4 (Design Sênior)
   Asymmetry, Grain Textures, Editorial Typography
   #1F3C88  #CDB239  #fff
   ============================================= */



/* ---- RESET ---- */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:'Source Sans 3','Georgia',serif;font-size:17.5px;line-height:1.75;color:#333;background:#fcfcfc;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
b,strong{font-weight:500;color:inherit}

/* ---- LAYOUT ---- */
.container{max-width:1120px;margin:0 auto;padding:0 32px}
.container-narrow{max-width:760px;margin:0 auto;padding:0 32px}

/* ---- TYPOGRAPHY ---- */
.s-title{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-weight:600;font-size:2.8rem;line-height:1.15;
    color:#1F3C88;margin-bottom:36px;letter-spacing:-.02em;
}
.s-title.light{color:#fff}
.s-title.center{text-align:center}

.editorial {
    font-family:'Cormorant Garamond','Georgia',serif;
    font-style:italic;
    font-weight:500;
    letter-spacing: -0.01em;
}

.editorial-small {
    font-family:'Cormorant Garamond','Georgia',serif;
    font-style:italic;
    font-weight:400;
}

.dot{color:#CDB239}

/* ---- BADGES & EMBELLISHMENTS ---- */
.badge{
    display:inline-flex;align-items:center;gap:7px;
    font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.15em;
    color:#1F3C88;background:transparent;border:1px solid rgba(205,178,57,.6);
    padding:6px 18px;border-radius:30px;margin-bottom:22px;
}
.badge svg{stroke:#CDB239;flex-shrink:0}
.badge-light{color:rgba(255,255,255,.9);background:transparent;border:1px solid rgba(255,255,255,.4)}
.badge-light svg{stroke:rgba(255,255,255,.9)}

.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(31,60,136,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatUpDown 6s ease-in-out infinite;
}

.badge-pos-1 {
    top: 25%;
    left: -40px;
}
.badge-pos-2 {
    bottom: -20px;
    right: -20px;
    background: #1F3C88;
    color: #CDB239;
    border-radius: 50%;
    width: 70px; height: 70px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31,60,136,0.3);
    border: none;
    animation-delay: 2s;
}

.glass-badges-wrap {
    display: none;
}

.badge-number {
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    font-weight:700;
    color:#CDB239;
    line-height:1;
}
.badge-text {
    font-size:0.8rem;
    text-transform:uppercase;
    font-weight:600;
    color:#1F3C88;
    line-height:1.2;
    letter-spacing:0.05em;
}

@keyframes floatUpDown {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ---- DIFFUSE SHADOWS ---- */
.diffuse-shadow {
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 
                0 12px 32px rgba(31,60,136,0.06), 
                0 24px 64px rgba(31,60,136,0.04);
}
.diffuse-shadow-light {
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 
                0 12px 32px rgba(0,0,0,0.06), 
                0 24px 64px rgba(0,0,0,0.08);
}

/* ---- BUTTONS & MAGNETIC FX ---- */
.btn{
    display:inline-flex;align-items:center;gap:10px;
    font-family:'Source Sans 3',sans-serif;font-weight:600;font-size:.92rem;
    text-transform:uppercase;letter-spacing:.07em;
    padding:18px 40px;border-radius:24px;border:none;cursor:pointer;
    transition:all .4s cubic-bezier(0.16, 1, 0.3, 1);
    line-height:1;
    position: relative;
    overflow: hidden;
}
.btn-gold{
    background: linear-gradient(135deg, #244498 0%, #15295f 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 
        0 10px 30px rgba(31,60,136,0.25), 
        inset 0 1.5px 1px rgba(255,255,255,0.2);
}
.btn-gold svg { stroke: #CDB239; color: #CDB239; } /* Gold icons inside the button */
.btn-gold:hover{
    background: linear-gradient(135deg, #284ba6 0%, #172d68 100%);
    box-shadow: 
        0 15px 40px rgba(31,60,136,0.35), 
        inset 0 1.5px 1px rgba(255,255,255,0.25);
    transform:translateY(-3px);
}
.btn-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: radial-gradient(circle, rgba(205,178,57,0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-gold:hover .btn-glow {
    opacity: 1;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-lg{font-size:1rem;padding:20px 46px}

/* ---- DIVIDERS ---- */
.divider-gold{width:40px;height:2px;background:#CDB239;margin-bottom:20px;border-radius:2px}
.dot-separator { color: #CDB239; font-size: 1.2rem; }

/* ---- REVEAL & ASYMMETRY ---- */
.reveal{opacity:0;transform:translateY(36px) scale(0.97);transition:opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1)}
.reveal.show{opacity:1;transform:translateY(0) scale(1)}

/* Stagger Middle (Assimetria em displays desktop) */
@media(min-width: 961px) {
    .staggered-cards {
        align-items: flex-start;
    }
    .stagger-middle {
        margin-top: 40px;
    }
}

/* stagger reveals */
.glass-card:nth-child(2).reveal,.why-card:nth-child(2).reveal,.proof-card:nth-child(2).reveal,.pillar-card:nth-child(2).reveal,.inc-extra:nth-child(2).reveal{transition-delay:.1s}
.glass-card:nth-child(3).reveal,.why-card:nth-child(3).reveal,.pillar-card:nth-child(3).reveal,.inc-extra:nth-child(3).reveal{transition-delay:.2s}
.outcome-item:nth-child(2).reveal{transition-delay:.04s}
.outcome-item:nth-child(3).reveal{transition-delay:.08s}
.outcome-item:nth-child(4).reveal{transition-delay:.12s}
.outcome-item:nth-child(5).reveal{transition-delay:.16s}
.outcome-item:nth-child(6).reveal{transition-delay:.2s}
.outcome-item:nth-child(7).reveal{transition-delay:.24s}
.outcome-item:nth-child(8).reveal{transition-delay:.28s}
.meet:nth-child(2).reveal{transition-delay:.04s}
.meet:nth-child(3).reveal{transition-delay:.08s}
.meet:nth-child(4).reveal{transition-delay:.12s}
.meet:nth-child(5).reveal{transition-delay:.16s}
.meet:nth-child(6).reveal{transition-delay:.2s}
.meet:nth-child(7).reveal{transition-delay:.24s}
.meet:nth-child(8).reveal{transition-delay:.28s}

/* ---- GLASS ORB (decorative) ---- */
.glass-orb{
    position:absolute;border-radius:50%;pointer-events:none;
    background:radial-gradient(circle,rgba(205,178,57,.06) 0%,transparent 70%);
    filter:blur(60px);
}
.glass-orb-1{width:500px;height:500px;top:-150px;right:-150px}
.glass-orb-2{width:400px;height:400px;bottom:-100px;left:-100px}
.glass-orb-3{width:400px;height:400px;top:-100px;left:-100px;background:radial-gradient(circle,rgba(205,178,57,.05) 0%,transparent 70%)}
.glass-orb-4{width:500px;height:500px;bottom:-100px;right:-100px;background:radial-gradient(circle,rgba(205,178,57,.06) 0%,transparent 70%)}


/* =============================================
   NAVBAR
   ============================================= */
.navbar{
    position:fixed;top:0;left:0;right:0;z-index:1000;
    padding:24px 0;transition:all .4s cubic-bezier(0.16, 1, 0.3, 1);background:transparent;
}
.navbar.scrolled{
    background:rgba(252,252,252,.85);
    backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
    box-shadow:0 1px 30px rgba(31,60,136,.04);
    padding:14px 0;
}
.nav-container{
    max-width:1120px;margin:0 auto;padding:0 32px;
    display:flex;justify-content:space-between;align-items:center;
}
.nav-logo{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-weight:700;font-size:1.6rem;color:#1F3C88;
}
.nav-cta{
    font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;
    color:#1F3C88;border:1px solid rgba(31,60,136,.2);
    padding:10px 24px;border-radius:6px;transition:all .3s ease;
}
.nav-cta:hover{background:#1F3C88;color:#CDB239;border-color:#1F3C88}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wpp-float{
    position:fixed;left:24px;bottom:28px;z-index:999;
    background:#25D366;color:#fff;
    width:56px;height:56px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 8px 24px rgba(37,211,102,.25);
    transition:transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease;
    animation: slowPulse 3s infinite;
}
.wpp-float:hover{transform:scale(1.1);box-shadow:0 12px 32px rgba(37,211,102,.4); animation-play-state: paused;}
@keyframes slowPulse {
    0% { transform: scale(1); box-shadow: 0 8px 24px rgba(37,211,102,.25); }
    50% { transform: scale(1.06); box-shadow: 0 12px 32px rgba(37,211,102,.45); }
    100% { transform: scale(1); box-shadow: 0 8px 24px rgba(37,211,102,.25); }
}


/* =============================================
   HERO
   ============================================= */
.hero{
    position:relative;height:850px;background:#fcfcfc;overflow:hidden;
    display:flex;align-items:center;
}
.hero-deco-circle{
    position:absolute;border-radius:50%;pointer-events:none;
    border:1px solid rgba(31,60,136,.04);
}
.hero-deco-1{width:400px;height:400px;top:-100px;left:55%;z-index:1}
.hero-deco-2{width:200px;height:200px;bottom:100px;left:40%;z-index:1}
.hero-deco-line{
    position:absolute;top:200px;left:45%;
    width:1px;height:250px;
    background:linear-gradient(to bottom,transparent,rgba(205,178,57,.1),transparent);
    z-index:1;pointer-events:none;
}

.hero-grid{
    display:flex;
    max-width:1120px;margin:0 auto;padding:0 32px;
    width:100%;height:100%;align-items:center;
    position:static;
}
.hero-content{
    width:55%;
    padding-right:20px;
    max-width:640px;
    position:relative;z-index:10;
}
.hero-h1{
    font-size:2.85rem;font-weight:600;line-height:1.15;
    color:#1F3C88;margin-bottom:24px;letter-spacing:-.02em;
}
.hero-sub{
    font-size:1.1rem;line-height:1.75;color:#555;margin-bottom:14px;
    max-width:480px;font-weight:400;
}
.hero-details-row{
    display:flex;align-items:center;gap:12px;flex-wrap:wrap;
    font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;
    color:#888;margin-bottom:40px;
}

/* Photo container */
.hero-photo{
    position:absolute; top:0; right:0;
    width:48%; height:100%;
    z-index:1;
}
.hero-photo img{
    width:100%;height:100%;max-width:none;
    object-fit:cover;object-position:top center;
    display:block;position:relative;z-index:2;
}
.hero-photo-fade{
    position:absolute;top:0;left:-2px;width:35%;height:100%;z-index:3;
    background:linear-gradient(to right,#fcfcfc 0%,rgba(252,252,252,.85) 40%,rgba(252,252,252,.2) 70%,transparent 100%);
}


/* =============================================
   SEÇÃO 2 — EMOÇÃO
   ============================================= */
.s-emotion{
    position:relative;overflow:hidden;
    background:linear-gradient(160deg,#1F3C88 0%,#15295f 100%);
    padding:130px 0;color:#fff;
}
/* Premium Noise Overlay Removed due to mobile GPU render bugs */
.s-emotion .s-title{margin-bottom:48px}
.emotion-copy p{
    color:rgba(255,255,255,.9);font-size:1.06rem;
    margin-bottom:20px;line-height:1.85;font-weight:400;
}
.emotion-copy p:last-child{margin-bottom:0}
.emotion-copy strong{color:#fff;font-weight:500}
.accent-text{font-weight:400;color:#CDB239 !important;font-size:1.2rem;}

.blockquote-wrapper { position:relative; margin:40px 0; padding-left: 20px;}
.blockquote-marks { position:absolute; top:-20px; left:-10px; color:#CDB239; opacity:0.15;}
.pullquote{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-size:1.8rem;font-weight:500;font-style:italic;
    color:#fff;line-height:1.3;
    padding:14px 0 14px 24px;
    border-left:2px solid rgba(205,178,57,0.5);
    position: relative; z-index: 2;
}


/* =============================================
   SEÇÃO 3 — CENÁRIOS
   ============================================= */
.s-scenarios{
    padding:130px 0;
    background:linear-gradient(180deg,#fcfcfc 0%,#fff 100%);
}
.s-scenarios .s-title{margin-bottom:70px}
.cards-row{
    display:flex; justify-content: space-between; gap:24px;
}
.cards-row article { flex: 1; }

.glass-card{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(31,60,136,.04);
    border-radius:20px;padding:40px 32px;
    transition:transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s;
}
.glass-card:hover{
    transform:translateY(-8px);
    border-color:rgba(205,178,57,.4);
}
.card-icon-wrap{
    display:inline-flex;align-items:center;justify-content:center;
    width:54px;height:54px;border-radius:16px;
    background:#fcfcfc;
    border: 1px solid rgba(31,60,136,.06);
    color:#1F3C88;margin-bottom:24px;
    box-shadow:0 8px 24px rgba(31,60,136,.05);
}
.card-num{
    font-family:'Source Sans 3',sans-serif;
    font-size:.75rem;font-weight:700;color:#CDB239;
    letter-spacing:.12em;margin-bottom:10px;display:block;
}
.card-h3{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-size:1.6rem;font-weight:600;color:#1F3C88;
    margin-bottom:14px;line-height:1.2;
}
.glass-card p{color:#555;font-size:1rem;line-height:1.75;font-weight:400;}


/* =============================================
   SEÇÃO 4 — MÉTODO
   ============================================= */
.s-method{
    position:relative;overflow:hidden;
    background:linear-gradient(160deg,#1F3C88 0%,#1a3477 100%);
    padding:130px 0;color:#fff;
}
.method-top{max-width:700px;margin:0 auto 70px;text-align:center;}
.method-copy p{
    color:rgba(255,255,255,.85);font-size:1.1rem;
    margin-bottom:16px;line-height:1.8;font-weight:400;
}
.method-copy strong{color:#fff;font-weight:500}

.sequence-row { display: flex; align-items: stretch; justify-content: center; gap: 20px; }
.seq-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: 16px;
    padding: 36px 24px; text-align: center; flex: 1;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.seq-step {
    display: inline-block; background: rgba(205,178,57,.15); color: #CDB239;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.seq-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.seq-card p { font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.5; }
.seq-divider {
    height: 2px; width: 30px; background: rgba(205,178,57,.4); flex-shrink: 0; align-self: center;
}


/* =============================================
   SEÇÃO 5 — POR QUE FUNCIONA
   ============================================= */
.s-why{padding:130px 0;background:#fcfcfc;}
.s-why .s-title{margin-bottom:70px}
.why-row{display:flex; gap:32px;}
.why-card{
    flex: 1;
    padding:40px 32px;border-radius:20px;
    background:#fff;border:1px solid rgba(31,60,136,.04);
    transition:transform .4s ease,border-color .4s ease;
}
.why-card:hover{transform:translateY(-6px);border-color:#CDB239;}
.why-num{
    font-size:2.8rem;color:#1F3C88;opacity:.08;
    line-height:1;margin-bottom:12px;display:block;
}
.why-card h3{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-size:1.4rem;font-weight:600;color:#1F3C88;
    margin-bottom:16px;line-height:1.25;
}
.why-card p{color:#555;font-size:1rem;line-height:1.75;font-weight:400;}


/* =============================================
   SEÇÃO 6 — O QUE VOCÊ VAI SABER FAZER
   ============================================= */
.s-outcomes{background:#f4f6f8;padding:120px 0}
.outcomes-grid-2col {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 50px;
}
.outc-item {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff; padding: 24px 28px; border-radius: 12px;
    border: 1px solid rgba(31,60,136,.04);
}
.outc-item .outc-icon { flex-shrink: 0; padding-top: 2px; }
.outc-item p { font-size: 1.05rem; color: #444; font-weight: 500; line-height: 1.5; }


/* =============================================
   SEÇÃO 7 — TUDO QUE LEVA
   ============================================= */
.s-includes{padding:130px 0;background:#fcfcfc;}
.s-includes .s-title{margin-bottom:70px}
.inc-block{
    max-width:840px;margin:0 auto 70px;
    background:transparent;
}
.inc-header{
    display:flex;align-items:center;gap:18px;margin-bottom:30px;
}
.inc-icon{
    display:inline-flex;align-items:center;justify-content:center;
    width:54px;height:54px;border-radius:16px;
    background:#1F3C88;color:#fff;flex-shrink:0;
    box-shadow:0 8px 24px rgba(31,60,136,.15);
}
.inc-h-text h3 { margin-bottom: 4px; }
.inc-header h3,.inc-extra h3{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-size:1.6rem;font-weight:600;color:#1F3C88;line-height:1.2;
}
.meetings-grid-cards {
    display:grid;grid-template-columns:repeat(2, 1fr);gap:24px;
}
.meet-card {
    background:#ffffff;border:1px solid rgba(31,60,136,.04);border-radius:16px;
    padding:30px 24px;position:relative;overflow:hidden;
}
.meet-card:hover { border-color: rgba(205,178,57,.3); }
.meet-num-bg {
    position:absolute;top:-15px;right:0px;font-family:'Cormorant Garamond',serif;
    font-size:6rem;font-weight:700;color:#CDB239;opacity:0.08;line-height:1;
}
.meet-card h4 {
    font-family:'Cormorant Garamond','Georgia',serif;font-size:1.35rem;font-weight:600;
    color:#1F3C88;margin-bottom:12px;position:relative;z-index:2;line-height:1.2;
}
.meet-card p {
    font-size:0.95rem;color:#555;line-height:1.7;position:relative;z-index:2;font-weight:400;
}

/* Extras */
.inc-extras{display:flex; gap:24px;}
.inc-extra{flex: 1;}
.glass-card-light{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(31,60,136,.04);
    border-radius:20px;padding:40px 32px;
}
.inc-extra .inc-icon{margin-bottom:20px;background:#fcfcfc;color:#1a1a1a;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 12px rgba(0,0,0,0.03)}
.inc-extra h3{margin-bottom:14px}
.inc-extra .inc-desc{font-size:.95rem;color:#555;font-weight:400;}

.tools-list{list-style:none;}
.tools-list li{
    position:relative;padding:8px 0 8px 24px;
    font-size:.92rem;color:#444;font-weight:400;
    border-bottom:1px solid rgba(31,60,136,.04);
}
.tools-list li:last-child{border-bottom:none}
.tools-list li::before{
    content:'→';position:absolute;left:0;
    color:#CDB239;font-weight:600;
}


/* =============================================
   SEÇÃO 8 — ABOUT (Com Assinatura Script)
   ============================================= */
.s-about{padding:130px 0;background:#fff;}
.about-grid{
    display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;
    align-items:center;
}
.about-img-wrap{position:relative}
.about-img-wrap img{width:100%;border-radius:16px;position:relative;z-index:2}
.about-img-accent{
    position:absolute;top:20px;left:20px;right:-16px;bottom:-16px;
    border:1px solid #1F3C88;border-radius:16px;z-index:1;
    opacity:.15;
}

.about-text .s-title{margin-bottom:24px}
.about-text p{color:#444;font-size:1.06rem;margin-bottom:20px;line-height:1.8;font-weight:400;}
.about-text p:last-child{margin-bottom:0}
.about-text strong{color:#1a1a1a;font-weight:500;}

.about-signature {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    color: #1F3C88;
    margin-top: 30px;
    transform: rotate(-3deg);
    opacity: 0.9;
}


/* =============================================
   SEÇÃO 9 — CTA FINAL
   ============================================= */
.s-cta{
    position:relative;overflow:hidden;
    padding:140px 0;
    background:linear-gradient(160deg,#1F3C88 0%,#15295f 100%);
    color:#fff;
}
.cta-wrap{
    max-width:640px;margin:0 auto;text-align:center;
}
.cta-wrap .s-title { margin-bottom: 24px; }
.cta-wrap p{
    color:rgba(255,255,255,.9);font-size:1.1rem;
    margin-bottom:16px;line-height:1.8;font-weight:400;
}
.cta-wrap p:last-of-type{margin-bottom:48px}


/* =============================================
   FOOTER
   ============================================= */
.footer{
    padding:40px 0;background:#0d1838;
    color:rgba(255,255,255,.4);
}
.footer-row{
    display:flex;justify-content:space-between;align-items:center;
}
.footer-name{
    font-family:'Cormorant Garamond','Georgia',serif;
    font-size:1.1rem;font-weight:500;
}
.footer-ig{
    display:inline-flex;align-items:center;gap:8px;
    font-size:.85rem;font-weight:400;transition:color .3s ease;
}
.footer-ig:hover{color:#CDB239}


/* =============================================
   RESPONSIVO
   ============================================= */
@media(max-width:1024px){
    body { font-size: 16px; }
    .navbar { display: none; }
    
    .hero{
        height:auto; min-height:auto; 
        padding:0; 
        display:flex; flex-direction:column;
        position: relative;
    }
    
    .hero-photo{
        display:block;
        position:relative; top:0; left:0; width:100%; height:400px;
        order:1; margin:0; border-radius:0; z-index:1;
        overflow: hidden;
    }
    .hero-photo img{
        object-position: top center;
    }
    .glass-badges-wrap {
        display: flex; position: absolute; top: auto; bottom: 56px; left: 24px; z-index: 10; gap: 8px;
    }
    .glass-badge-mobile {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 5px 14px;
        border-radius: 24px;
        font-family: 'Source Sans 3', sans-serif;
        font-weight: 700;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        color: #1F3C88;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
        text-transform: uppercase;
    }
    .badge-mentora {
        background: rgba(31,60,136,0.5);
        color: #fff;
        border-color: rgba(31,60,136,0.3);
    }
    .hero-photo-fade{
        display: none;
    }

    .hero-grid{
        display:block; order:2; margin-bottom:0; 
        position:relative; z-index:10;
        background: #fcfcfc;
        border-radius: 32px 32px 0 0;
        margin-top: -40px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-content{padding-right:0;text-align:center;max-width:560px;margin:0 auto;width:100%;margin-bottom:20px;}
    
    .hero-details-row{
        flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 12px; margin-bottom: 30px;
    }
    .hero-details-row span {
        font-size: 0.8rem; letter-spacing: 0.08em; color: #888;
        border: none; padding: 0; display: inline;
    }
    .hero-details-row .dot-separator { color: #CDB239; }

    .btn{ padding: 22px 32px; }
    .hero-content .btn{ margin:0 auto; width: 100%; justify-content: center; }
    
    .inc-header { 
        flex-direction: column; text-align: center; gap: 16px; margin-bottom: 24px; 
    }
    .inc-icon { margin: 0 auto; }
    
    .hero-deco-circle,.hero-deco-line{display:none}
    .hero-h1{font-size:2.3rem}
    .stagger-middle { margin-top: 0; }
}

@media(max-width:960px){
    .s-title{font-size:2.2rem}
    .cards-row,.why-row,.inc-extras{
        flex-direction: column; max-width:480px;margin-left:auto;margin-right:auto;
    }
    .why-row{grid-template-columns:1fr; gap: 30px;}
    .sequence-row{flex-direction: column; gap: 16px;}
    .seq-divider { display: none; }
    .outcomes-grid-2col { grid-template-columns: 1fr; }
    .outcomes-grid{grid-template-columns:1fr; max-width: 480px;}
    .about-grid{grid-template-columns:1fr;gap:40px}
    .about-img-wrap{max-width:400px;margin:0 auto}
    .meetings-grid-cards { grid-template-columns: 1fr; }
    .meet-card { padding: 24px 18px; }
}

@media(max-width:600px){
    .container,.container-narrow{padding:0 24px}
    .s-title{font-size:1.9rem}

    .badge {
        border: none;
        padding: 0;
        margin-bottom: 24px;
        background: transparent;
    }

    .s-emotion,.s-scenarios,.s-method,.s-why,.s-outcomes,.s-includes,.s-about,.s-cta{
        padding:90px 0;
    }
    .hero{min-height:auto;}
    .hero-h1{font-size:2.1rem}
    .hero-sub { font-size: 1rem; }
    
    .btn{padding:20px 28px;font-size:.84rem}
    .btn-lg{padding:22px 30px;font-size:.9rem}

    .pullquote{font-size:1.4rem}
    .glass-card{padding:30px 24px}
    
    .floating-badge { display: none; }

    .footer-row{flex-direction:column;gap:12px;text-align:center}
    .nav-cta{font-size:.7rem;padding:8px 16px}
    .nav-logo{font-size:1.3rem}

    .wpp-float{width:50px;height:50px;left:20px;bottom:20px}
}
