/* Site-wide styles for Brisa Jobs */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions .btn {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.hero-actions .btn-primary:hover {
    background: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

.hero-actions .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.hero-actions .btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    transform: translateY(-1px);
}

.hero-visual {
    padding: 2rem 0;
}

.hero-placeholder {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Value Propositions */
.value-props {
    background: #f8f9fa;
}

.value-prop-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.value-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-prop-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-prop-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-prop-card .card-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: white;
}

.process-step {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
}

.step-number {
    margin-bottom: 1rem;
}

.step-number .badge {
    font-size: 1.25rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Outcomes / Metrics */
.outcomes {
    background: #f8f9fa;
}

.outcome-metric {
    padding: 1.5rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-band .btn-light {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-band .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* FAQ */
.faq {
    background: white;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

/* Final CTA */
.final-cta {
    background: #f8f9fa;
}

.final-cta .btn-primary {
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-band .col-lg-4 {
        margin-top: 1.5rem;
    }
    
    .cta-band .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .value-prop-card {
        padding: 1.5rem 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.border-radius-lg {
    border-radius: 12px !important;
}

/* Focus States for Accessibility */
.btn:focus,
.accordion-button:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section,
    .cta-band,
    .final-cta {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .accordion-collapse {
        display: block !important;
    }
    
    .accordion-button::after {
        display: none;
    }
}
