select#agx-e4parex-bars-graph-selector {
    width: 90%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 5%;
}


.agx-primeros-pasos-e4parex-graph-container {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 10px 0;
}
.agx-primeros-pasos-e4parex-graph-item {
    width: 180px;
    height: 180px;
    background-color: #f0f0f0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 100;
    font-size: 14px;
    border-radius: 5px;
}
.agx-primeros-pasos-e4parex-graph-item:hover {
    border: 1px solid #2e3b4a;
    
}
.agx-primeros-pasos-e4parex-graph-item.agx-selected {
    background-color: #339c33;
}

.agx-primeros-pasos-e4parex-graph-item .agx-on {
    display: none;
}

.agx-primeros-pasos-e4parex-graph-item.agx-selected .agx-off {
    display: none;
}

.agx-primeros-pasos-e4parex-graph-item.agx-selected .agx-on {
    display: block;
}

.agx-primeros-pasos-e4parex-graph-item-img {
    max-width: 60%;
    margin-bottom: 10px;
}


.agx-primeros-pasos-e4parex-graph-item-text {
    color: #2e3b4a;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agx-primeros-pasos-e4parex-graph-item.agx-selected .agx-primeros-pasos-e4parex-graph-item-text {
    color: #ffffff;
}

.agx-primeros-pasos-e4parex-graph-img > .vc_column-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.agx-primeros-pasos-e4parex-graph-item-explicacion.agx-selected {
    display: block;
    margin: 0 100px;
    padding: 20px;
    background-color: #339c33;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.agx-primeros-pasos-e4parex-graph-item-explicacion a {
    color: #339c33;
    background-color: #fff;
    display: block;
    width: fit-content;
    border-radius: 5px;
    margin: 15px auto;
    padding: 10px;
}

.agx-primeros-pasos-e4parex-graph-item-explicacion a:hover {
    background-color: #2e3b4a;
    color: #fff;
    text-decoration: none;
}

.agx-primeros-pasos-e4parex-graph-item-explicacion {
    display: none;
}

.hoja-ruta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


.hoja-ruta-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3;
    background-image: url(/wp-content/uploads/2026/02/CAMINO_PRIMEROS-PASOS-2.svg);
    background-size: cover;
    background-position: center;
}

/* Globos */
.hoja-ruta-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2;
    background-image: url(/wp-content/uploads/2026/02/CAMINO_PRIMEROS-PASOS-2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.hoja-ruta-globo {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    max-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition:
        top 0.4s ease,
        left 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.hoja-ruta-globo-cerrar {
    display: none;
    position: absolute;
    top: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    right: 0px;
    left: auto;
    color: #2e3b4a;
    transition: 1s ease;
}

.hoja-ruta-globo-cerrar:hover {
    color: #2e3b4a;
    transform: rotate(180deg);
}

.hoja-ruta-globo p {
    text-align: center;
    margin: 0;
}

.hoja-ruta-globo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Posiciones concretas */
#hoja-ruta-globo-1 {
    top: 66%;
    left: 3%;
    background-color: #ffc733;
}

#hoja-ruta-globo-2 {
    top: 12%;
    left: 21%;
    background-color: #9cccff;
    color: #2e3b4a
}
#hoja-ruta-globo-3 {
    top: 74%;
    left: 37%;
    background-color: #339c33;
    color: #fff
}

#hoja-ruta-globo-4 {
    top: 4%;
    left: 54%;
    background-color: #9cccff;
    color: #2e3b4a
}

#hoja-ruta-globo-5 {
    top: 9%;
    right: 2%;
    background-color: #ffc733;
}

.hoja-ruta-globo-subtexto {
    display: none;
}

.hoja-ruta-globo.agx-selected {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.1);
    max-width: 420px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hoja-ruta-globo.agx-selected > p {
    margin-top: 40px;
    color: #2e3b4a;
    font-size: 18px;
    font-weight: 500;
    padding: 0 30px;
}

.hoja-ruta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.hoja-ruta-globo.agx-selected .hoja-ruta-globo-subtexto,
.hoja-ruta-globo.agx-selected .hoja-ruta-globo-cerrar {
    display: block;
}
.hoja-ruta-globo-subtexto {
    margin-top: 20px;
}
.hoja-ruta-globo-subtexto-botones {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 10px;
}
.hoja-ruta-globo-subtexto-botones a {
    display: block;
    padding: 5px;
    border: 1px solid #2e3b4a;
    color: #2e3b4a;
    width: fit-content;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
}

.hoja-ruta-globo-subtexto-botones a:hover {
    background-color: #2e3b4a;
    color: #fff;
    text-decoration: none;
}

#hoja-ruta-globo-3  > p {
    color: #fff
}

#hoja-ruta-globo-3 .hoja-ruta-globo-subtexto-botones a {
    border-color: #fff;
    color: #fff;
}

#hoja-ruta-globo-3 .hoja-ruta-globo-subtexto-botones a:hover {
    background-color: #fff;
    color: #339c33;
    text-decoration: none;
}

#hoja-ruta-globo-3 .hoja-ruta-globo-cerrar,
#hoja-ruta-globo-3 .hoja-ruta-globo-cerrar:hover {
    color: #fff;    
}
