.bloque1 {
    .columnas-bloque1 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 40px 0px;

        .titulo-academia {
        font-family: "PoppinsSemiBold";
        font-weight: 600;
        font-size: 108px;
        line-height: 1 !important;
        letter-spacing: -2px;
        text-align: left;
        margin: 0;
        background: linear-gradient(to right, #f39200, #e44d26);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        span {
            background: none;
            -webkit-text-fill-color: #1a2b4c;
            display: block;
        }
        }

        p {
        font-family: "Poppins";
        font-weight: 400;
        font-size: 20px;
        color: #333;
        max-width: 500px;
        text-align: left;
        }

        .estadisticas-bloque1 {
        display: flex;
        flex-direction: row;

        > div {
            width: 100%;
        }

        .estadistica {
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 100%;

            img {
            max-width: 70px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            }

            h3 {
            font-family: "PoppinsSemiBold";
            font-size: 42px;
            margin: 0px;
            }

            p {
            margin-top: 0px;
            }
        }
        }
    }

    .imagenes-bloque1 {
        display: grid !important;
        grid-template-columns: repeat(12, 1fr) !important;
        grid-template-rows: repeat(12, 1fr) !important;
        width: 100% !important;
        max-width: none !important;
        aspect-ratio: 1 / 1;
        gap: 0 !important;
        margin: 0 !important;

        .foto-principal,
        .foto-superpuesta,
        figure {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        }

        .foto-principal {
        grid-column: 1 / 11 !important;
        grid-row: 1 / 11 !important;
        z-index: 1;

        img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            border-radius: 30px !important;
            display: block !important;
        }
        }

        .foto-superpuesta {
            grid-column: 7 / 13 !important;
            grid-row: 7 / 13 !important;
            z-index: 2;
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));

            img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                border-radius: 30px !important;
                display: block !important;
            }
        }
    }
}


.wp-block-heading {
  text-align: left;
  font-weight: 800;
  color: #1a2b4c;
  /* text-transform: uppercase; */
  margin-bottom: 40px;
  
  .letra_naranja {
    color: #ff5722;
  }
}

.wp-block-group:has(.wp-block-heading) {
    text-align: left;
    padding: 20px 20px 0;
}

body {
    .ancho-pagina {
        max-width: 1400px;
        margin: 0 auto;
    }
}