/* Estilo general */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    color: #333;
}

/* Encabezado */
header {
    padding: 20px;
    background: linear-gradient(90deg, #1c4c96, #062863);
    color: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    max-width: 25%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .logo-container img {
        max-width: 50%;
    }
}

.header-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Botones */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.button {
    background-color: #1c4c96;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #9ab4ff;
    transform: translateY(-5px);
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.2);
}

/* Imagen del pie */
.footer-image {
    padding: 0;
}

.footer-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Pie de página */
footer {
    padding: 20px;
    background-color: #062863;
    color: white;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 10px 0;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .button {
        width: 90%;
        text-align: center;
    }

    .footer-image img {
        max-width: 90%;
    }
}
body {
    background-image: url('wallpaper.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #098b39, #20e440, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease-in-out;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.copyright {
    font-size: 1.5vw; /* Escala automáticamente según el ancho de la pantalla */
    text-align: center;
    color: #666;
}

/* Evita la selección de texto en toda la página */
body {
    -webkit-user-select: none; /* Safari y Chrome */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Estándar */
}