/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contador-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contador {
    font-size: 2.5rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin: 1rem 0;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Seções gerais */
section {
    padding: 4rem 0;
    margin: 2rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e3c72;
    font-weight: 700;
}

section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content h3 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-image {
    max-width: 600px;
    margin: 0 auto;
}

/* Estilo para todas as imagens */
.imagens {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease-in-out;
}

.imagens:hover {
    transform: scale(1.02);
}

.legenda {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: -10px;
}

/* Seções com cores alternadas */
.sobre {
    background: white;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.caracteristicas {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1000px;
}

.caracteristicas h2 {
    color: white;
}

.fusca-aviao {
    background: white;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ficha Técnica */
.ficha-tecnica {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1000px;
}

.ficha-tecnica h2 {
    color: white;
}

.ficha-tecnica ul {
    list-style: none;
    padding: 0;
}

.ficha-tecnica li {
    background: rgba(255,255,255,0.1);
    margin: 1rem 0;
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
}

.ficha-tecnica strong {
    color: #ffd700;
}

/* Galeria e Carrossel */
.galeria {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    margin: 3rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 3rem 2rem;
    color: white;
}

.galeria h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carrossel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin: 2rem 0;
}

.carrossel-container {
    display: none;
    text-align: center;
    padding: 1rem;
}

.carrossel-container.active {
    display: block;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateX(50px);
    }
    to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

.carrossel-container .imagens {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.carrossel-container .imagens:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.5);
}

.carrossel-container .legenda {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carrossel-nav {
    text-align: center;
    margin-top: 2rem;
}

.nav-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    margin: 0 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.nav-btn:active {
    transform: translateY(-1px);
}

/* Seção Vídeo */
.video-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 25px;
    margin: 3rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 3rem 2rem;
    color: white;
}

.video-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.video-container {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid rgba(255,255,255,0.2);
}

.video-container iframe {
    max-width: 900px;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.video-container iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.5);
}

.video-container .legenda {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .contador {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    section p {
        font-size: 1rem;
    }
    
    .ficha-tecnica li {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .nav-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .galeria h2,
    .video-section h2 {
        font-size: 2rem;
    }
    
    .carrossel-container .imagens {
        height: 300px;
    }
    
    .video-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .contador {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h3 {
        font-size: 1rem;
    }
    
    .galeria,
    .video-section {
        padding: 2rem 1rem;
        margin: 1.5rem auto;
    }
    
    .carrossel-container .imagens {
        height: 250px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .carrossel-container .legenda,
    .video-container .legenda {
        font-size: 1rem;
    }
}
