/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    background-color: #0A0F2C;
    color: white;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('/assets/Fondo.png');
    background-size: cover;
    background-position: center;
}

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

.shape-top {
    width: 350px;
    position: absolute;
    top: -150px;
    left: -100px;
    z-index: -1;
    animation: floatAnimation 6s ease-in-out infinite;
}

.shape-bottom {
    width: 500px;
    position: absolute;
    bottom: -200px;
    left: 40%;
    z-index: -1;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

header {
    padding-top: 150px;
    animation: fadeIn 1.2s ease-out forwards;
}

.logo {
    height: 70px;
    animation: fadeInScale 1.5s ease-out forwards;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.content {
    flex: 1;
    max-width: 70%;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInLeft 1.2s ease-out forwards;
}

.description {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.5;
    animation: fadeInLeft 1.5s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-section {
    margin-top: 40px;
    animation: fadeInUp 1.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-title {
    color: #FFD700;
    font-size: 30px;
    margin-bottom: 30px;
}

.lead-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    padding-right: 50px;
}

.submit-button {
    letter-spacing: 0.5px;
    margin-left: -70px;
    background-color: #3B5BDB;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 18px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2f4abc;
}

/* Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }
    
    .content {
        max-width: 80%;
    }
    
    h1 {
        font-size: 40px;
    }
    
    .description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .content {
        max-width: 100%;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .description {
        font-size: 18px;
    }
    
    .shape-top {
        width: 250px;
        top: -100px;
    }
    
    .shape-bottom {
        width: 350px;
    }
}

@media (max-width: 480px) {
    header {
        padding-top: 100px;
    }
    
    .logo {
        height: 50px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .description br {
        display: none;
    }
    
    .lead-form {
        flex-direction: column;
    }
    
    .submit-button {
        margin-left: 0;
        width: 100%;
    }
    
    .email-input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .shape-top, .shape-bottom {
        width: 200px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-content, .hero-image {
    animation: fadeIn 1s ease-out forwards;
} 