/**
 * Estilos para el CTA de Ronda de Negocios en index.html
 * Encuentro Ferretero 2026
 */

.business-round-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-container {
    text-align: center;
}

.cta-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.price-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
    border-color: #007bff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.05);
}

.price-item.featured:hover {
    transform: scale(1.08) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
}

.price-item.featured .price-value {
    color: white;
}

.benefits-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: #007bff;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.cta-actions {
    text-align: center;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.cta-note strong {
    color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .business-round-cta {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .cta-container h3 {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .pricing-preview {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .price-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }

    .price-item.featured {
        transform: none;
    }

    .benefits-preview {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .benefit-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .business-round-cta {
        padding: 1rem;
        border-radius: 12px;
    }

    .cta-container h3 {
        font-size: 1.4rem;
    }

    .pricing-preview {
        gap: 0.75rem;
    }

    .price-item {
        padding: 1rem;
    }

    .price-value {
        font-size: 1.5rem;
    }
}