/* Estilos para las pestañas de paquetes de medios */
.media-tabs {
    margin-bottom: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo mejorado para la nota de precios */
.pricing-note {
    margin-top: 40px;
    padding: 20px 25px;
    background-color: #f8f9ff;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-note:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-note p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.3rem;
}

.pricing-note a {
    color: white;
    background-color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-note a:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        border-bottom: none;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-md);
    }
    
    .tab-btn:after {
        display: none;
    }
    
    .tab-btn.active {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    .pricing-note {
        padding: 15px;
    }
    
    .pricing-note p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .pricing-note a {
        margin-top: 10px;
        margin-left: 0;
    }
}
