/* --- Reset Básico y Estilos Globales --- */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #121212; /* Color de fondo oscuro si la imagen no carga */
}

/* --- Contenedor Principal con Imagen de Fondo --- */
.background-container {
    /* Asegúrate que la ruta a '1.jpg' sea correcta desde tu archivo HTML */
    background-image: linear-gradient(rgba(18, 18, 18, 0.438), rgba(18, 18, 18, 0.95)), url('../img/1.jpg');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Contenido Centrado --- */
.content {
    max-width: 700px;
    animation: fadeIn 2s ease-in-out;
}

/* --- Logo de la Empresa --- */
.logo {
    max-width: 180px;
    margin-bottom: 30px;
}

/* --- Títulos y Textos --- */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3); /* Sombra de texto sutil */
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.company-name {
    font-weight: 600;
    color: #00BFFF; /* Deep Sky Blue - un color tecnológico */
}

/* --- Pie de página o contacto --- */
.footer {
    font-size: 0.9rem;
    font-weight: 400;
    color: #a0a0a0;
}

.footer a {
    color: #00BFFF;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* --- Animación de entrada --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsividad para dispositivos móviles --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    p {
        font-size: 1rem;
    }
    .logo {
        max-width: 150px;
    }
}

/* --- Botón de WhatsApp Flotante --- */
.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Verde WhatsApp */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100; /* Asegura que esté siempre al frente */
}

.whatsapp-button img {
    width: 100%; /* Hace que el GIF ocupe todo el botón */
    border-radius: 50%; /* Mantiene el círculo si el GIF no es cuadrado */
}