/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #5af7f4;
    --secondary-cyan: #4ae0dd;
    --dark-bg: #0a1828;
    --darker-bg: #050d15;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-red: #ff3366;
    --accent-gold: #ffd700;
    --gradient-cyan: linear-gradient(135deg, #5af7f4 0%, #4ae0dd 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-light);
    background-color: var(--darker-bg);
    background-image: url('images/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 21, 0.85);
    z-index: -1;
}

/* Partículas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(90, 247, 244, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(90, 247, 244, 0.8);
    animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(calc(var(--random-x) * 100px));
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out 0.3s backwards;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 20px 60px;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(90, 247, 244, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 1;
}

.hero-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.hero-headline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-light);
    margin: 15px 0;
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.hero-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

/* Seções */
section {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-cyan);
    margin: 0 auto;
    border-radius: 2px;
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 50px;
    background: var(--gradient-cyan);
    color: var(--darker-bg);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    border: 3px solid var(--primary-cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: auto;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(90, 247, 244, 0.5);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 50px;
    background: var(--gradient-cyan);
    color: var(--darker-bg);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    border: 3px solid var(--primary-cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: auto;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-large:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(90, 247, 244, 0.5);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

/* Público-Alvo */
.audience-section {
    background: rgba(90, 247, 244, 0.03);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.audience-card {
    background: rgba(90, 247, 244, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(90, 247, 244, 0.3);
}

.audience-card i {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.audience-card h4 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.audience-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    background: rgba(90, 247, 244, 0.03);
}

.audience-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(90, 247, 244, 0.05);
    padding: 25px 30px;
    border-radius: 15px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.audience-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 5px 20px rgba(90, 247, 244, 0.3);
}

.audience-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.audience-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.benefit-card {
    background: rgba(90, 247, 244, 0.05);
    padding: 35px 25px;
    border-radius: 15px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(90, 247, 244, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: 50%;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--darker-bg);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary-cyan);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* NOVA SEÇÃO: 6 Pontos Importantes */
.highlights-section {
    background: rgba(90, 247, 244, 0.03);
    padding: 80px 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.highlight-card {
    background: rgba(90, 247, 244, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 40px rgba(90, 247, 244, 0.3);
}

.highlight-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-cyan);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(90, 247, 244, 0.4);
}

.highlight-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(90, 247, 244, 0.4);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--darker-bg);
}

.highlight-card h3 {
    font-size: 1.4rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
}

/* Stages Grid */
.stages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.stage-card {
    background: rgba(90, 247, 244, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stage-card:hover::before {
    transform: scaleX(1);
}

.stage-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(90, 247, 244, 0.3);
    transform: translateY(-5px);
}

.stage-number {
    display: inline-block;
    background: var(--gradient-cyan);
    color: var(--darker-bg);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.stage-card h3 {
    font-size: 1.6rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.stage-card h3 i {
    font-size: 1.4rem;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.stage-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 25px;
}

.stage-highlights {
    background: rgba(90, 247, 244, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-cyan);
    width: 100%;
}

.stage-highlights h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: left;
}

.stage-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-highlights li {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.stage-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Grupo para Networking */
.networking-group {
    background: rgba(90, 247, 244, 0.03);
    padding: 80px 20px;
}

.networking-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.networking-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(90, 247, 244, 0.3);
}

.networking-icon i {
    font-size: 3.5rem;
    color: var(--darker-bg);
}

.networking-text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.networking-item {
    background: rgba(90, 247, 244, 0.05);
    padding: 35px 40px;
    border-radius: 20px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: left;
    width: 100%;
}

.networking-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(90, 247, 244, 0.3);
}

.networking-item h3 {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.networking-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Investment */
.investment {
    background: rgba(90, 247, 244, 0.03);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(90, 247, 244, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    border: 3px solid var(--primary-cyan);
    text-align: center;
    backdrop-filter: blur(10px);
    width: 100%;
}

.price-old {
    margin-bottom: 30px;
}

.price-old span {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.price-old h3 {
    font-size: 2rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-top: 10px;
}

.price-installment {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.installments {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-cyan);
    margin: 10px 0;
}

.price-cash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-cash span {
    font-size: 1.2rem;
    color: var(--text-gray);
    white-space: nowrap;
}

.price-cash h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 900;
    white-space: nowrap;
}

.discount-badge {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 51, 102, 0.1) 100%);
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    padding: 15px 25px;
    margin: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.discount-badge i {
    color: var(--accent-red);
    font-size: 1.3rem;
}

.discount-badge span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 700;
}

/* Facilitador */
.facilitator-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.facilitator-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
}

.facilitator-bio h3 {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    font-weight: 900;
}

.facilitator-bio p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Social Proof Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.video-card {
    background: rgba(90, 247, 244, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(90, 247, 244, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(90, 247, 244, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h4 {
    font-size: 1.3rem;
    color: var(--primary-cyan);
    padding: 20px 20px 10px;
    font-weight: 700;
}

.video-card p {
    font-size: 1rem;
    color: var(--text-gray);
    padding: 0 20px 20px;
}

/* Event Info Section */
.event-info-section {
    background: rgba(90, 247, 244, 0.03);
    padding: 60px 20px;
}

.event-details-image {
    text-align: center;
    width: 100%;
}

.event-details {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Sponsors */
.sponsors {
    background: rgba(90, 247, 244, 0.03);
}

.sponsors-logos {
    text-align: center;
    width: 100%;
}

.sponsors-image {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* Final CTA */
.final-cta {
    background: rgba(90, 247, 244, 0.05);
    padding: 100px 20px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guarantee i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.guarantee p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 40px 20px;
    border-top: 2px solid rgba(90, 247, 244, 0.2);
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: center;
}

/* Scroll Animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilitator-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 30px;
    }

    .hero-headline {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .networking-text-content {
        gap: 20px;
    }

    .networking-item {
        padding: 25px 20px;
    }

    .highlight-card h3 {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .highlight-card {
        padding: 30px 20px;
    }

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