/* ===== NUEVA PALETA DE COLORES PREMIUM ===== */
:root {
    --primary-dark: #0A1928;
    --primary-accent: #2A7FAA;
    --primary-gradient: linear-gradient(135deg, #2A7FAA 0%, #1E5A7A 100%);
    --secondary-accent: #F4A261;
    --text-dark: #1A2A3A;
    --text-light: #6B7A8A;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFE;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
    --border-radius: 24px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    background: rgba(42, 127, 170, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVBAR STICKY ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}
/* ===== LOGO JR - JIREH SOLUTIONS ===== */

/* Logo principal del navbar */
.jr-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.jr-monogram {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2A7FAA 0%, #F4A261 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    text-shadow: 0 2px 15px rgba(42, 127, 170, 0.2);
    position: relative;
}

.jr-monogram::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #2A7FAA 0%, #F4A261 100%);
    border-radius: 2px;
}

.jr-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding-left: 8px;
}

.jr-jireh {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A2A3A;
    letter-spacing: 0.5px;
}

.jr-solutions {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B7A8A;
    letter-spacing: 2px;
}

/* ===== LOGO EN EL FOOTER ===== */
.jr-logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.jr-monogram-footer {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4A261 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    position: relative;
}

.jr-monogram-footer::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background: linear-gradient(180deg, #F4A261 0%, #FFFFFF 100%);
    border-radius: 2px;
}

.jr-text-group-footer {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding-left: 8px;
}

.jr-jireh-footer {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.jr-solutions-footer {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* ===== RESPONSIVE DEL LOGO ===== */
@media (max-width: 768px) {
    .jr-monogram {
        font-size: 2.2rem;
    }
    
    .jr-monogram::after {
        height: 32px;
        right: -6px;
    }
    
    .jr-jireh {
        font-size: 1.1rem;
    }
    
    .jr-solutions {
        font-size: 0.75rem;
    }
    
    .jr-monogram-footer {
        font-size: 2rem;
    }
    
    .jr-jireh-footer {
        font-size: 1rem;
    }
    
    .jr-solutions-footer {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .jr-monogram {
        font-size: 1.8rem;
    }
    
    .jr-jireh {
        font-size: 0.9rem;
    }
    
    .jr-solutions {
        font-size: 0.65rem;
    }
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-accent);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(42, 127, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 127, 170, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero-illustration {
    position: relative;
    text-align: center;
}

.hero-icon {
    width: 280px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(42, 127, 170, 0.2));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-accent);
    opacity: 0.6;
    animation: floatAround 4s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { bottom: 20%; right: 15%; animation-delay: 1s; }
.float-icon:nth-child(3) { top: 40%; right: 25%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(10deg); }
    50% { transform: translate(0, -20px) rotate(0deg); }
    75% { transform: translate(-10px, -10px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}




/* ===== SVG CONTAINER ===== */
.svg-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.svg-container svg {
    width: 100%;
    height: auto;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .svg-container {
        max-width: 320px;
    }
}




.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 90% 20%, rgba(42, 127, 170, 0.05) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(42, 127, 170, 0.1);
    color: var(--primary-accent);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    color: var(--primary-accent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== KPIs SECTION ===== */
.kpi-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.kpi-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.kpi-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

/* ===== SWIPER CARDS STYLES ===== */
.problems-section,
.services-section,
.benefits-section,
.testimonials-section {
    padding: 100px 0;
}

.problems-section {
    background: var(--bg-light);
}

.services-section {
    background: var(--bg-white);
}

.benefits-section {
    background: var(--bg-light);
}

.testimonials-section {
    background: var(--bg-white);
}

.swiper {
    padding: 20px 0 60px !important;
}

.swiper-slide {
    height: auto !important;
}

.problem-card,
.service-card,
.benefit-card,
.testimonial-card {
    background: var(--bg-white);
    padding: 40px 28px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(42, 127, 170, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.problem-card {
    background: white;
}

.service-card {
    background: var(--bg-light);
}

.benefit-card {
    background: white;
}

.testimonial-card {
    background: var(--bg-light);
    text-align: left;
    align-items: flex-start;
}

.problem-card:hover,
.service-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.problem-card i,
.service-card i,
.benefit-card i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--primary-accent);
    opacity: 0.3;
    margin-bottom: 20px;
}

.client-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
    width: 100%;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-accent) !important;
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-accent) !important;
}

/* ===== PROCESS TIMELINE ===== */
.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(42, 127, 170, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0F2A3A 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-container h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-accent);
}

.footer-col p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 100;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s;
        box-shadow: var(--shadow-md);
    }
    .nav-menu.active { left: 0; }
    .nav-links { flex-direction: column; gap: 30px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .timeline { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .section-header h2 { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
}