/* ========================================
   NOSOTROS PAGE STYLES
   ======================================== */

/* Hero Section */
.nosotros-hero {
    background: linear-gradient(135deg, #2d5a7b 0%, #1a1a2e 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.nosotros-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.nosotros-hero .hero-content {
    position: relative;
    z-index: 1;
}

.nosotros-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nosotros-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.nosotros-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.intro-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

/* Values Section */
.nosotros-valores {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color, #ff6b35);
    margin: 15px auto 0;
    border-radius: 2px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.valor-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a7b 0%, #4a90a4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.valor-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.valor-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.valor-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Section */
.nosotros-proceso {
    padding: 80px 0;
    background: #2d5a7b;
    color: white;
}

.nosotros-proceso .section-title {
    color: white;
}

.nosotros-proceso .section-title::after {
    background: white;
}

.proceso-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.proceso-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.proceso-step {
    text-align: center;
    position: relative;
}

.paso-numero {
    width: 70px;
    height: 70px;
    background: white;
    color: #2d5a7b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.paso-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.paso-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Ventajas Section */
.nosotros-ventajas {
    padding: 80px 0;
    background: #fff;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ventaja-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.ventaja-item:hover {
    background: #e9ecef;
}

.ventaja-item i {
    color: #28a745;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ventaja-item span {
    font-size: 0.95rem;
    color: #333;
}

/* Stats Section */
.nosotros-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d5a7b 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff6b35;
}

.stat-label {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.nosotros-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.nosotros-cta .btn-primary {
    background: white;
    color: #ff6b35;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
    color: #e55a2b;
}

/* FAQ Section */
.nosotros-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: #f8f9fa;
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {

    .valores-grid,
    .proceso-timeline,
    .ventajas-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proceso-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nosotros-hero {
        padding: 60px 0;
    }

    .nosotros-hero h1 {
        font-size: 1.75rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        order: -1;
    }

    .valores-grid,
    .proceso-timeline,
    .ventajas-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}