/* ==========================================
   Servicios General - Page Styles
   ========================================== */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #007bff 0%, #1f2bc5 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

.services-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-hero .hero-content h1 i {
    font-size: 2.8rem;
}

.services-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 20px;
}

.service-detail:nth-child(even) {
    background: #f8f9fa;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-content {
    text-align: center;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.consultoria .service-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.arquitectura .service-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.coaching .service-icon {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-lead {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-detail:nth-child(even) .feature {
    background: #fff;
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.consultoria .feature i {
    color: #007bff;
}

.arquitectura .feature i {
    color: #28a745;
}

.coaching .feature i {
    color: #6f42c1;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background: #007bff;
    color: #fff;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #007bff 0%, #1f2bc5 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #fff;
    color: #007bff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta i {
    font-size: 1.5rem;
}

.final-cta-related {
    margin-top: 14px;
    padding-top: 64px;
    padding-bottom: 96px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.final-cta-related .cta-container p {
    max-width: 920px;
    line-height: 1.8;
    margin: 0 auto;
}

.final-cta-related .cta-container a {
    color: #fff;
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.final-cta-related .cta-container a:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }

    .services-hero .hero-content p {
        font-size: 1rem;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .service-lead {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .final-cta-related {
        margin-top: 10px;
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .final-cta-related .cta-container p {
        line-height: 1.7;
    }
}
