/* Ajustes generales */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; /* Asegura que la página se vea completa */
}

/* Logo principal */
.logo-container {
    text-align: center;
    margin-top: 20px; /* Espaciado para evitar cortes */
}

.logo-container img {
    max-width: 40vw;
    height: auto;
}

/* Título */
.title-container {
    text-align: center;
    width: 90%;
    margin-bottom: 20px;
}

/* Imágenes dentro de la página */
.image-container {
    margin: 10px 0;
    width: 90%;
    text-align: center;
}

.image-container img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Botones */
a.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

/* Responsividad */
@media (max-width: 768px) {
    .logo-container img {
        max-width: 60%;
    }

    .title-container {
        width: 95%;
    }

    .title-container h2 {
        font-size: 18px;
    }

    .image-container img {
        max-width: 80%;
    }

    a.button {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 70%;
    }

    .title-container h2 {
        font-size: 16px;
    }

    .image-container img {
        max-width: 90%;
    }
    /* Contenedor del iframe */
.iframe-container {
    width: 80%; /* Ajusta el ancho al 80% de la página */
    max-width: 1000px; /* Máximo tamaño en pantallas grandes */
    height: 500px; /* Ajusta la altura */
    margin: 20px auto; /* Centra el iframe */
    border: 2px solid #ccc; /* Borde opcional */
    border-radius: 10px; /* Bordes redondeados opcionales */
    overflow: hidden; /* Evita desbordamientos */
}

/* Ajuste del iframe */
.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Elimina el borde por defecto */
}

/* Ajuste responsivo para móviles */
@media (max-width: 768px) {
    .iframe-container {
        width: 90%; /* Más ancho en pantallas pequeñas */
        height: 350px; /* Reduce la altura */
    }
}

@media (max-width: 480px) {
    .iframe-container {
        width: 95%;
        height: 300px;
    }
}
}