.title3 {
    font-size: 30px;
    line-height: 36px;
}

.menu-tigger {
    padding: 9px 18px;
}

.tgmenu__wrap a {
    color: var(--rvio-verde);
    padding: 12px 0;
}

.info-card_link {
    line-height: normal;
}

.feature-card {
    position: relative;
    background: var(--tg-color-white-default);
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    min-height: 470px;
    will-change: box-shadow;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, var(--rvio-rosa), #fff);
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    transform: rotate(0deg);
    will-change: transform, opacity;
}

.feature-card:hover::before {
    opacity: 1;
    animation: rotarGradienteSuave 2s linear infinite;
}

.feature-card:hover {
    box-shadow: 0 0 20px 10px rgba(215, 189, 165, 0.7);
}

.feature-card:hover .box-title {
    text-shadow: 0 0 20px #fff;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

@keyframes rotarGradienteSuave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* BRILLO LATENTE - ICONOS */
.brillo-latente {
    animation: brillo 1.2s ease-in-out infinite;
    will-change: box-shadow;
}

@keyframes brillo {
    0%, 100% {
        box-shadow: 0 0 10px #29296680;
    }
    50% {
        box-shadow: 0 0 15px 5px #29296680;
    }
}

/* FOOTER */
.resaltar-palabra {
    text-shadow: -2px 2px rgba(41, 41, 102, 0.9);
}

/* ICONOS */
.icono-animado {
    padding: 20px 15px 15px;
}