/* ============================================
   MODERN SOLUTIONS SECTIONS - Equipo, Refacciones, Servicio
   ============================================ */

:root {
    --primary-color: #19266C;
    --accent-color: #1A4D5C;
    --text-dark: #0F1419;
    --text-light: #6B7280;
    --bg-light: #F5F7FA;
    --border-color: #E5E7EB;
}

/* ========== HERO SECTION - STATIC ========== */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 60, 60, 0.7);
    z-index: 1;
}

.hero-static-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    z-index: 2;
}

.hero-static-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-block {
    max-width: 700px;
    color: white;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(25, 38, 108, 0.3);
}

.btn-hero-primary:hover {
    background: #0d1a42;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(25, 38, 108, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: #d4841c;
}

/* ========== SOLUTIONS SECTIONS ========== */

.solutions-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.solutions-section-equipment {
    background: white;
}

.solutions-section-parts {
    background: var(--bg-light);
}

.solutions-section-service {
    background: white;
}

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

.solutions-row-reverse {
    direction: rtl;
}

.solutions-row-reverse > * {
    direction: ltr;
}

.solutions-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.solutions-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.solutions-features {
    list-style: none;
    margin-bottom: 40px;
}

.solutions-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.solutions-features li:last-child {
    border-bottom: none;
}

.solutions-features i {
    font-size: 1.3rem;
    color: var(--primary-color);
    min-width: 24px;
    text-align: center;
}

.btn-solutions {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(25, 38, 108, 0.15);
}

.btn-solutions:hover {
    background: #0d1a42;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 38, 108, 0.25);
}

.solutions-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease-out;
}

.solutions-image:hover .solution-img {
    transform: scale(1.05);
}

/* ========== WHATSAPP FLOAT BUTTON ========== */

.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
    background: #1fb854;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-btn i {
    color: white;
    font-size: 1.8rem;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF6B6B;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ========== ANIMATIONS ========== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .solutions-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-row-reverse {
        direction: ltr;
    }

    .solutions-title {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-static-container {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn-hero {
        width: 100%;
    }

    .hero-features {
        gap: 30px;
    }

    .solutions-section {
        padding: 60px 20px;
    }

    .solutions-title {
        font-size: 1.75rem;
    }

    .solutions-row {
        gap: 30px;
    }

    .solutions-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

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

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .hero-cta-group {
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .solutions-section {
        padding: 40px 15px;
    }

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

    .solutions-description {
        font-size: 0.95rem;
    }

    .solutions-features li {
        font-size: 0.9rem;
        gap: 10px;
    }

    .btn-solutions {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
    }

    .whatsapp-float-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float-btn i {
        font-size: 1.2rem;
    }

    .notification-badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}
