/* ============================================
   SERVICES ALTERNATIVE STYLES - SETVI
   Versión CORREGIDA - TODO VISIBLE
   ============================================ */

/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --primary-color: #1aa6b7;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
}

/* IMPORTANTE: Asegurar que todo sea visible */
* {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   HERO ALTERNATIVO - MINIMALISTA
   ============================================ */
.alt-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    padding: 20px 0 60px;
}

.hero-content-alt {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(26, 166, 183, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-title-alt {
    font-size: 56px;
    font-weight: 300;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title-alt .highlight {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.hero-text-alt {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--primary-color);
    font-size: 16px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   SERVICIOS GRID ALTERNATIVO - ZIG-ZAG
   ============================================ */
.alt-services-grid {
    padding: 0px 0 40px;
    background: var(--white);
    display: block !important;
    visibility: visible !important;
}

.service-row {
    margin-bottom: 10px;
    display: block !important;
    visibility: visible !important;
}

.service-row:last-child {
    margin-bottom: 0;
}

.align-center {
    display: flex;
    align-items: center;
}

/* Service Number */
.service-number {
    font-size: 120px;
    font-weight: 700;
    color: rgba(26, 166, 183, 0.08);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

/* Service Content */
.service-content-left,
.service-content-right {
    padding: 0px;
    display: block !important;
    visibility: visible !important;
}

.service-title-alt {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-desc-alt {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 6px;
}

.service-list-alt {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-alt li {
    padding: 2px 0;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.service-list-alt li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Service Visual - Icono Mega */
.service-visual {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0px;
    visibility: visible !important;
}

.icon-mega {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 166, 183, 0.1) 0%, rgba(26, 166, 183, 0.05) 100%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.icon-mega::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(26, 166, 183, 0.2);
    animation: pulse 3s infinite;
}

.icon-mega i {
    font-size: 100px;
    color: var(--primary-color);
    transition: all 0.5s ease;
    display: block !important;
}

.service-row:hover .icon-mega {
    transform: scale(1.05);
}

.service-row:hover .icon-mega i {
    transform: rotate(10deg);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* ============================================
   STATS SECTION - MINIMALISTA
   ============================================ */
.alt-stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    display: block !important;
}

.stat-item-alt {
    padding: 40px 20px;
    text-align: center;
}

.stat-number-alt {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.stat-label-alt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================================
   TIMELINE - PROCESO
   ============================================ */
.alt-timeline-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-center h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title-center p {
    font-size: 18px;
    color: var(--text-light);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 30px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-left {
    padding-right: 60px;
    text-align: right;
}

.timeline-right {
    margin-left: 50%;
    padding-left: 60px;
    text-align: left;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 8px var(--light-bg);
}

.timeline-left .timeline-icon {
    right: -90px;
}

.timeline-right .timeline-icon {
    left: -90px;
}

.timeline-icon i {
    font-size: 24px;
    color: var(--white);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA ALTERNATIVO - MINIMALISTA
   ============================================ */
.alt-cta-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
}

.cta-content-alt {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-alt h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.cta-content-alt p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons-alt {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-alt-primary,
.btn-alt-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-alt-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-alt-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 166, 183, 0.2);
}

.btn-alt-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-alt-secondary:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-alt-secondary i {
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title-alt {
        font-size: 42px;
    }
    
    .hero-text-alt {
        font-size: 18px;
    }
    
    .service-number {
        font-size: 80px;
    }
    
    .service-title-alt {
        font-size: 28px;
    }
    
    .icon-mega {
        width: 250px;
        height: 250px;
    }
    
    .icon-mega::before {
        width: 270px;
        height: 270px;
    }
    
    .icon-mega i {
        font-size: 80px;
    }
    
    .service-row {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .alt-hero {
        min-height: 60vh;
        padding: 80px 0 60px;
    }
    
    .hero-title-alt {
        font-size: 32px;
    }
    
    .hero-text-alt {
        font-size: 16px;
    }
    
    .alt-services-grid {
        padding: 50px 0 30px;
    }
    
    .service-row {
        margin-bottom: 50px;
    }
    
    .service-content-left,
    .service-content-right {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .service-visual {
        padding: 20px;
    }
    
    .icon-mega {
        width: 200px;
        height: 200px;
    }
    
    .icon-mega::before {
        width: 220px;
        height: 220px;
    }
    
    .icon-mega i {
        font-size: 60px;
    }
    
    .service-number {
        font-size: 60px;
    }
    
    /* Timeline Mobile */
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left;
    }
    
    .timeline-right {
        margin-left: 0;
        padding-left: 80px;
    }
    
    .timeline-left {
        padding-right: 20px;
        text-align: left;
    }
    
    .timeline-left .timeline-icon,
    .timeline-right .timeline-icon {
        left: 0;
        right: auto;
    }
    
    .stat-number-alt {
        font-size: 42px;
    }
    
    .cta-content-alt h2 {
        font-size: 32px;
    }
    
    .cta-buttons-alt {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-alt-primary,
    .btn-alt-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title-alt {
        font-size: 28px;
    }
    
    .service-title-alt {
        font-size: 24px;
    }
    
    .icon-mega {
        width: 180px;
        height: 180px;
    }
    
    .icon-mega::before {
        width: 200px;
        height: 200px;
    }
    
    .icon-mega i {
        font-size: 50px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .section-title-center h2 {
        font-size: 32px;
    }
}