:root {
    --bg-color: #050a15;
    --bg-darker: #02060f;
    --text-color: #ffffff;
    --text-muted: #a0aec0;
    --primary-color: #00ff7f;
    --primary-glow: rgba(0, 255, 127, 0.3);
    --secondary-color: #1a202c;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout Modules */
section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center { text-align: center; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Header */
.main-header {
    background: rgba(5, 10, 21, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%; /* Ajuste para não ficar exageradamente colado */
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Hero */
.hero {
    padding-top: 200px;
    padding-bottom: 150px;
    background-image: linear-gradient(rgba(5, 10, 21, 0.8), rgba(5, 10, 21, 0.8)), url('../img/Hero-Bruno.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-left {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: 90%; /* Ajuste para mais respiro lateral */
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero h1.long-title {
    font-size: 1.8rem;
    line-height: 1.3;
}

.text-glow {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0 0 40px 0;
    max-width: 800px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
}

/* Target Section & Grid */
.bg-grid {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
}

.bg-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 70%);
    pointer-events: none;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 90%; /* Equilíbrio premium */
    margin: 0 auto;
}

.target-text p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
}

.warning-card {
    background: rgba(10, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    padding: 50px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.warning-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 127, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.warning-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    background: rgba(0, 255, 127, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 127, 0.3);
    box-shadow: 0 0 15px var(--primary-glow);
    animation: warningPulse 2s infinite ease-in-out;
}

@keyframes warningPulse {
    0% { box-shadow: 0 0 5px var(--primary-glow); transform: scale(1); }
    50% { box-shadow: 0 0 25px var(--primary-color); transform: scale(1.05); }
    100% { box-shadow: 0 0 5px var(--primary-glow); transform: scale(1); }
}

.warning-icon svg {
    width: 32px;
    height: 32px;
}

.warning-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: none;
}

.warning-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.warning-card strong {
    color: var(--primary-color);
}

/* Diagnosis Section */
.problem-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.problem-check-item {
    background: rgba(255, 77, 77, 0.03);
    border: 1px solid rgba(255, 77, 77, 0.1);
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.problem-check-item .x-mark {
    color: #ff4d4d;
    font-weight: 800;
    font-size: 1.2rem;
}

.problem-check-item p {
    font-size: 1rem;
    color: #eee;
}

.solution-text {
    background: var(--primary-glow);
    border-top: 2px solid var(--primary-color);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solution-text p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}

/* Pillars Redesign: Alternating List */
.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 120px; /* Grande espaçamento para respirar */
    margin-top: 80px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 100px;
}

.pillar-reverse {
    flex-direction: row-reverse;
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 15rem; /* Números massivos */
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 255, 127, 0.2);
    flex-shrink: 0;
    transition: var(--transition-speed);
}

.pillar-item:hover .pillar-number {
    -webkit-text-stroke: 1px var(--primary-color);
    text-shadow: 0 0 30px var(--primary-glow);
}

.pillar-content {
    max-width: 600px;
}

.pillar-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.pillar-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.pillar-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Specific Responsive for Pillars List */
@media (max-width: 992px) {
    .pillars-list { gap: 60px; }
    .pillar-item, .pillar-reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .pillar-number { font-size: 8rem; }
    .pillar-content h3::after { left: 50%; transform: translateX(-50%); }
}

/* Testimonials Video Cards */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-top: 50px;
}

.testimonial-video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.t-video-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: #000;
}

.t-video-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 250px;
    border: none;
    display: block;
}

.t-info-card {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    width: 85%;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.t-avatar-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 150, 255, 0.5);
}

.t-name {
    color: #4da6ff;
    font-size: 1.1rem;
    font-weight: 700;
}

.t-result {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Removing reverse effect for grid layout */
.testimonial-video-card.t-reverse {
    flex-direction: column;
}
.testimonial-video-card.t-reverse .t-info-card {
    left: auto;
    right: auto;
}

/* Specific Responsive for Testimonials */
@media (max-width: 900px) {
    .testimonials-list {
        grid-template-columns: 1fr;
    }
    .t-video-wrap iframe {
        min-height: 200px;
    }
}

/* More Results (Carrossel e Marquees) */
.more-results {
    padding-top: 80px;
    padding-bottom: 20px;
}

.more-results h3 {
    font-size: 1.5rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Swiper CSS adjustments for More Results */
.main-slider {
    padding-bottom: 50px !important; /* Space for pagination/buttons */
    margin-bottom: 80px;
}
.main-slider .swiper-slide {
    display: flex;
    justify-content: center;
}
.main-slider .swiper-slide img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: none;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: var(--primary-color) !important;
}

/* Infinite Marquees with Swiper */
.marquees-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 0;
    margin-bottom: -20px;
    background-color: #000000; /* Fundo hiper escuro */
}

.marquee-slider {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.marquee-slider .swiper-wrapper {
    transition-timing-function: linear !important; /* Makes it scroll continuously like a marquee */
}

.marquee-slider .swiper-slide {
    width: auto !important; /* Fit content */
}

.marquee-slider .swiper-slide img {
    height: 130px;
    width: auto !important;
    border-radius: 12px;
    border: none;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .marquee-slider .swiper-slide img {
        height: 80px;
    }
}

/* Para Você Section */
.para-voce-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.para-voce-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.para-voce-text, .para-voce-image {
    flex: 1;
}

.para-voce-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

.check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.check-list li svg {
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px;
}

.para-voce-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    object-fit: cover;
}

/* Bio */
.bio-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}


.bio-image { width: 40%; }
@media (min-width: 993px) {
    .bio-image {
        margin-top: 55px; /* Alinha topo da foto com top do h2 (ignorando a altura do badge superior) */
    }
}
.bio-text { width: 60%; }

.bio-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.rounded-glow {
    box-shadow: -20px 20px 0 var(--primary-glow);
}

/* Footer */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo { height: 30px; opacity: 0.5; }

.credits {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Animation System (Reveal on Scroll) --- */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom { transform: scale(0.95); }

.reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Cascading Delays (for lists/grids) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Special Hero Animation */
@keyframes heroEntrance {
    from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-entrance {
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Parallax Effect (Native-friendly) */
@media (min-width: 993px) {
    .parallax-hero {
        background-attachment: fixed;
    }
}

/* --- Responsive Overrides --- */
@media (max-width: 992px) {
    section { padding: 60px 0; }
    
    .container { padding: 0 25px; }

    /* Hero */
    .hero { 
        padding-top: 120px; 
        padding-bottom: 80px; 
        min-height: auto;
        text-align: center;
    }
    .hero-left { justify-content: center; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
    .hero .subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .hero-actions { justify-content: center; }
    .hero-content img { margin: 0 auto 2rem auto !important; }

    /* Target Grid */
    .target-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .target-text p { font-size: 1.2rem; }
    .warning-card { padding: 30px 20px; }

    /* Problem Checklist */
    .problem-checklist {
        grid-template-columns: 1fr;
    }

    /* Pillars */
    .pillars-list { gap: 60px; margin-top: 40px; }
    .pillar-item, .pillar-reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .pillar-number { 
        font-size: 7rem; 
        margin-bottom: -20px;
    }
    .pillar-content h3 { font-size: 1.8rem; }
    .pillar-content h3::after { left: 50%; transform: translateX(-50%); }

    /* Testimonials */
    .testimonials-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .t-info-card { width: 95%; margin-top: -30px; padding: 20px; }

    /* Bio & Para Você */
    .bio-flex, .para-voce-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .bio-image, .bio-text, .para-voce-image, .para-voce-text {
        width: 100%;
    }
    .bio-text h2, .para-voce-text h2 { font-size: 2.2rem; }
    .rounded-glow { box-shadow: 0 15px 0 var(--primary-glow); }

    /* Modal */
    .privacy-modal-content {
        width: 95%;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero h1.long-title { font-size: 1.15rem; }
    .btn { width: 100%; padding: 14px 20px; font-size: 0.95rem; }
    .section-header h2 { font-size: 2.2rem; }
    .pillar-number { font-size: 5rem; }
}

/* Animations */
.fade-in { animation: fadeIn 1s ease-out forwards; }
.fade-in-delay { animation: fadeIn 1.5s ease-out forwards; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Modal Política de Privacidade */
.privacy-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
}
.privacy-link:hover {
    color: var(--primary-color);
}

.privacy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 6, 11, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.privacy-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.privacy-modal-content {
    background-color: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.privacy-modal.show .privacy-modal-content {
    transform: translateY(0);
}

.close-privacy-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--text-muted);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-privacy-modal:hover {
    color: var(--primary-color);
}

.privacy-body h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.privacy-body h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.privacy-body p, .privacy-body li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}
