/* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contenedor con la imagen de fondo */
.landing-container {
    width: 100%;
    height: 100vh;
    /* Reemplaza 'Index Flaco.jpg' por la ruta correcta de tu imagen */
    background-image: url("../img/Index\ Flaco.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Caja de contenido (centrada en la zona blanca) */
.content-box {
    max-width: 600px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Estilos de los textos */
.logo {
    font-size: 3rem;
    color: #b30000; /* Rojo a juego con la imagen */
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botones de acción (CTA) */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #b30000;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #800000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #333333;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Enlace web en la esquina inferior derecha (alineado con la imagen) */
.footer-link {
    position: absolute;
    bottom: 25px;
    right: 40px;
}

.footer-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-link a:hover {
    opacity: 1;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}