/* 
* THE FUTURE AI - CLONE
* Estilos principais
*/

/* Reset e Estilos Básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-color: #1F2D5C; /* Azul escuro */
    --secondary-color: #4C86F9; /* Azul claro */
    --accent-color: #F2C94C; /* Amarelo */
    --text-color: #FFFFFF; /* Branco */
    --dark-text: #333333; /* Texto escuro */
    --background-color: #0E1635; /* Fundo azul muito escuro */
    --section-bg-color: #121C3E; /* Azul um pouco mais claro para seções */
    --card-bg-color: #1A2547; /* Fundo para cards */
    --gradient-start: #1F2D5C; /* Início do gradiente */
    --gradient-end: #0E1635; /* Fim do gradiente */
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-text);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e0b836;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rectangle-svg {
    height: 10px;
    background-color: var(--accent-color);
    width: 100px;
    margin: 30px auto;
    border-radius: 5px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(14, 22, 53, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.locations {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-location {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background-color: #3a75e8;
    color: var(--text-color);
    transform: translateY(-3px);
}

.limited-spots {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
}

/* About Section */
.about-section {
    background-color: var(--section-bg-color);
    padding: 80px 0;
}

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

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content .btn-primary {
    margin-top: 20px;
}

/* Event Details Section */
.event-details {
    padding: 80px 0;
    background-color: var(--background-color);
}

.event-details-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.event-details-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.event-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.event-images img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.event-images img:hover {
    transform: scale(1.05);
}

/* About Izaias Section */
.about-izaias {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

.about-izaias-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.izaias-image {
    flex: 1;
}

.izaias-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.izaias-info {
    flex: 1;
}

.izaias-info .section-title {
    text-align: left;
}

.izaias-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.videos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.video-item {
    width: 350px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-link {
    display: block;
    position: relative;
}

.video-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-link:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-link:hover .play-button {
    opacity: 1;
}

/* Speakers Section */
.speakers-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

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

.logo-center {
    margin-bottom: 20px;
}

.logo-center img {
    height: 60px;
}

.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.speaker-card {
    width: 350px;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.speaker-info {
    padding: 25px;
}

.speaker-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.speaker-social {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    margin-top: 70px;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.schedule-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.schedule-day {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.day-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--accent-color);
}

.schedule-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: baseline;
}

.time {
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 5px;
}

.schedule-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    opacity: 0.8;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

.location-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.location-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.alert {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin: 25px 0;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background-color: var(--background-color);
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.audience-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-10px);
}

.audience-icon {
    margin-bottom: 20px;
}

.audience-icon img {
    height: 60px;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.audience-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.sold-out::before {
    content: 'ESGOTADO';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-icon img {
    height: 40px;
}

.pricing-batch {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.pricing-features {
    margin-bottom: 25px;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pricing-price {
    margin-bottom: 25px;
}

.original-price {
    font-size: 1rem;
    margin-bottom: 10px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cash-price {
    font-size: 1rem;
    margin-bottom: 20px;
}

.pricing-note {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}

.pricing-note p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.testimonial-image {
    max-width: 600px;
    margin: 0 auto 50px;
}

.testimonial-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.guarantee-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.guarantee-image {
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--section-bg-color);
    padding: 80px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
}

.footer-support {
    text-align: center;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-support p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-support {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-support:hover {
    background-color: #1fba58;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-developer {
    display: inline-block;
}

.footer-developer img {
    height: 30px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .about-izaias-content {
        flex-direction: column;
    }
    
    .izaias-info .section-title {
        text-align: center;
    }
    
    .schedule-day {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .locations {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content p,
    .event-details-content p,
    .location-content p,
    .guarantee-content p {
        font-size: 1.1rem;
    }
    
    .audience-item,
    .pricing-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .event-images img {
        width: 150px;
        height: 150px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}