/* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografía general */
body {
    font-family: 'Roboto', sans-serif;
}

/* Contenedor principal */
.landing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Video de fondo */
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    background-color: #000; /* Fondo de respaldo */
}

/* Contenido principal */
.content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

/* Título */
.title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: fadeIn 1.5s ease-out;
    margin-bottom: 20px;
}

/* Botón de contacto */
.contact-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background-color: #fff;
    color: #000;
}

/* Animación del título */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .contact-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    .contact-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}