body.quienes-somos {
    background-image: none;
    background-color: #f2f2f2;
}

body.quienes-somos .principal h2 {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 3rem;
    color: #1269AE;
    transition: .3s;
}

body.quienes-somos .principal h2:hover {
    color: white;
    background-clip: text; /* Aplica el gradiente solo al texto */
    background: linear-gradient(to right, #5CA32B, #033a0b); /* Gradiente de color al pasar el ratón por encima */
    cursor: pointer; /* Cambia el cursor al pasar el ratón por encima */

    transform: scale(1.17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,.3);
}

body.quienes-somos .principal .logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
}

body.quienes-somos .principal .logo-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%) scale(0.6) rotate(0deg);
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, .95) 0deg 3deg,
        transparent 3deg 18deg
    );
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity .4s ease, transform .6s ease;
}

body.quienes-somos .principal .logo-wrap:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
    animation: girar-rayos 8s linear infinite;
}

@keyframes girar-rayos {
    from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    to   { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}

body.quienes-somos .principal .logo-principal {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .15));
    transition: .3s;
}

body.quienes-somos .principal .logo-wrap:hover .logo-principal {
    transform: scale(1.05);
}

.carta-historia {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 10px;
    font-family: "Inter", sans-serif;
    color: black;
    line-height: 1.9;
    text-align: justify;
}

.carta-historia p {
    margin: 0 0 24px;
}

.carta-historia img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    border: 2px solid gray;
}

.imagen-final {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    border: 2px solid gray;
}

.carta-titulo {
    position: relative;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1269AE;
    text-align: center;
    text-transform: none;
    letter-spacing: .3px;
    margin-bottom: 55px !important;
    padding-bottom: 22px;
}

.carta-titulo::before {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
     background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%231269AE' d='M6 3a2 2 0 0 0-2 2 2 2 0 0 0 2 2h1v10H6a2 2 0 0 0-2 2 2 2 0 0 0 2 2h12a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-1V7h1a2 2 0 0 0 2-2 2 2 0 0 0-2-2H6z'/><path fill='white' d='M7 7h10v10H7z'/><path stroke='%231269AE' stroke-width='1' stroke-linecap='round' d='M9 10h6M9 12.5h6M9 15h4'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .85;
}

.carta-titulo::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(to right, transparent, #1269AE, #5CA32B, transparent);
}

.carta-gracias,
.carta-nombres {
    position: relative;
    background: #f8fafc;
    border-left: 4px solid #1269AE;
    border-radius: 0 12px 12px 0;
    padding: 20px 26px;
    text-align: left;
    margin: 30px 0;
}

.carta-gracias strong,
.carta-nombres strong {
    color: #1269AE;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.carta-despedida {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #5CA32B;
    margin-top: 40px !important;
    text-transform: uppercase;
}

.carta-firma {
    text-align: right;
    font-style: italic;
    color: black;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e2e8ef;
}

.carta-firma cite {
    font-weight: 700;
    font-style: normal;
    color: #1269AE;
}

@media (max-width: 600px) {
    .carta-historia {
        text-align: left;
    }

    .carta-historia img {
        margin: 30px auto;
    }
}