body {
    background-color: #f5f2eb; /* Tono más cálido basado en secondary */
    /* background-color: white; */
}

.header-section {
    background-color: #7d8d38d0;
    color: white;
    padding: 2rem 0;
}

.header-section h1 {
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--custom-quaternary, #bac133);
    font-size: 1.25rem;
}

.alert-custom-highlight {
    background-color: #492e1f;
    border: 1px solid var(--custom-secondary, #ab9883);
    color: var(--bs-white, white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--custom-secondary, #ab9883);
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
    
    /* Animaciones llamativas */
    animation: 
        slideDownBounce 0.8s ease-out,
        pulsateGlow 2s ease-in-out 0.8s;
    transform-origin: top center;
    position: relative;
    overflow: hidden;
}

/* Entrada dramática desde arriba con rebote */
@keyframes slideDownBounce {
    0% {
        transform: translateY(-100%) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(10px) scale(1.05);
        opacity: 0.9;
    }
    80% {
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Pulso continuo con brillo para mantener atención */
@keyframes pulsateGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 0 10px rgba(171, 152, 131, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15), 0 0 20px rgba(171, 152, 131, 0.7);
    }
}

/* Efecto shimmer en el borde izquierdo */
.alert-custom-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--custom-secondary, #ab9883) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        var(--custom-secondary, #ab9883) 100%
    );
    animation: shimmerFlow 1.5s ease-in-out infinite;
}

@keyframes shimmerFlow {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.1);
    }
}

/* Efecto hover para interactividad */
.alert-custom-highlight:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 0 25px rgba(171, 152, 131, 0.8);
}

/* Animación del botón de cierre */
.alert-custom-highlight .btn-close {
    transition: all 0.3s ease;
}

.alert-custom-highlight .btn-close:hover {
    transform: rotate(90deg) scale(1.15);
    opacity: 0.8;
}

.features-section {
    background-color: var(--custom-tertiary-bg-subtle, rgba(126, 141, 56, 0.15));
    padding: 2rem 0;
}

.benefits-section {
    background-color: #fefefe;
    padding: 2rem 0;
}

.collaboration-section {
    background-color: var(--bs-secondary-bg-subtle, rgba(171, 152, 131, 0.15));
    padding: 2rem 0;
}

.feature-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    height: 100%;
    padding: 1.5rem;
    transition: all 0.3s ease;
    
}

.feature-item:hover {
    border-color: var(--bs-secondary, #ab9883);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.component-icon img {
    height: 6rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    color: var(--bs-primary, #492e1f);
    font-weight: 900;
    padding-bottom: 1rem;
    margin-bottom: 0;
}

.highlight {
    color: var(--custom-quaternary, #bac133);
    font-weight: bold;
}

a {
    color: var(--custom-tertiary, #7e8d38);
}

a:hover {
    color: var(--bs-primary, #492e1f);
}

/* Estilos para los logos */
.logo-item {
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item a {
    display: inline-block;
    text-decoration: none;
}

.logo-item img {
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}
