
.sub-header-section:after {
    background: none !important;
    content: "" !important;
}

.sticky-header{
    background: linear-gradient(120deg,
    #c0c0c0, /* Acero claro */
    #e0e0e0, /* Resplandor brillante */
    #a0a0a0, /* Sombra intermedia */
    #808080, /* Acero oscuro */
    #b0b0b0  /* Brillo suave */
    );
    background-size: 300% 300%; /* Amplía el tamaño del gradiente para animarlo */
    animation: shine 5s infinite alternate; /* Animación para simular brillo */
    overflow: hidden;
}
@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



/* ========> Planes de precio <======= */
.pricing-section {
    text-align: center;
    padding: 50px 20px;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Estilos para cada tarjeta */
.pricing-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    color: var(--color-azul-primary);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.pricing-card .btn {
    background-color: var(--color-azul-primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: var(--color-azul-primary);
}

/* Estilos para los items de características */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.feature-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.feature-header:hover {
    background-color: #e9ecef;
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.feature-detail {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.feature-item.active .toggle-icon {
    transform: rotate(45deg);
}

.feature-item.active .feature-detail {
    max-height: 200px;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Destacar el plan destacado */
.pricing-card.featured {
    border: 2px solid var(--color-azul-primary);
    position: relative;
}

.pricing-card.featured::before {
    content: "Recomendado";
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--color-azul-primary);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    transform: rotate(15deg);
}
