.section-imagenes-iconos-textos{
    overflow: hidden;
}
.section-imagenes-iconos-textos .section__wrapper {
    position: relative;
}

.section-imagenes-iconos-textos .section__header {
    display: flex;
    align-items: flex-end;
    gap: 100px;
    margin-bottom: 50px;
}

.section-imagenes-iconos-textos .section__header>div {
    width: 50%;
}

.section-imagenes-iconos-textos__titulo p {
    font-family: var(--gothicExtraBoldFont);
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 3%;
    text-align: center;
}

.section-imagenes-iconos-textos__texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-imagenes-iconos-textos__texto p {
    padding: 0 10px;
}

/* Contenido expandible: siempre en DOM (legible por Googlebot/IA), colapsado visualmente */
.section-imagenes-iconos-textos .texto-oculto {
    display: block !important;  /* siempre visible para crawlers */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.section-imagenes-iconos-textos .texto-oculto.expandido {
    max-height: 1500px; /* mayor que cualquier contenido posible */
}

/* Espacio entre el parrafo visible y el contenido expandible */
.section-imagenes-iconos-textos .texto-visible > *:last-child {
    margin-bottom: 18px;
}
.section-imagenes-iconos-textos .texto-oculto > *:first-child {
    margin-top: 0;
}

.section-imagenes-iconos-textos__ver-mas-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Boton +/- pequeno y discreto */
.section-imagenes-iconos-textos__boton-ver-mas {
    margin-top: 12px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent !important;
    color: var(--green1);
    border: 1.5px solid var(--green1);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    font-family: inherit;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.section-imagenes-iconos-textos__boton-ver-mas:hover {
    background: var(--green1);
    color: white;
}

.section__body>div {
    width: 50%;
    height: 875px;
    position: relative;
}

.section-imagenes-iconos-textos__imagen-1 {
    max-width: 815px;
    width: 100%;
    position: absolute;
    display: block;
    right: 32%;
    z-index: 11;
}

.section-imagenes-iconos-textos__imagen-2 {
    width: 100%;
    max-width: 475px;
    position: absolute;
    display: block;
    right: 0;
    top: 15%;
    z-index: 11;
}

.section-imagenes-iconos-textos__imagen-3 {
    width: 100%;
    max-width: 694px;
    position: absolute;
    display: block;
    bottom: 0;
    right: 5%;
    z-index: 11;
}

.section-imagenes-iconos-textos__lista {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 30px;
    top: 40%;
    right: 0;
    transform: translateY(-50%) translateX(calc(100% - 60px));
}

.section-imagenes-iconos-textos__lista:after {
    content: '';
    position: absolute;
    height: 740px;
    width: 740px;
    border-radius: 50%;
    border: 20px solid black;
    top: 58%;
    right: 0;
    transform: translateY(-50%) translateX(-55%);
    z-index: -1;
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 40% 100%);
}

.section-imagenes-iconos-textos__lista li {
    display: flex;
    align-items: center;
    gap: 35px;
}

.section-imagenes-iconos-textos__lista li:nth-child(2) {
    transform: translateX(35px);
}

.section-imagenes-iconos-textos__lista li>span {
    min-width: 125px;
    width: 125px;
    height: 125px;
    box-shadow: 0px 1px 10px 0px #0000004D;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-imagenes-iconos-textos__lista li img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.section-imagenes-iconos-textos__item-titulo {
    background: linear-gradient(90deg, #346735 0%, #5BA654 100%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    line-height: 1.2;
    font-size: 24px;
    font-family: var(--gothicExtraBoldFont);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.section-imagenes-iconos-textos .section__body {
    position: relative;
}

.section-imagenes-iconos-textos__boton {
    position: absolute;
    bottom: 15%;
    right: 0;
    width: 50%;
    display: flex;
    justify-content: center;
}

.section-imagenes-iconos-textos__boton a {
    max-width: 410px;
    padding: 15px 30px;
    font-size: 22px;
    font-family: var(--titleFont);
    text-align: center;
    background: #B1E357;
    color: black;
    border-radius: 7.5px;
    box-shadow: 0px 1px 2px 0px #000000BF;
    transition: all 0.3s ease;
}

.section-imagenes-iconos-textos__boton a:hover {
    background: black;
    color: #B1E357;
}

@media (max-width: 1280px) {
    .section__body>div {
        height: calc(500px + 29.3vw);
    }

    .section-imagenes-iconos-textos__imagen-1 {
        max-width: calc(24.61vw + 500px);
    }

    .section-imagenes-iconos-textos__imagen-2 {
        max-width: calc(13.7vw + 300px);
    }

    .section-imagenes-iconos-textos__imagen-3 {
        max-width: calc(23.43vw + 394px);
    }

    .section-imagenes-iconos-textos__lista:after {
        height: calc(26.6vw + 400px);
        width: calc(26.6vw + 400px);
    }
}

@media (max-width: 1024px) {
    .section__body>div {
        height: calc(400px + 42vw);
    }

    .section-imagenes-iconos-textos__lista {
        right: -5%;
    }

    .section-imagenes-iconos-textos__item-titulo {
        font-size: 18px;
    }
}

@media (max-width: 880px) {
    .section__body>div {
        height: calc(300px + 42vw);
    }

    .section-imagenes-iconos-textos__lista {
        right: 4%;
        width: 100%;
    }

    .section-imagenes-iconos-textos__lista:after {
        height: calc(26.6vw + 300px);
        width: calc(26.6vw + 300px);
    }

    .section-imagenes-iconos-textos__lista li>span {
        min-width: 100px;
        width: 100px;
        height: 100px;
    }

    .section-imagenes-iconos-textos__lista li img {
        width: 80px;
        height: 80px;
    }

    .section-imagenes-iconos-textos__item-titulo {
        font-size: 16px;
    }

    .section-imagenes-iconos-textos__boton {
        bottom: 10%;
    }

}

@media (max-width: 768px) {
    .section__body>div {
        width: 100%;
        height: calc(580px + 54vw);
        margin-bottom: 125px;
    }

    /* Wrapper en columna en movil para evitar el gap horizontal de 75px */
    .section-imagenes-iconos-textos .section__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .section-imagenes-iconos-textos .section__header {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-bottom: 25px;
    }

    .section-imagenes-iconos-textos .section__header>div {
        width: 100%;
    }

    .section-imagenes-iconos-textos__ver-mas-container {
        position: relative;
    }


    .section-imagenes-iconos-textos__lista {
        position: initial;
        transform: initial;
        flex-direction: row;
        gap: 30px;
    }

    .section-imagenes-iconos-textos__lista li {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .section-imagenes-iconos-textos__lista li:nth-child(2) {
        transform: initial;
    }

    .section-imagenes-iconos-textos__item-titulo {
        text-align: center;
        width: 100%;
    }

    .section-imagenes-iconos-textos__lista:after {
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
        top: 30%;
        width: 220%;
        height: auto;
        aspect-ratio: 1/1;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-imagenes-iconos-textos__imagen-1 {
        right: 32%;
        top: initial;
        bottom: 37.5%;
    }

    .section-imagenes-iconos-textos__imagen-2 {
        right: -10%;
        top: initial;
        bottom: 29%;
    }

    .section-imagenes-iconos-textos__imagen-3 {
        bottom: 0;
    }
    .section-imagenes-iconos-textos__boton {
        bottom: -50px;
        right: 0;
        width: 100%;
    }
}
@media (max-width: 620px) {

    .section__body>div {
        height: calc(680px + 55vw);
        margin-bottom: 125px;
    }
    .section-imagenes-iconos-textos__lista {
        flex-direction: column;
        gap: 20px;
    }

    .section-imagenes-iconos-textos__lista li {
        flex-direction: row;
        align-items: center;
        gap: 25px;
        width: 100%;
    }
    /* Evita que la pildora verde desborde el viewport */
    .section-imagenes-iconos-textos__item-titulo {
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }


    .section-imagenes-iconos-textos__lista:after {
        top: 37.5%;
    }

    .section-imagenes-iconos-textos__imagen-1 {
        bottom: 32.5%;
    }

    .section-imagenes-iconos-textos__imagen-2 {
        bottom: 22.5%;
    }

}
@media (max-width: 480px) {
    .section__body>div {
        height: calc(600px + 55vw);
        margin-bottom: 125px;
    }
    .section-imagenes-iconos-textos__lista:after {
        top: 47.5%;
    }
    .section-imagenes-iconos-textos__imagen-1 {
        bottom: 30%;
    }

    .section-imagenes-iconos-textos__imagen-2 {
        bottom: 19.5%;
        max-width: calc(13.7vw + 220px);
    }

}
@media (max-width: 360px) {
    .section__body>div {
        height: calc(540px + 55vw);
    }
    .section-imagenes-iconos-textos__lista:after {
        top: 47.5%;
    }
    .section-imagenes-iconos-textos__imagen-1 {
        bottom: 30%;
    }

    .section-imagenes-iconos-textos__lista li {
        gap: 20px;
    }

    .section-imagenes-iconos-textos__lista li span {
        min-width: 80px;
        width: 80px;
        height: 80px;
    }
    .section-imagenes-iconos-textos__lista li img {
        width: 60px;
        height: 60px;
    }
    .section-imagenes-iconos-textos__item-titulo {
        font-size: 14px;
    }
    .section-imagenes-iconos-textos__imagen-2 {
        bottom: 21.5%;
        max-width: calc(10vw + 180px);
    }

}