/* ============================================
   SERVICIOS - MODERN STYLES
   VALLE DEL SOL
   ============================================ */

/* Hero Section Specific */
.hero-section {
    height: 70vh;
    min-height: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(251, 240, 54, 0.9);
    color: #003180;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #61bd98;
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: #61bd98;
}

.service-card.featured {
    border-color: #61bd98;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff8 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fbf036, #f9d423);
    color: #003180;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(251, 240, 54, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Service Icon */
.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(97, 189, 152, 0.5);
}

.service-card h3 {
    font-size: 1.6rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.8rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #61bd98;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Service Button */
.service-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #003180, #036da7);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(3, 109, 167, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, #036da7, #003180);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(3, 109, 167, 0.5);
}

/* Corporate Section */
.corporate-section {
    padding: 6rem 2rem;
}

.bg-gradient {
    background: linear-gradient(135deg, #003180, #036da7, #61bd98);
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.corporate-text {
    color: white;
}

.section-eyebrow-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbf036;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.corporate-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.corporate-text > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Corporate Features */
.corporate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.corporate-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.corporate-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.corporate-features i {
    font-size: 2rem;
    color: #fbf036;
    flex-shrink: 0;
}

.corporate-features strong {
    display: block;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.corporate-features span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Button White */
.btn-white {
    padding: 1.2rem 2.5rem;
    background: white;
    color: #003180;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
    background: #fbf036;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 240, 54, 0.5);
}

/* Corporate Image */
.corporate-image {
    position: relative;
}

.corporate-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Special Services Section */
.special-services-section {
    padding: 6rem 2rem;
    background: white;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Special Card */
.special-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #61bd98;
    transition: all 0.4s ease;
    
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: #61bd98;
}

.special-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.special-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(97, 189, 152, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.special-content {
    padding: 2rem;
}

.special-content h3 {
    font-size: 1.8rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
}

.special-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Special Includes */
.special-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.special-includes li {
    padding: 0.8rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.special-includes i {
    color: #61bd98;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 4px;
    background: linear-gradient(180deg, #61bd98, #036da7);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) .step-content {
    grid-column: 1;
    text-align: left;
}

.process-step:nth-child(even) .step-number {
    grid-column: 2;
}

.process-step:nth-child(odd) .step-content {
    grid-column: 3;
    text-align: left;
}

.process-step:nth-child(odd) .step-number {
    grid-column: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.4);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.8rem;
    color: #003180;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #61bd98;
}

.testimonial-stars {
    color: #fbf036;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #003180;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Modal Styles */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.service-modal-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

.service-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #003180;
    transition: all 0.3s ease;
}

.service-modal-close:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
}

.service-modal-content h2 {
    color: #003180;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.service-modal-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-modal-content h3 {
    color: #036da7;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-modal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-modal-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
}

.service-modal-list li i {
    color: #61bd98;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .special-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .corporate-content {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .corporate-content {
        grid-template-columns: 1fr;
    }
    
    .corporate-image {
        order: -1;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .process-step .step-number {
        grid-column: 1 !important;
    }
    
    .process-step .step-content {
        grid-column: 2 !important;
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .special-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .service-modal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .corporate-features li {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-white {
        width: 100%;
        justify-content: center;
    }
}




















/* ============================================
   HERO SECTION - VALLE DEL SOL
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 49, 128, 0.4) 0%,
        rgba(0, 49, 128, 0.6) 50%,
        rgba(0, 49, 128, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s both;
}

.hero-badge i {
    color: #fbf036;
    font-size: 1rem;
}

/* Hero Title */
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s both;
}

/* Hero Description */
.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.9s both;
}

/* Hero Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 1.1s both;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 40px rgba(97, 189, 152, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 50px rgba(97, 189, 152, 0.6);
    background: linear-gradient(135deg, #4CAF50, #61bd98);
    color: #ffffff;
}

.hero-btn.primary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-btn.primary i {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

/* Scroll indicator (opcional) */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 2;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        height: 40px;
    }
    50% {
        opacity: 0.8;
        height: 55px;
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    padding: 5rem 0 3rem;
    background: #ffffff;
    text-align: center;
}

.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;

}

.intro-content {
    max-width: 750px;
    margin: 0 auto;
    animation: introFadeIn 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

@keyframes introFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Eyebrow */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #61bd98;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(97, 189, 152, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(97, 189, 152, 0.2);
}

.section-eyebrow i {
    font-size: 0.9rem;
    color: #4CAF50;
}

/* Section Title */
.section-title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #003180;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #61bd98, #036da7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Description */
.section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero-section {
        min-height: 550px;
    }

    .intro-section {
        padding: 4rem 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        max-height: 750px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.1rem;
    }

    .hero-btn.primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hero-section::after {
        display: none;
    }

    .intro-section {
        padding: 3.5rem 0 2rem;
    }

    .section-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btn.primary {
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
    }

    .section-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title-main {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-bg {
        animation: none;
        transform: scale(1);
    }

    .hero-content,
    .hero-badge,
    .hero-content h1,
    .hero-content p,
    .hero-btn {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-btn.primary i {
        animation: none;
    }

    .hero-section::after {
        animation: none;
    }

    .intro-content {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== RESET GLOBAL - Eliminar márgenes del body ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}





















/* ============================================
   CORPORATE SECTION - VALLE DEL SOL
   ============================================ */

.bg-gradient2 {
    background: linear-gradient(135deg, #003180 0%, #036da7 50%, #004a99 100%);
}

.corporate-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
     background: radial-gradient(circle at 50% 50%, #199ac5, #4f6dae) !important;
}

/* Decoración de fondo sutil */
.corporate-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
     background: radial-gradient(circle at 50% 50%, #199ac5, #4f6dae);
    border-radius: 50%;
    pointer-events: none;
}

.corporate-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 240, 54, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Layout principal */
.corporate-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* ===== COLUMNA DE TEXTO ===== */
.corporate-text {
    flex: 1;
    min-width: 0;
}

/* Eyebrow blanco */
.section-eyebrow-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fbf036;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(97, 189, 152, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.section-eyebrow-white i {
    font-size: 0.9rem;
    color: #61bd98;
}

/* Título */
.corporate-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

/* Descripción */
.corporate-text > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* ===== LISTA DE FEATURES ===== */
.corporate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.corporate-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.corporate-features li:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(97, 189, 152, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.corporate-features li > i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: white;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(97, 189, 152, 0.3);
    transition: transform 0.3s ease;
}

.corporate-features li:hover > i {
    transform: scale(1.1) rotateZ(-5deg);
}

.corporate-features li div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.corporate-features li strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.corporate-features li span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* ===== BOTÓN BLANCO ===== */
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #003180;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(97, 189, 152, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn-white:hover::before {
    left: 100%;
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    color: #003180;
}

.btn-white:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-white i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-white:hover i {
    transform: translateX(3px);
}

/* ===== COLUMNA DE IMAGEN ===== */
.corporate-image {
    flex: 1;
    min-width: 0;
    position: relative;
}

.corporate-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.corporate-image:hover img {
    transform: scale(1.02) rotateZ(0.5deg);
}

/* Decoración detrás de la imagen */
.corporate-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(97, 189, 152, 0.4);
    border-radius: 24px;
    z-index: -1;
    transition: all 0.5s ease;
}

.corporate-image:hover::before {
    top: -10px;
    right: -10px;
    border-color: rgba(97, 189, 152, 0.6);
}

/* Glow sutil detrás de la imagen */
.corporate-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(97, 189, 152, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(40px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .corporate-content {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .corporate-section {
        padding: 5rem 0;
    }

    .corporate-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .corporate-text {
        text-align: center;
    }

    .corporate-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .corporate-features li {
        text-align: left;
    }

    .corporate-image {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .corporate-image::before {
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .corporate-section {
        padding: 4rem 0;
    }

    .corporate-features li {
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .corporate-features li > i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .corporate-features li strong {
        font-size: 0.95rem;
    }

    .corporate-features li span {
        font-size: 0.85rem;
    }

    .btn-white {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .corporate-image::before,
    .corporate-image::after {
        display: none;
    }

    .corporate-image img {
        border-radius: 18px;
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .corporate-section {
        padding: 3.5rem 0;
    }

    .section-eyebrow-white {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .corporate-text h2 {
        font-size: 1.8rem;
    }

    .corporate-text > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .corporate-features {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .corporate-features li {
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }

    .corporate-image img {
        max-height: 320px;
        border-radius: 14px;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .corporate-features li:hover {
        transform: none;
    }

    .corporate-image:hover img {
        transform: none;
    }

    .corporate-image::before {
        transition: none;
    }

    .btn-white::before {
        display: none;
    }

    .btn-white:hover {
        transform: none;
    }
}












/* ============================================
   PROCESS SECTION - VALLE DEL SOL
   ¿Cómo Trabajamos? Timeline
   ============================================ */

.bg-light {
    background: #f8fafb;
}

.process-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo */
.process-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(97, 189, 152, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(3, 109, 167, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #003180;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    line-height: 1.3;
}

.section-title i {
    color: #61bd98;
    font-size: 0.85em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

/* Línea vertical del timeline */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 34px;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(97, 189, 152, 0.1) 0%,
        #61bd98 15%,
        #61bd98 85%,
        rgba(97, 189, 152, 0.1) 100%
    );
    border-radius: 3px;
}

/* ===== PROCESS STEP ===== */
.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    padding: 1.8rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    transform: translateY(30px);
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step:nth-child(1) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s forwards;
}

.process-step:nth-child(2) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

.process-step:nth-child(3) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards;
}

.process-step:nth-child(4) {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s forwards;
}

/* Hover en step */
.process-step:hover {
    transform: translateY(-4px) translateX(5px);
    box-shadow: 0 15px 50px rgba(97, 189, 152, 0.15);
    border-color: rgba(97, 189, 152, 0.3);
}

/* Último step sin margin-bottom */
.process-step:last-child {
    margin-bottom: 0;
}

/* Conector al timeline (punto en la línea) */
.process-step::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #61bd98;
    border-radius: 50%;
    border: 3px solid #f8fafb;
    box-shadow: 0 0 0 3px rgba(97, 189, 152, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.process-step:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 5px rgba(97, 189, 152, 0.4);
    background: #4CAF50;
}

/* Línea horizontal conectora (del punto al card) */
.process-step::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: rgba(97, 189, 152, 0.4);
    transition: background 0.3s ease;
}

.process-step:hover::after {
    background: rgba(97, 189, 152, 0.7);
}

/* ===== STEP NUMBER ===== */
.step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(97, 189, 152, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotateZ(-5deg);
    box-shadow: 0 12px 35px rgba(97, 189, 152, 0.5);
    background: linear-gradient(135deg, #4CAF50, #61bd98);
}

/* ===== STEP CONTENT ===== */
.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003180;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: #036da7;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   VARIANTE: HORIZONTAL (Desktop grande)
   Descomenta si prefieres layout horizontal
   ============================================ */
/*
@media (min-width: 1200px) {
    .process-timeline {
        display: flex;
        gap: 2rem;
        padding-left: 0;
        max-width: 100%;
    }

    .process-timeline::before {
        top: 34px;
        left: 0;
        width: 100%;
        height: 3px;
    }

    .process-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .process-step::before {
        left: 50%;
        top: -38px;
        transform: translateX(-50%);
    }

    .process-step::after {
        display: none;
    }
}
*/

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .process-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .process-timeline {
        padding-left: 50px;
    }

    .process-timeline::before {
        left: 28px;
    }

    .process-step::before {
        left: -32px;
        width: 12px;
        height: 12px;
    }

    .process-step::after {
        left: -20px;
        width: 20px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0;
    }

    .section-title {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .process-timeline {
        padding-left: 40px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        padding: 1.5rem 1.5rem;
        gap: 1.2rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }

    .process-step::before {
        left: -28px;
        width: 10px;
        height: 10px;
    }

    .process-step::after {
        left: -18px;
        width: 18px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .process-timeline {
        padding-left: 30px;
    }

    .process-timeline::before {
        left: 14px;
        width: 2px;
    }

    .process-step {
        padding: 1.2rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .process-step::before {
        left: -22px;
        width: 8px;
        height: 8px;
        border-width: 2px;
    }

    .process-step::after {
        left: -14px;
        width: 14px;
        height: 1.5px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .process-step {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .process-step:hover {
        transform: none;
    }

    .process-step:hover .step-number {
        transform: none;
    }

    .process-step:hover::before {
        transform: translateY(-50%);
    }
}








/* ===== FIX: Eliminar línea fantasma del h3 ===== */
.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003180;
    margin-bottom: 0.4rem;
    margin-top: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    /* Eliminar cualquier línea/borde */
    border: none;
    border-bottom: none;
    text-decoration: none;
    box-shadow: none;
    outline: none;
    position: relative;
}

/* Asegurar que ::after y ::before no interfieren */
.step-content h3::after,
.step-content h3::before {
    display: none;
    content: none;
}

/* Fix overflow del process-step */
.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    padding: 1.8rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden; /* <-- CLAVE: evita que elementos internos se desborden */
}

/* Asegurar que step-content no desborda */
.step-content {
    flex: 1;
    min-width: 0;
    overflow: hidden; /* Contener todo dentro */
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    border: none;
}


.process-step:after {
    background: transparent;
}






/* QUITAR el ::after del process-step */
.process-step::after {
    display: none; /* Eliminar la línea conectora problemática */
}

.process-step:hover::after {
    display: none; /* Ya no existe */
}

/* En su lugar, usar el punto (::before) más grande como conector visual */
.process-step::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #61bd98;
    border-radius: 50%;
    border: 3px solid #f8fafb;
    box-shadow: 0 0 0 3px rgba(97, 189, 152, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.process-step:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 5px rgba(97, 189, 152, 0.4);
    background: #4CAF50;
}












