/* Estilos Gerais */
/* Alertas */
.alert {
    padding: 15px 0;
    margin-bottom: 0;
    position: relative;
    z-index: 100;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-bottom: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-bottom: 1px solid #f5c6cb;
}

.alert p {
    margin-bottom: 0;
}

.alert-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}
:root {
    --primary-color: #0A3D91; /* Azul escuro */
    --secondary-color: #E63946; /* Vermelho */
    --accent-color: #1E88E5; /* Azul mais claro */
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --gray-color: #6C757D;
    --white-color: #FFFFFF;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

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

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

section {
    padding: 80px 0;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/usa-flag-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.header .container {
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 250px;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro {
    background-color: var(--light-color);
    text-align: center;
    padding: 60px 0;
}

.intro-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--dark-color);
}

.countdown-container {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.countdown-container h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.countdown-container h3.encerrado {
    color: #fff;
    background-color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    animation: pulsar 2s infinite;
}

@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--light-color);
    border-radius: 8px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    font-weight: 600;
}

/* Target Audience Section */
.target-audience {
    background-color: var(--white-color);
    text-align: center;
}

.target-audience h2 {
    margin-bottom: 40px;
}

.audience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.audience-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.icon-container i {
    color: var(--white-color);
    font-size: 2rem;
}

.audience-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.audience-card p {
    color: var(--gray-color);
}

.professions {
    margin-top: 40px;
}

.professions h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.profession-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.profession-tag {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profession-tag:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.benefit-icon i {
    color: var(--white-color);
    font-size: 1.8rem;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white-color);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/usa-skyline.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.registration .container {
    position: relative;
    z-index: 2;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.registration-info h2 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.registration-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.event-details {
    margin-top: 30px;
}

.event-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.event-detail i {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.registration-form {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.date-options,
.time-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.date-option,
.time-option {
    flex: 1;
    min-width: 80px;
}

.date-option input[type="radio"],
.time-option input[type="radio"] {
    display: none;
}

.date-option label,
.time-option label {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: var(--light-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--dark-color);
}

.date-option input[type="radio"]:checked + label,
.time-option input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    margin-top: 10px;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-button:hover {
    background-color: #d32f3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.form-disclaimer {
    font-size: 0.8rem;
    margin-top: 15px;
    color: var(--gray-color);
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--white-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.3s ease;
    min-width: 30px; /* Garante largura mínima */
    min-height: 30px; /* Garante altura mínima */
    flex: 0 0 30px; /* Impede que o elemento seja redimensionado */
}

.faq-answer {
    padding: 0 50px 30px 50px;
    display: none;
}

.faq-item.active .faq-toggle {
    background-color: var(--secondary-color);
}

/* Correção para o ícone de + nas perguntas frequentes */
.faq-toggle {
	width: 30px !important;
	height: 30px !important;
	min-width: 30px !important;
	min-height: 30px !important;
	border-radius: 50% !important;
	aspect-ratio: 1 / 1;
	padding: 0;
}

.faq-toggle i {
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}



.inscricoes-encerradas-mensagem {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inscricoes-encerradas-mensagem h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.inscricoes-encerradas-mensagem p {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Estilo para o item ativo é controlado pelo jQuery */

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    left: 120px; /* Deslocamento para a direita apenas na versão desktop */
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--secondary-color);
}

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

.footer-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button i {
    color: var(--white-color);
    font-size: 2rem;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-info {
        text-align: center;
    }
    
    .event-detail {
        justify-content: center;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Remover o deslocamento do rodapé em tablets */
    .footer-grid {
        left: 0;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .audience-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .audience-card {
        width: 100%;
    }
    
    .countdown {
        flex-wrap: nowrap; /* Manter itens na mesma linha */
        justify-content: space-between; /* Distribuir espaço igualmente */
        gap: 10px; /* Reduzir o espaçamento entre itens */
    }
    
    .countdown-item {
        min-width: auto; /* Permitir que os itens se ajustem automaticamente */
        width: 23%; /* Distribuir os 4 itens igualmente */
    }
    
    .countdown-item span:first-child {
        width: 100%; /* Largura relativa ao pai */
        height: auto; /* Altura automática */
        aspect-ratio: 1 / 1; /* Manter proporção quadrada */
        font-size: 1.8rem;
        padding: 5px;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        left: 0; /* Remover o deslocamento em celulares */
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .footer-info, .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .headline {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .date-options, .time-options {
        flex-direction: column;
    }
    
    /* Ajustes adicionais para o contador em telas muito pequenas */
    .countdown {
        gap: 5px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px;
    }

    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button a {
        width: 50px;
        height: 50px;
    }
}
