body {
    background: (to right, #FFFFFF);
    text-align: center;
    margin: 0;
    
}

h1 {
    margin: 10px 0;
    color: #17202a;
    text-align: center;
    font-family: 'candara', sans-serif;
}

h2 {
    margin: 0;
    color: #000000;
    text-align: center;
    font-family: 'candara', sans-serif;
    font-size: 20px;
}

h4 {
    margin: 0;
    color: #FF0000;
    text-align: center;
    font-family: 'candara', sans-serif;
    font-size: 20px;
}

h3 {
    margin: 10px 0;
    color: #000000;
    text-align: center;
    font-family: 'candara', sans-serif;
    font-size: 15px;
}

.container {
    max-width: 100%;
    padding: 20px;
}

.flyer {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.foto-circular {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fbfcfc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -65%);
    z-index: 10;
}

.icon-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    background-color: #E50914;
    padding: 10px;
}

.icon-bar img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons-container img {
    width: 30px  !important;
    height: 30px  !important;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons-container img:hover {
    transform: scale(1.2);
}

.catalog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.catalog-item {
    width: calc(50% - 10px);
    max-width: 200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catalog-item img {
    width: 100%;
    height: auto;
}

video {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 20px 0;
}

.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(80, 80, 80, 0.8);
    
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.floating-bar img {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .catalog-item {
        width: 100%;
    }

    .foto-circular {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .icon-bar img,
    .social-icons-container img,
    .floating-bar img {
        width: 25px;
        height: 25px;
    }

    .foto-circular {
        width: 100px;
        height: 100px;
    }
.button-image {
    width: 50px; 
    height: 50px;
    object-fit: contain; 
    cursor: pointer; 
    transition: transform 0.3s ease;
}

.button-image:hover {
    transform: scale(1.1); 
}
.overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fondo oscuro translúcido */
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    display: none; /* Mantiene el modal oculto hasta que se active */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 50px;  /* Ajusta el ancho del modal */
    max-width: 50%; /* Evita que sea demasiado grande en pantallas grandes */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: black;
}
