/* estilos about.css*/


.modal-content.ventanaEncarta.retroModal {
    background: linear-gradient(180deg, #fffaf6, #f7ecff);
    border: 4px solid #2cc48a;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    transition: transform .22s ease, box-shadow .22s ease, border-color .18s ease;
}

.barraVentanaAcerca {
    background: linear-gradient(90deg, #3be2a6, #2cc48a);
    color: #052b1a;
    padding: 12px 16px;
    font-weight: 700;
}

.fotoPerfilCuadrada {
    display: inline-block;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    transition: transform .36s cubic-bezier(.2, .9, .3, 1), box-shadow .28s ease;
    transform-origin: center;
    animation: fotoEntrada .7s cubic-bezier(.2, .9, .3, 1) both;
}

.fotoPerfilCuadrada:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .16);
}

.redesContainer .redLink {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 10px;
    text-decoration: none;
    color: #222;
    background: linear-gradient(90deg, #fff, #f4f4ff);
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .12s ease, box-shadow .12s ease, background .25s ease, color .18s ease;
    font-weight: 700;
}

.redesContainer .redLink i {
    font-size: 1.05rem;
}

.redesContainer .redLink:hover,
.redesContainer .redLink:focus {
    color: #fff;
    background: linear-gradient(90deg, #a34dc5 0%, #7b1fa2 45%, #36f5ac 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(123, 31, 162, .18);
}

.redesContainer .redLink:focus {
    outline: none;
}

.redesContainer .redLink:focus-visible {
    box-shadow: 0 0 0 6px rgba(123, 31, 162, .08);
    border-radius: 10px;
}

.horarioBanner {
    margin-top: 14px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 12px 18px;
    background: linear-gradient(90deg, rgba(31, 162, 112, 0.329), rgba(54, 245, 172, 0.322));
    border-radius: 8px;
    border: 1px solid rgba(123, 31, 162, 0.06);
    color: #0b2b24;
    box-shadow: 0 8px 18px rgba(124, 58, 154, .04);
    display: block;
}

.horarioBanner .textoHorario {
    font-weight: 700;
    color: #052b1a;
}

.tituloContactame {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    margin-bottom: .8rem;
    background: linear-gradient(90deg, #a34dc5, #7b1fa2, #36f5ac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 6px 18px rgba(163, 77, 197, 0.08);
    animation: tituloPop .6s cubic-bezier(.2, .9, .3, 1) both;
}

@keyframes tituloPop {
    from {
        transform: translateY(6px) scale(.98);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.formContacto .btnAccion {
    color: #222;
    background: linear-gradient(90deg, #fff, #f4f4ff);
    border-radius: 10px;
    padding: .5rem .9rem;
    border: none;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(123, 31, 162, .12);
    transition: transform .12s ease, box-shadow .12s ease;
}

.formContacto .btnAccion:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(123, 31, 162, .16);
    background: linear-gradient(90deg, #a34dc5 0%, #7b1fa2 45%, #36f5ac 100%);
    color: #ffffff;
}

.textoSutil {
    color: rgba(0, 0, 0, .6);
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    box-shadow: 0 0 0 6px rgba(123, 31, 162, .06);
}

@media (max-width: 576px) {
    .fotoPerfilCuadrada {
        width: 140px;
        height: 140px;
    }

    .horarioBanner {
        margin-left: -12px;
        margin-right: -12px;
        padding: 10px 12px;
    }

    .tituloContactame {
        font-size: 1.12rem;
    }
}