/* CRITICAL CSS - Bruno Bolos Optimized */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;line-height:1.6;color:#2E2E2E;overflow-x:hidden}

/* Container */
.container{max-width:1200px;margin:0 auto;padding:0 1rem;position:relative;z-index:2}
@media(min-width:640px){.container{padding:0 1.5rem}}
@media(min-width:1024px){.container{padding:0 2rem}}

/* Grid System */
.grid{display:grid;gap:1rem}
@media(min-width:768px){.grid{gap:2rem}}
.lg-grid-cols-2,.lg-grid-cols-3,.md-grid-cols-2,.md-grid-cols-3{grid-template-columns:1fr}
@media(min-width:768px){
.md-grid-cols-2{grid-template-columns:repeat(2,1fr)}
.md-grid-cols-3{grid-template-columns:repeat(3,1fr)}
}
@media(min-width:1024px){
.lg-grid-cols-2{grid-template-columns:repeat(2,1fr)}
.lg-grid-cols-3{grid-template-columns:repeat(3,1fr)}
}

/* Sections */
.section{padding:3rem 0;position:relative;overflow:hidden}
@media(min-width:768px){.section{padding:5rem 0}}

/* Background Patterns */
.section-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.95);z-index:1}
.section-overlay-gradient{position:absolute;top:0;left:0;right:0;bottom:0;background:url('images/background2.jpg');background-size:cover;background-position:center;z-index:1}
.section-overlay-gradient-light{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.1);z-index:1}
.section-overlay-light{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.8);z-index:1}

.section-bg-image{position:relative}
.section-bg-image::before,.section-bg-image::after{content:'';position:absolute;left:0;right:0;height:4px;background:linear-gradient(to right,transparent 0%,rgba(163,211,233,0.4) 30%,rgba(163,211,233,0.8) 45%,#a3d3e9 50%,rgba(163,211,233,0.8) 55%,rgba(163,211,233,0.4) 70%,transparent 100%)}
.section-bg-image::before{top:0}
.section-bg-image::after{bottom:0}

.section-bg-pattern{background:linear-gradient(135deg,#a3d3e9 0%,#e8f4fd 50%,#ffffff 100%);position:relative}
.section-bg-gradient{background:linear-gradient(45deg,#f8fbff 0%,#e3f2fd 50%,#f0f8ff 100%);position:relative}
.section-bg-geometric{background:linear-gradient(135deg,#ffffff 0%,#f0f8ff 100%);position:relative}
.section-bg-wave{background:linear-gradient(135deg,#e8f5e8 0%,#f0f8ff 100%);position:relative}
.section-bg-circles{background:linear-gradient(135deg,#f8f9fa 0%,#e3f2fd 100%);position:relative}
.section-bg-mesh{background-size:cover;background-position:center;position:relative}
.section-bg-guarantee{background:#000;position:relative}
.section-bg-final{background:linear-gradient(135deg,#84cbf0 0%,#1b98d5 50%,#84cbf0 100%);color:white;position:relative}

.bg-white{background-color:white}
.bg-footer{background-color:#FAFAFA;border-top:1px solid #e0e0e0}

/* Typography */
.h1{font-size:1.875rem;font-weight:bold;color:#034a6d;line-height:1.2;margin-bottom:1rem;text-shadow:0 2px 4px rgba(16,37,161,0.1)}
.h2{font-size:1.5rem;font-weight:bold;color:#034a6d;margin-bottom:1rem;text-shadow:0 2px 4px rgba(16,37,161,0.1)}
.h3{font-size:1.125rem;font-weight:bold;color:#2E2E2E;margin-bottom:0.75rem}
@media(min-width:768px){
.h1{font-size:2.75rem;margin-bottom:2rem}
.h2{font-size:2.25rem;margin-bottom:2rem}
.h3{font-size:1.5rem}
}
@media(min-width:1024px){
.h1{font-size:3rem}
.h2{font-size:2.5rem}
}

.h2-white{color:white;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.text-lg{font-size:1rem}
.text-xl{font-size:1.125rem}
@media(min-width:768px){
.text-lg{font-size:1.125rem}
.text-xl{font-size:1.25rem}
}
.text-sm{font-size:0.875rem}
.text-xs{font-size:0.75rem}
.text-gray{color:#000}
.text-light-gray{color:#B0B0B0}
.font-semibold{font-weight:600}
.font-bold{font-weight:bold}
.text-center{text-align:center}
.text-left{text-align:left}

/* Buttons */
.btn{display:inline-block;padding:0.875rem 1.5rem;background:linear-gradient(135deg,#FF7F50 0%,#e55b3c 100%);color:white;text-decoration:none;border-radius:12px;font-weight:600;font-size:0.875rem;border:none;cursor:pointer;text-align:center;width:100%;box-shadow:0 4px 15px rgba(255,127,80,0.3)}
@media(min-width:640px){.btn{width:auto;padding:1.125rem 2.5rem;font-size:1.125rem}}
.btn-outline{background:transparent;border:2px solid #ddd;color:#2E2E2E;box-shadow:none}

.btn-glow{transition:all 0.3s ease}
.btn-glow:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(255,127,80,0.4)}
.btn-green.btn-glow:hover{box-shadow:0 8px 25px rgba(39,174,96,0.4)}

/* Cards */
.card{background:rgba(255,255,255,0.95);border-radius:16px;padding:1.25rem;box-shadow:0 4px 20px rgba(0,0,0,0.08);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.2)}
@media(min-width:768px){.card{padding:2rem}}
.card-gradient2{background:linear-gradient(135deg,rgba(169,224,255) 0%,rgba(163,211,233,0.1) 100%);border:1px solid rgba(5,78,112,0.2)}
.card-testimonial{background:linear-gradient(135deg,rgba(255,255,255,0.95) 0%,rgba(255,247,243,0.8) 100%);border-left:4px solid #FF7F50}
.card-bonus{background:linear-gradient(135deg,#FFFAF3 0%,#FFF5E6 100%);border:2px solid #FF7F50;position:relative;overflow:hidden}
.card-guarantee{background:linear-gradient(135deg,#FFFAF3 0%,#F0FFF0 100%);border:2px solid #27ae60;text-align:center}

/* Icons */
.icon{width:1.5rem;height:1.5rem;color:#127ddd}
.icon-lg{width:2rem;height:2rem}
@media(min-width:640px){
.icon{width:2rem;height:2rem}
.icon-lg{width:2.5rem;height:2.5rem}
}
.icon-orange{color:#FF7F50}
.icon-green{color:#127ddd}

/* Layout */
.flex{display:flex}
.flex-center{align-items:center;justify-content:center}
.gap-3{gap:0.75rem}
.gap-4{gap:1rem}

/* Margins */
.mb-4{margin-bottom:0.75rem}
.mb-6{margin-bottom:1rem}
.mb-8{margin-bottom:1.5rem}
.mb-12{margin-bottom:2rem}
@media(min-width:768px){
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mb-12{margin-bottom:3rem}
}
.mt-4{margin-top:1rem}
.mt-12{margin-top:3rem}

/* Spacing */
.space-y-4>*+*{margin-top:1rem}
.space-y-6>*+*{margin-top:1.5rem}
@media(max-width:767px){
.space-y-6>*:not(:first-child){margin-top:1rem}
.space-y-4>*:not(:first-child){margin-top:0.75rem}
}

/* Hero Section */
.hero-section{min-height:90vh;display:flex;align-items:center;justify-content:center;padding:2rem 1rem;position:relative}
.hero-content{align-items:center}
.text-center-mobile{text-align:center}
@media(min-width:1024px){
.text-center-mobile{text-align:left;display:flex;flex-direction:column;justify-content:center}
.hero-content{align-items:center;min-height:500px}
}

/* Logo */
.logo-container-inline{text-align:center;margin-bottom:1.5rem}
.logo-inline{width:150px;height:auto;max-height:60px;object-fit:contain;filter:drop-shadow(0 4px 8px rgba(16,37,161,0.2))}
@media(min-width:768px){.logo-inline{width:200px;max-height:85px}}
@media(min-width:1024px){
.logo-container-inline{text-align:left;margin-bottom:2rem}
.logo-inline{width:220px;max-height:90px}
}

/* Images */
.hero-image{width:100%;max-width:320px;height:240px;border-radius:16px;margin:25px auto 0;object-fit:cover;box-shadow:0 12px 40px rgba(0,0,0,0.15)}
@media(min-width:768px){.hero-image{max-width:500px;height:400px}}
@media(min-width:1024px){.hero-image{height:600px;margin-top:0}}

.behind-image{width:100%;height:200px;border-radius:16px;object-fit:cover;box-shadow:0 12px 40px rgba(0,0,0,0.15)}
@media(min-width:768px){.behind-image{height:350px}}
@media(min-width:1024px){.behind-image{height:530px;max-width:600px}}

.course-image{aspect-ratio:1/1;width:100%;object-fit:cover;border-radius:12px}
.card-image{position:relative;overflow:hidden;width:100%;margin:0 auto}
.guarantee-image{max-width:120px;height:auto;display:block;margin:0 auto 1rem}
@media(min-width:768px){.guarantee-image{max-width:180px}}

/* Animações essenciais apenas */

/* Fade-in Effects - Otimizados */
.fade-in-section,.fade-in-card,.fade-in-text,.fade-in-stagger,.fade-scale{opacity:1;transform:none}

/* Timeline - Layout Escadinha Dinâmico */
.timeline-section{padding:2rem 0;position:relative}
.timeline-header{text-align:center;margin-bottom:2rem;position:relative;z-index:2}
.timeline-title{font-size:1.5rem;font-weight:bold;color:#1025a1;margin-bottom:0.75rem;text-shadow:0 2px 4px rgba(16,37,161,0.1)}
.timeline-subtitle{font-size:1rem;color:#4F4F4F;max-width:600px;margin:0 auto;padding:0 1rem}
.timeline{position:relative;max-width:800px;margin:0 auto;z-index:2}

/* Mobile: linha à esquerda */
.timeline::before{content:'';position:absolute;left:1.5rem;top:0;bottom:0;width:4px;background:linear-gradient(to bottom,#127ddd,#1025a1);border-radius:2px;box-shadow:0 0 10px rgba(18,125,221,0.3)}
.timeline-item{position:relative;margin-bottom:2rem;padding-left:3.5rem;display:flex;align-items:center}
.timeline-content{background:rgba(255,255,255,0.95);border-radius:16px;padding:1.5rem;box-shadow:0 8px 30px rgba(0,0,0,0.1);width:100%;backdrop-filter:blur(10px);position:relative;border:1px solid rgba(163,211,233,0.2)}
.timeline-dot{position:absolute;left:1.5rem;top:50%;transform:translate(-50%,-50%);width:16px;height:16px;background:#127ddd;border-radius:50%;border:4px solid white;box-shadow:0 4px 15px rgba(18,125,221,0.3);z-index:3}
.timeline-dot.active{background:#1025a1}

/* Desktop: linha central + escadinha alternada */
@media(min-width:768px){
.timeline-section{padding:4rem 0}
.timeline-header{margin-bottom:4rem}
.timeline-title{font-size:2rem;margin-bottom:1rem}
.timeline-subtitle{font-size:1.125rem;padding:0}
.timeline::before{left:50%;transform:translateX(-50%)}
.timeline-item{padding-left:0;margin-bottom:3rem;display:flex;align-items:center;opacity:1;transform:translateX(0)}
.timeline-item:nth-child(odd){flex-direction:row}
.timeline-item:nth-child(even){flex-direction:row-reverse}
.timeline-content{width:calc(50% - 2rem);padding:2rem}
.timeline-item:nth-child(odd) .timeline-content::after{content:'';position:absolute;right:-15px;top:50%;transform:translateY(-50%);border:15px solid transparent;border-left-color:rgba(255,255,255,0.95)}
.timeline-item:nth-child(even) .timeline-content::after{content:'';position:absolute;left:-15px;top:50%;transform:translateY(-50%);border:15px solid transparent;border-right-color:rgba(255,255,255,0.95)}
.timeline-dot{left:50%;width:20px;height:20px}
}


.phase-header{background:linear-gradient(135deg,#559cc1,#8bd1f9);color:white;padding:0.5rem 1rem;border-radius:8px;font-weight:bold;font-size:0.9rem;margin-bottom:0.75rem;text-align:center;box-shadow:0 4px 15px rgba(18,125,221,0.3)}
.phase-header.negative{background:linear-gradient(135deg,#dc2626,#b91c1c)}
.phase-title{font-size:1rem;font-weight:600;color:#1025a1;margin-bottom:0.5rem}
.phase-description{color:#4F4F4F;font-size:0.9rem;line-height:1.5}

@media(min-width:768px){
.phase-header{padding:0.75rem 1.5rem;font-size:1rem;border-radius:12px;margin-bottom:1rem}
.phase-title{font-size:1.125rem}
.phase-description{font-size:0.95rem;line-height:1.6}
}

/* FAQ */
.faq-item{border:1px solid rgba(163,211,233,0.3);border-radius:10px;margin-bottom:0.75rem;background:rgba(255,255,255,0.7);transition:all 0.3s ease}
.faq-item:hover{border-color:rgba(163,211,233,0.5);box-shadow:0 4px 15px rgba(163,211,233,0.2)}
.faq-question{width:100%;padding:1rem;background:#76cdf2;border-radius:10px;font-size:0.875rem;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:all 0.3s ease;border:none;color:#000}
@media(min-width:768px){.faq-question{padding:2rem;font-size:1.125rem}}
.faq-item:hover .faq-question,.faq-question:hover{background:#5cb3d9;color:#000}
.faq-answer{padding:0 1rem 1rem;display:none;animation:fadeIn 0.3s ease;color:#000000}
@media(min-width:768px){.faq-answer{padding:0 2rem 2rem}}
.faq-answer.show{display:block}
.faq-answer p,.faq-answer .text-gray{color:#000000}
.chevron{transition:transform 0.3s ease;color:#ffffff}
.faq-item:hover .chevron{color:#ffffff}
.chevron.rotate{transform:rotate(180deg)}
@keyframes fadeIn{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}

/* Popup */
.popup-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);display:flex;align-items:center;justify-content:center;z-index:1000;padding:1rem;backdrop-filter:blur(5px)}
.popup{background:rgba(255,255,255,0.95);border-radius:16px;padding:1.5rem;max-width:95%;width:100%;max-height:85vh;overflow-y:auto;box-shadow:0 20px 60px rgba(0,0,0,0.3);backdrop-filter:blur(10px)}
@media(min-width:640px){.popup{padding:2.5rem;max-width:32rem}}
.form-input{width:100%;padding:0.875rem;border:2px solid rgba(163,211,233,0.3);border-radius:10px;margin-bottom:0.75rem;font-size:0.875rem;transition:all 0.3s ease;background:rgba(255,255,255,0.8)}
.form-input:focus{outline:none;border-color:#127ddd;box-shadow:0 0 0 3px rgba(18,125,221,0.1);background:white}

/* WhatsApp Button */
.whatsapp-button{position:fixed;bottom:15px;right:15px;z-index:999;background-color:#25D366;color:white;border-radius:50%;width:50px;height:50px;box-shadow:0 4px 10px rgba(0,0,0,0.3);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease;opacity:0;transform:scale(0);text-decoration:none}
@media(min-width:768px){.whatsapp-button{width:60px;height:60px;bottom:20px;right:20px}}
.whatsapp-button svg{width:25px;height:25px}
@media(min-width:768px){.whatsapp-button svg{width:30px;height:30px}}
.whatsapp-button:hover{transform:scale(1.1);box-shadow:0 6px 15px rgba(0,0,0,0.3)}
.whatsapp-button.visible{opacity:1;transform:scale(1)}

/* Utilities */
.hidden{display:none}
.flex-col-mobile{flex-direction:column}
@media(min-width:768px){.flex-col-mobile{flex-direction:row}}
@media(max-width:640px){.btn{font-size:0.875rem}}

/* Modules Section */
.section-bg-modules{position:relative;overflow:hidden}
.section-bg-modules::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);z-index:0}

.modules-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;position:relative;z-index:2}
@media(min-width:768px){.modules-grid{grid-template-columns:repeat(2,1fr);gap:2rem}}
@media(min-width:1024px){.modules-grid{grid-template-columns:repeat(3,1fr)}}

.module-card{background:linear-gradient(135deg,rgba(255,255,255,0.95) 0%,rgba(248,249,250,0.8) 100%);border-radius:16px;padding:1.5rem;box-shadow:0 8px 30px rgba(0,0,0,0.1);backdrop-filter:blur(10px);border:1px solid rgba(163,211,233,0.2);display:flex;align-items:flex-start;gap:1rem;position:relative;overflow:hidden;transition:all 0.3s ease}
.module-card:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(0,0,0,0.15);border-color:rgba(18,125,221,0.3)}

.module-number{width:50px;height:50px;background:linear-gradient(135deg,#127ddd 0%,#1025a1 100%);color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:bold;font-size:1.25rem;box-shadow:0 4px 15px rgba(18,125,221,0.3);flex-shrink:0}

.module-content{flex:1}
.module-title{font-size:1.125rem;font-weight:600;color:#034a6d;margin-bottom:0.5rem;line-height:1.3}
.module-description{color:#495057;font-size:0.9rem;line-height:1.5}

@media(min-width:768px){
.module-card{padding:2rem;gap:1.5rem}
.module-number{width:60px;height:60px;font-size:1.5rem}
.module-title{font-size:1.25rem;margin-bottom:0.75rem}
.module-description{font-size:1rem}
}

/* Bonus Section */
.bonus-section{background:linear-gradient(135deg,#fff9f0 0%,#ffecd1 100%);border-radius:20px;padding:2rem;margin-top:3rem;position:relative;overflow:hidden;border:2px solid #FF7F50}
.bonus-section::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FF7F50" opacity="0.1"/></svg>');background-size:20px 20px;z-index:1}

.bonus-header{text-align:center;margin-bottom:2rem;position:relative;z-index:2}
.bonus-title{font-size:1.5rem;font-weight:bold;color:#FF7F50;text-shadow:0 2px 4px rgba(255,127,80,0.2);position:relative}
.bonus-title::before{content:'🎁';position:absolute;left:-2rem;top:50%;transform:translateY(-50%);font-size:1.25rem}
.bonus-title::after{content:'🎁';position:absolute;right:-2rem;top:50%;transform:translateY(-50%);font-size:1.25rem}

.bonus-grid{display:grid;grid-template-columns:1fr;gap:1rem;position:relative;z-index:2}
@media(min-width:640px){.bonus-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}}
@media(min-width:1024px){.bonus-grid{grid-template-columns:repeat(3,1fr)}}

.bonus-item{background:rgba(255,255,255,0.9);border-radius:12px;padding:1.5rem;text-align:center;box-shadow:0 4px 15px rgba(255,127,80,0.1);transition:all 0.3s ease;border:1px solid rgba(255,127,80,0.2)}
.bonus-item:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(255,127,80,0.2);border-color:rgba(255,127,80,0.4)}

.bonus-icon{font-size:2rem;margin-bottom:1rem}
.bonus-item-title{font-size:1rem;font-weight:600;color:#034a6d;margin-bottom:0.5rem}
.bonus-subtitle{font-size:0.875rem;color:#6c757d;font-style:italic}

@media(min-width:768px){
.bonus-section{padding:3rem}
.bonus-title{font-size:1.875rem}
.bonus-title::before,.bonus-title::after{font-size:1.5rem}
.bonus-item{padding:2rem}
.bonus-icon{font-size:2.5rem}
.bonus-item-title{font-size:1.125rem}
}

/* Guarantee Section - New Layout */
.guarantee-section-grid{align-items:stretch;gap:2rem}
@media(min-width:1024px){.guarantee-section-grid{gap:3rem}}

.guarantee-left{display:flex;align-items:stretch;justify-content:center}
.guarantee-right{display:flex;align-items:stretch;justify-content:center}

.course-info-card{background:linear-gradient(135deg,rgba(255,255,255,0.95) 0%,rgba(248,249,250,0.9) 100%);border-radius:20px;padding:2rem;text-align:center;box-shadow:0 15px 40px rgba(0,0,0,0.1);backdrop-filter:blur(10px);border:2px solid rgba(18,125,221,0.2);position:relative;overflow:hidden;width:100%;max-width:400px;display:flex;flex-direction:column;justify-content:center}
.course-info-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(135deg,#127ddd 0%,#1025a1 100%);border-radius:20px 20px 0 0}

.course-title{font-size:1.5rem;font-weight:bold;color:#1025a1;margin-bottom:1.5rem;text-shadow:0 2px 4px rgba(16,37,161,0.1);letter-spacing:0.5px}
@media(min-width:768px){.course-title{font-size:1.75rem}}

.pricing-info{margin-bottom:2rem}
.price-highlight{margin-bottom:0.5rem}
.installment-price{font-size:2rem;font-weight:bold;color:#127ddd;text-shadow:0 2px 4px rgba(18,125,221,0.1);display:block;margin-bottom:0.5rem}
@media(min-width:768px){.installment-price{font-size:2.25rem}}

.installment-text{font-size:1rem;color:#495057;font-weight:500;display:block;text-align:center}
@media(min-width:768px){.installment-text{font-size:1.125rem}}

.btn-green{background:linear-gradient(135deg,#27ae60 0%,#2ecc71 100%);box-shadow:0 4px 15px rgba(39,174,96,0.3);width:100%;font-size:1.125rem;padding:1rem 2rem;transition:all 0.3s ease}
.btn-green:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(39,174,96,0.4);background:linear-gradient(135deg,#229954 0%,#27ae60 100%)}

/* Ajustar altura do card de garantia para igualar */
.card-guarantee{display:flex;flex-direction:column;justify-content:center;min-height:300px}
@media(min-width:768px){.card-guarantee{min-height:350px}}

/* Âncora com offset para scroll suave */
#guarantee-section{scroll-margin-top:2rem}

@media(max-width:1023px){
.guarantee-section-grid{grid-template-columns:1fr;align-items:center}
.guarantee-left{margin-bottom:1rem}
.course-info-card{margin:0 auto}
.card-guarantee{min-height:auto}
}