/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #333333 50%, #FF6B00 80%, #FFFFFF 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Splash Screen */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Fondo transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease-out;
}

.splash-logo {
    width: 80%; /* Ocupa el 80% del ancho disponible */
    max-width: 600px; /* Máximo de 600px para no estirar demasiado */
    height: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 250px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: #FF6B00;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.9) 50%, rgba(255,107,0,0.2) 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B00;
    font-size: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #FF6B00;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #aaa;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label {
    top: -1.2rem;
    left: 0;
    font-size: 0.8rem;
    color: #FF6B00;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #FF6B00, #FF8C00);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #FF8C00, #FF6B00);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(to right, rgba(255,107,0,0.1) 0%, rgba(0,0,0,0.9) 50%, rgba(26,26,26,0.9) 100%);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.video-container video {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.video-text h2 {
    color: #FF6B00;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.video-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.9) 50%, rgba(255,107,0,0.1) 100%);
}

.gallery-item {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.gallery-item.reverse {
    flex-direction: row-reverse;
}

.gallery-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.gallery-text h3 {
    color: #FF6B00;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.gallery-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(to top, #000000 0%, #1a1a1a 50%, #333333 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.3);
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Efectos de hover y focus */
a, button, input[type="submit"] {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .gallery-item, .gallery-item.reverse {
        flex-direction: column;
    }
    
    .gallery-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 200px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}