/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


/* Efecto general de fade + slide */
.fade-slide {
    opacity: 0;
    transform: translateY(20px);
   /* pointer-events: none;*/
    transition: opacity 0.4s ease, transform 0.4s ease;
    height: 1px;
}
.fade-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
}

.fade-slide {
    display: block !important;
}

.fade-slide.active {
    display: block !important;
}

.fade-slide:not(.active) {
    display: none !important;
}
/* Zonas */
.zona-box {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 8px;
    width: 33%;
    text-align: center;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.2s ease, color 0.2s ease;
    min-height: 120px;
    vertical-align: middle;
    align-items: center;
    align-content: center;
    font-size: 25px;
    font-weight: 600;
}
.zona-box:hover {
    background-color: #ff5f00;
    color: white;
}
.zona-box.visible {
    opacity: 1;
    transform: translateY(0);
}

#zona-selector{
    height: auto;
}

#zona-info{
    max-width: 1440px;
    margin: auto;
}


#zona-mapa-container  iframe{
    border: none;
    max-height: 250px;
   }

@media (max-width: 425px) {
    .zona-box {
        width: 100%;
        margin-bottom: 1rem;
    }
}