/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (SaaS Style)
   ========================================================================== */
:root {
    /* Colors (Original JN Courier Brand Colors + SaaS Slate) */
    --primary: #F97C06;
    /* Orange Accent */
    --primary-hover: #e06a00;
    --primary-light: rgba(249, 124, 6, 0.1);

    --secondary: #012147;
    /* Dark Blue Brand */
    --secondary-hover: #00132b;
    --secondary-light: rgba(1, 33, 71, 0.1);

    --bg-saas: #F5F7FB;
    /* Light grayish blue background */
    --white: #FFFFFF;
    --text-dark: #243447;
    /* Slate dark text */
    --text-gray: #6B7280;
    /* Cool Gray text */
    --border-light: #E5E7EB;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout Constants */
    --container-width: 1280px;
    --radius-saas: 22px;
    --radius-btn: 999px;

    /* Shadows */
    --shadow-saas: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-saas: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
body.saas-bg {
    background-color: var(--bg-saas);
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
}

a {
    text-decoration: none;
    transition: var(--transition-saas);
}

/* ==========================================================================
   LAYOUT & CONTAINER (1280px Limit)
   ========================================================================== */
.container-saas {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    transition: max-width 0.3s ease;
}

/* Escalar en monitores muy grandes */
@media (min-width: 1400px) {
    :root {
        --container-width: 1320px;
    }
}

@media (min-width: 1600px) {
    :root {
        --container-width: 1480px;
    }
}

@media (min-width: 1920px) {
    :root {
        --container-width: 1680px;
    }
}

/* Section spacing removed as requested */

/* Dashboard 3-Column Layout */
.dashboard-layout {
    display: flex;
    flex-wrap: wrap;
}

.sidebar-left-col {
    width: 100%;
    max-width: 260px;
    flex: 0 0 auto;
}

.main-content-col {
    flex: 1 1 0%;
    min-width: 0;
    padding: 0 16px;
}

.sidebar-right-col {
    width: 100%;
    max-width: 300px;
    flex: 0 0 auto;
}

.sticky-sidebar {
    position: sticky;
    top: 96px;
    /* Offset below header */
    height: fit-content;
}

/* ==========================================================================
   HEADER (Double Level)
   ========================================================================== */
/* First Level - 28px top bar */
.top-bar-saas {
    height: 28px;
    background-color: var(--secondary);
    font-size: 0.75rem;
    font-family: var(--font-body);
}

.top-bar-saas a {
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-saas a:hover {
    color: var(--primary);
}

/* Second Level - 72px Main Navbar */
.header-saas {
    height: 72px;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 990;
}

.logo-saas {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}

.logo-saas span {
    color: var(--primary);
}

.header-logo-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Capsules menu */
.nav-menu-saas {
    display: flex;
    gap: 10px;
}

.nav-capsule {
    padding: 8px 20px;
    border-radius: var(--radius-btn);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.nav-capsule:hover {
    background-color: var(--bg-saas);
    color: var(--secondary);
}

.nav-capsule.active {
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-color: rgba(1, 33, 71, 0.08);
}

/* Toggle Menu button */
.btn-saas-toggle {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary);
}

.btn-saas-toggle:hover {
    background-color: var(--bg-saas);
}

/* ==========================================================================
   BUTTONS (SaaS Capsule Design, Height 56px, Radius 999px)
   ========================================================================== */
.btn-capsule {
    height: 56px;
    border-radius: var(--radius-btn) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    border: 2px solid transparent;
    transition: var(--transition-saas);
}

.btn-saas-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-saas-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 124, 6, 0.2);
}

.btn-saas-outline {
    background-color: transparent;
    border-color: var(--border-light);
    color: var(--text-dark);
}

.btn-saas-outline:hover {
    background-color: var(--bg-saas);
    color: var(--secondary);
}

.btn-saas-white {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-saas-white:hover {
    background-color: var(--bg-saas);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-saas-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-saas-whatsapp:hover {
    background-color: #20ba5a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-saas-light {
    background-color: var(--bg-saas);
    color: var(--secondary);
}

.btn-saas-light:hover {
    background-color: var(--border-light);
}

/* ==========================================================================
   SIDEBAR IZQUIERDO (260px wide Menu card)
   ========================================================================== */
.sidebar-left-card {
    background-color: var(--white);
    box-shadow: var(--shadow-saas);
    border-radius: var(--radius-saas);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 20px;
    padding-left: 8px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 14px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-item-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-item-inner i {
    font-size: 1.15rem;
    color: var(--text-gray);
    transition: var(--transition-saas);
}

.arrow-icon {
    font-size: 0.75rem;
    color: var(--text-gray);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-saas);
}

/* Hover: light blue/orange background tint */
.sidebar-item:hover {
    background-color: rgba(1, 33, 71, 0.05);
    /* very light navy blue */
    color: var(--secondary);
}

.sidebar-item:hover .sidebar-item-inner i {
    color: var(--primary);
}

.sidebar-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

/* ==========================================================================
   CAROUSEL HORIZONTAL DE NOVEDADES (170px high cards, horizontal scroll)
   ========================================================================== */
.novedades-carousel-container {
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
}

.novedades-carousel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.novedades-carousel-track {
    display: flex;
    gap: 16px;
}

.novedades-card {
    flex: 0 0 320px;
    height: 170px;
    background-color: var(--white);
    border-radius: var(--radius-saas);
    box-shadow: var(--shadow-saas);
    padding: 24px;
    display: flex;
    align-items: center;
    transition: var(--transition-saas);
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.novedades-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.novedad-content h5 {
    font-size: 1.05rem;
    margin: 8px 0 4px;
    font-weight: 600;
}

.novedad-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.badge-novedad {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 99px;
    text-transform: uppercase;
}

/* Tints backgrounds for news */
.bg-orange-tint {
    background-color: #FFF6EE;
    border: 1px solid rgba(249, 124, 6, 0.1);
}

.bg-blue-tint {
    background-color: #EEF4FA;
    border: 1px solid rgba(1, 33, 71, 0.1);
}

.bg-dark-tint {
    background-color: #F3F4F6;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bg-orange {
    background-color: var(--primary);
}

.bg-blue {
    background-color: var(--secondary);
}

/* Navigation buttons for Carousel */
.carousel-control-prev-saas,
.carousel-control-next-saas {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition-saas);
}

.carousel-control-prev-saas:hover,
.carousel-control-next-saas:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* ==========================================================================
   HERO SECTION (520px high, gradient, overlay, tracking search)
   ========================================================================== */
.hero-saas {
    height: 640px;
    border-radius: var(--radius-saas);
    position: relative;
    box-shadow: var(--shadow-saas);
    overflow: hidden;
    padding: 40px;
    background-color: var(--secondary);
    /* Fallback dark blue */
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero-saas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 33, 71, 0.95) 0%, rgba(1, 33, 71, 0.7) 50%, rgba(1, 33, 71, 0.25) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-saas-content {
    position: relative;
    z-index: 3;
}

.hero-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.hero-title-saas {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    max-width: 600px;
    line-height: 1.2;
}

.hero-desc-saas {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    max-width: 550px;
    margin-top: 10px;
}

.hero-benefits-row {
    gap: 8px;
}

.hero-benefit-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-benefit-badge i {
    color: var(--primary);
}

/* Buscador de Tracking */
.hero-tracking-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-saas);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tracking-search-bar {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.search-icon {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-right: 12px;
}

.tracking-input {
    border: none;
    font-size: 0.95rem;
    padding: 0;
    box-shadow: none !important;
}

.tracking-input::placeholder {
    color: #9CA3AF;
}

.btn-tracking-circle {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 48px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-saas);
    border: none;
}

.btn-tracking-circle:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.tracking-options-underneath {
    font-size: 0.8rem;
    font-weight: 500;
}

.tracking-options-underneath span i {
    color: var(--primary);
    margin-right: 4px;
}

/* Título naranja (segunda línea del hero) */
.hero-title-orange {
    color: var(--primary);
}

/* Botón "Rastrear" tipo pill con texto */
.btn-tracking-pill {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 999px;
    padding: 0 28px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: var(--font-heading);
    border: none;
    white-space: nowrap;
    transition: var(--transition-saas);
    flex-shrink: 0;
}

.btn-tracking-pill:hover {
    background-color: var(--primary-hover);
    transform: scale(1.03);
}

/* ==========================================================================
   STATS + BRANDS BAR (debajo del hero)
   ========================================================================== */
.hero-stats-brands-bar {
    background: var(--white);
    border-radius: 0 0 var(--radius-saas) var(--radius-saas);
    border: 1px solid var(--border-light);
    border-top: none;
    padding: 20px 28px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Stats row */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 120px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.3;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
    flex-shrink: 0;
}

/* Brands ticker */
.hero-brands-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 16px 0 10px;
}

.hero-brands-row {
    margin-bottom: 10px;
}

.hero-brands-label {
    font-size: 0.72rem;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ticker wrapper: clips overflow and adds fade masks on edges */
.hero-brands-ticker-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-brands-ticker-wrap::before,
.hero-brands-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.hero-brands-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.hero-brands-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* The moving track */
.hero-brands-ticker {
    display: flex;
    width: max-content;
    animation: brandsTicker 18s linear infinite;
}

.hero-brands-ticker:hover {
    animation-play-state: paused;
}

@keyframes brandsTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Each group of logos */
.hero-ticker-group {
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 0 22px;
}

.hero-brand-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.hero-brand-logo:hover {
    transform: scale(1.08);
}

.hero-brand-logo.brand-logo-small {
    height: 50px;
}

/* Responsive stats bar */
@media (max-width: 768px) {
    .hero-stats-brands-bar {
        padding: 16px 16px 12px;
    }

    .hero-stats-row {
        gap: 10px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-item {
        min-width: 45%;
        gap: 8px;
    }

    .hero-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .hero-stat-value {
        font-size: 0.95rem;
    }

    .hero-stat-label {
        font-size: 0.68rem;
    }

    .hero-brands-ticker {
        animation-duration: 12s;
    }

    .hero-brand-logo {
        height: 100px;
    }

    .hero-brand-logo.brand-logo-small {
        height: 33px;
    }
}


/* ==========================================================================
   CARDS DE SERVICIOS / HERRAMIENTAS (SaaS Aesthetics & Hover)
   ========================================================================== */
.section-header-saas h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card-saas {
    background: var(--white);
    box-shadow: var(--shadow-saas);
    border-radius: var(--radius-saas);
    padding: 28px;
    transition: var(--transition-saas);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card-saas:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.text-orange {
    color: var(--primary) !important;
}

.text-blue {
    color: var(--secondary) !important;
}

.text-dark {
    color: #111827 !important;
}

.card-saas-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-saas-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.btn-card-saas {
    padding: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-card-saas:hover {
    color: var(--primary-hover);
    padding-left: 4px;
}

/* ==========================================================================
   SERVICIOS / SOLUCIONES (Rediseño Premium)
   ========================================================================== */
.servicios-header-premium {

    border-radius: var(--radius-saas);
    padding: 32px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.servicios-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.servicios-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.servicios-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

.servicios-header-img {
    max-height: 140px;
    object-fit: contain;
}

/* Premium Service Cards */
.premium-service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top: 4px solid var(--white);
    transition: var(--transition-saas);
    display: flex;
    flex-direction: column;
}

.premium-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.premium-service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.premium-service-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.premium-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.premium-service-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 2px;
}

.premium-service-price {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.premium-service-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.4;
}

.premium-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.premium-service-list li {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.premium-service-list li i {
    font-size: 0.9rem;
    margin-top: 2px;
}

.premium-service-btn {
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: var(--transition-saas);
    border: none;
}

/* Card Themes */
/* Orange (Entrega Regular) */
.theme-orange {
    border-top-color: var(--primary);
}

.theme-orange .premium-service-badge,
.theme-orange .premium-service-icon,
.theme-orange .premium-service-btn {
    background-color: var(--primary);
}

.theme-orange .premium-service-price {
    color: var(--primary);
}

.theme-orange .premium-service-list li i {
    color: var(--primary);
}

.theme-orange .premium-service-btn:hover {
    background-color: #d15600;
    color: var(--white);
}

/* Red (Same Day) */
.theme-red {
    border-top-color: #ef4444;
}

.theme-red .premium-service-badge,
.theme-red .premium-service-icon,
.theme-red .premium-service-btn {
    background-color: #ef4444;
}

.theme-red .premium-service-price {
    color: #ef4444;
}

.theme-red .premium-service-list li i {
    color: #ef4444;
}

.theme-red .premium-service-btn:hover {
    background-color: #dc2626;
    color: var(--white);
}

/* Green (Contraentrega) */
.theme-green {
    border-top-color: #10b981;
}

.theme-green .premium-service-badge,
.theme-green .premium-service-icon,
.theme-green .premium-service-btn {
    background-color: #10b981;
}

.theme-green .premium-service-price {
    color: #10b981;
}

.theme-green .premium-service-list li i {
    color: #10b981;
}

.theme-green .premium-service-btn:hover {
    background-color: #059669;
    color: var(--white);
}

/* Blue (Fulfillment) */
.theme-blue {
    border-top-color: #3b82f6;
}

.theme-blue .premium-service-badge,
.theme-blue .premium-service-icon,
.theme-blue .premium-service-btn {
    background-color: #3b82f6;
}

.theme-blue .premium-service-price {
    color: #3b82f6;
}

.theme-blue .premium-service-list li i {
    color: #3b82f6;
}

.theme-blue .premium-service-btn:hover {
    background-color: #2563eb;
    color: var(--white);
}

/* Purple (Provincias) */
.theme-purple {
    border-top-color: #8b5cf6;
}

.theme-purple .premium-service-badge,
.theme-purple .premium-service-icon,
.theme-purple .premium-service-btn {
    background-color: #8b5cf6;
}

.theme-purple .premium-service-price {
    color: #8b5cf6;
}

.theme-purple .premium-service-list li i {
    color: #8b5cf6;
}

.theme-purple .premium-service-btn:hover {
    background-color: #7c3aed;
    color: var(--white);
}

/* Yellow (Recojo) */
.theme-yellow {
    border-top-color: #eab308;
}

.theme-yellow .premium-service-badge,
.theme-yellow .premium-service-icon,
.theme-yellow .premium-service-btn {
    background-color: #eab308;
}

.theme-yellow .premium-service-price {
    color: #eab308;
}

.theme-yellow .premium-service-list li i {
    color: #eab308;
}

.theme-yellow .premium-service-btn:hover {
    background-color: #ca8a04;
    color: var(--white);
}


/* ==========================================================================
   CÓMO PROGRAMAR TU ENTREGA (Rediseño Premium)
   ========================================================================== */
.como-programar-section {
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, var(--primary) 0%, #e86a00 100%);
    background-size: 20px 20px, 20px 20px, 100% 100%;
    border-radius: var(--radius-saas);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.como-programar-section::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.como-programar-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.como-programar-header {
    margin-bottom: 24px;
}

.como-programar-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.como-programar-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.como-programar-img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transform: translateY(20px) scale(1.1);
    transform-origin: bottom right;
}

/* Step Cards */
.como-step-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.como-step-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.como-step-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.como-step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    margin: 0 0 6px;
}

.como-step-desc {
    font-size: 0.76rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0 0 8px;
}

.como-step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    text-align: left;
    width: 100%;
}

.como-step-list li {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.como-step-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Color Theming for Steps */
.step-system .como-step-number {
    color: #2563eb;
}

.step-system .como-step-icon-wrap {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.step-system .como-step-list li i {
    color: #2563eb;
}

.step-pickup .como-step-number {
    color: var(--primary);
}

.step-pickup .como-step-icon-wrap {
    background: var(--primary-light);
    color: var(--primary);
}

.step-pickup .como-step-list li i {
    color: var(--primary);
}

.step-delivery .como-step-number {
    color: #10b981;
}

.step-delivery .como-step-icon-wrap {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.step-delivery .como-step-list li i {
    color: #10b981;
}

/* WhatsApp CTA */
.como-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-saas);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.como-whatsapp-btn:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Step Card Buttons (Compact) */
.como-step-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition-saas);
    text-decoration: none;
}

.como-step-btn.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.como-step-btn.btn-whatsapp:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.como-step-btn.btn-system {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 124, 6, 0.25);
}

.como-step-btn.btn-system:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 124, 6, 0.35);
}

@media (max-width: 768px) {
    .como-programar-section {
        padding: 24px 18px;
    }

    .como-programar-title {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   ACCESOS RÁPIDOS CARD
   ========================================================================== */
.quick-access-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius-saas);
    box-shadow: var(--shadow-saas);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-quick-saas {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    height: 64px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-saas);
}

.btn-quick-saas:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-quick-saas i {
    font-size: 1.25rem;
    color: var(--white);
}

/* ==========================================================================
   TIENDA & ESTADÍSTICAS
   ========================================================================== */
.store-saas-card {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-saas);
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--primary);
    transition: var(--transition-saas);
}

.store-saas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.store-img-container {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.store-img-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.store-saas-card:hover .store-img-container img {
    transform: scale(1.08) rotate(3deg);
}

.store-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.store-feature-tag {
    background: #f8fafc;
    border: 1px solid #eef2f6;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.store-feature-tag i {
    font-size: 0.78rem;
}

.store-tags-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.store-tags-container::-webkit-scrollbar {
    display: none;
}

/* Stat cards */
.stat-card-saas {
    background: var(--white);
    box-shadow: var(--shadow-saas);
    border-radius: var(--radius-saas);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-saas);
}

.stat-card-saas:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-card-saas h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-card-saas h3.stat-long-text {
    font-size: 1.6rem;
}

.stat-card-saas p {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ==========================================================================
   PRICING / PLANES DETAIL CARDS
   ========================================================================== */
.pricing-saas-card {
    background: var(--white);
    border-radius: var(--radius-saas);
    box-shadow: var(--shadow-saas);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-saas);
}

.pricing-saas-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pricing-saas-card.highlighted-saas {
    background: var(--secondary);
    border: none;
    box-shadow: var(--shadow-hover);
}

.pricing-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--bg-saas);
    border-radius: 99px;
}

.pricing-saas-card.highlighted-saas .pricing-badge {
    background-color: rgba(255, 255, 255, 0.1);
}

.price-saas {
    font-family: var(--font-heading);
}

.price-saas .currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: super;
}

.price-saas .amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
}

.price-saas .period {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.pricing-saas-card.highlighted-saas .price-saas .period {
    color: rgba(255, 255, 255, 0.6);
}

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

.pricing-list li {
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   CUSTOM FORM & ACCORDION (SaaS Clean Minimalism)
   ========================================================================== */
.custom-card-saas {
    background: var(--white);
    border-radius: var(--radius-saas);
    box-shadow: var(--shadow-saas);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.custom-form-saas input,
.custom-form-saas select,
.custom-form-saas textarea {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    box-shadow: none !important;
}

.custom-form-saas input:focus,
.custom-form-saas select:focus,
.custom-form-saas textarea:focus {
    border-color: var(--primary);
}

.job-list-saas {
    list-style: none;
    padding: 0;
}

.job-list-saas li {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Minimalist Accordion FAQ */
.faq-accordion-saas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-saas {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-saas);
    border: 1px solid rgba(0, 0, 0, 0.01);
    overflow: hidden;
}

.faq-header-saas {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    text-align: left;
    transition: var(--transition-saas);
}

.btn-quick-saas i {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
    transition: var(--transition-saas);
}

.faq-header-saas i {
    font-size: 1.1rem;
    color: var(--text-gray);
    transition: var(--transition-saas);
}

.faq-item-saas.active .faq-header-saas {
    color: var(--primary);
}

.faq-item-saas.active .faq-header-saas i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-body-saas {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-saas);
}

.faq-body-saas p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-gray);
}

/* ==========================================================================
   SIDEBAR DERECHO (Flotante, Cobertura, Soporte)
   ========================================================================== */
.sidebar-right-card {
    background-color: var(--white);
    box-shadow: var(--shadow-saas);
    border-radius: var(--radius-saas);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.icon-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.cobertura-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cobertura-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   FOOTER (Minimalista)
   ========================================================================== */
.footer-saas {
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
}

.footer-saas .logo-saas {
    font-size: 1.75rem;
}

.hover-primary:hover {
    color: var(--primary) !important;
}

.social-icons-footer a {
    font-size: 1.25rem;
    color: var(--text-gray);
    transition: var(--transition-saas);
}

.social-icons-footer a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}


/* ==========================================================================
   STATS & CLIENTS TICKER
   ========================================================================== */
.stat-card-saas {
    transition: var(--transition-saas);
    border: 1px solid transparent;
}

.stat-card-saas:hover {
    transform: translateY(-5px);
    background: var(--primary) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 25px rgba(249, 124, 6, 0.4);
}

.stat-card-saas:hover i,
.stat-card-saas:hover h2,
.stat-card-saas:hover p {
    color: var(--white) !important;
}

.logo-ticker-saas {
    /* Mask image removed to prevent cross-browser rendering bugs */
    padding: 1rem 0;
}

.logo-ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 20s linear infinite;
}

.logo-ticker-track:hover {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    flex-shrink: 0;
    gap: 4rem;
    padding-right: 4rem;
    /* Match gap so the loop is seamless */
}

.ticker-logo {
    height: 100px;
    width: auto;
    max-width: none !important;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(60%);
    transition: var(--transition-saas);
}

.ticker-logo:hover {
    filter: brightness(0) invert(1) opacity(100%);
    transform: scale(1.05);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes floatMoto {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================================
   MOBILE TOP NAV
   ========================================================================== */
.mobile-top-nav {
    display: none;
    background-color: var(--primary);
    padding: 6px 4px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid var(--primary-hover);
    position: sticky;
    top: 56px;
    /* Usually under header */
    z-index: 980;
}

@media (max-width: 991.98px) {
    .mobile-top-nav {
        display: block;
        /* The d-lg-none handles the hiding, but we make sure */
    }
}

.mobile-top-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    min-width: 64px;
    gap: 2px;
    padding-bottom: 3px;
    position: relative;
    transition: var(--transition-saas);
}

.mobile-nav-item i {
    font-size: 1.05rem;
}

.mobile-nav-item.active {
    color: var(--white);
}

.mobile-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
}

/* ==========================================================================
   RESPONSIVIDAD COMPLETA — Todos los componentes en todos los breakpoints
   ========================================================================== */

/* ---- Container mobile padding ---- */


/* ==========================================================================
   BREAKPOINT: ≤ 1200px  — Ocultar sidebar izquierdo
   ========================================================================== */
@media (max-width: 1200px) {
    .sidebar-left-col {
        display: none;
    }

    .main-content-col {
        padding: 0 8px;
    }
}

/* ==========================================================================
   BREAKPOINT: ≤ 992px  — Tablets horizontales y escritorios pequeños
   ========================================================================== */
@media (max-width: 992px) {

    /* Layout */
    .sidebar-right-col {
        display: none;
    }

    .dashboard-layout {
        padding-top: 8px;
    }

    .main-content-col {
        padding: 0;
    }

    /* Header */
    .header-saas {
        height: 64px;
    }

    .header-logo-img {
        height: 42px;
    }

    .logo-saas {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero-saas {
        height: auto;
        min-height: 500px;
        padding: 32px 28px;
    }

    .hero-title-saas {
        font-size: 2.25rem;
    }

    .hero-desc-saas {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing-saas-card {
        padding: 24px !important;
    }

    /* Stats */
    .stat-card-saas h3 {
        font-size: 1.9rem;
    }
}

/* ==========================================================================
   BREAKPOINT: ≤ 768px  — Tablets verticales
   ========================================================================== */
@media (max-width: 768px) {

    /* Header */
    .header-saas {
        height: 60px;
    }

    .header-logo-img {
        height: 36px;
    }

    .logo-saas {
        font-size: 1.25rem;
    }

    .btn-saas-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Ocultar botón "Perfil" en móvil */
    .btn-saas-outline.d-none.sm-flex {
        display: none !important;
    }

    .btn-capsule.btn-saas-primary {
        height: 42px;
        padding: 0 18px;
        font-size: 0.85rem;
    }

    /* Make "Zona Clientes" in header smaller on mobile */
    .header-saas .btn-capsule {
        height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    /* Hero */
    .hero-saas {
        height: auto;
        min-height: 480px;
        padding: 28px 20px;
        border-radius: 16px;
    }

    .hero-title-saas {
        font-size: 1.95rem;
        line-height: 1.25;
    }

    .hero-desc-saas {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .hero-benefits-row {
        gap: 6px !important;
        margin-top: 12px !important;
    }

    .hero-benefit-badge {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    /* Novedades carousel */
    .novedades-card {
        flex: 0 0 260px;
        height: auto;
        min-height: 150px;
        padding: 20px;
    }

    .novedad-content h5 {
        font-size: 0.95rem;
    }

    /* Service cards — 1 column */
    .service-card-saas {
        padding: 22px;
    }

    /* Accesos Rápidos */
    .quick-access-card {
        padding: 24px !important;
    }

    .btn-quick-saas {
        height: 54px;
        font-size: 0.9rem;
        gap: 8px;
    }

    /* Store */
    .store-saas-card {
        padding: 24px;
        flex-direction: column !important;
        text-align: center;
    }

    .store-img-container {
        width: 100%;
        max-width: 240px;
        height: 140px;
        margin: 0 auto;
    }

    .store-info-container .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }

    .store-info-container .btn-capsule {
        width: 100%;
    }

    /* Pricing */
    .price-saas .amount {
        font-size: 2.25rem;
    }

    /* Stats */
    .stat-card-saas h3 {
        font-size: 1.65rem;
    }

    .stat-card-saas p {
        font-size: 0.72rem;
    }

    /* Trabaja con nosotros */
    .job-list-saas li {
        font-size: 0.9rem;
    }

    /* Contact / Forms */
    .custom-card-saas {
        padding: 20px !important;
    }

    /* FAQ */
    .faq-header-saas {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    .faq-body-saas p {
        padding: 0 20px 16px;
        font-size: 0.84rem;
    }

    /* Section headers */
    .section-header-saas h3 {
        font-size: 1.3rem;
    }

    .servicios-header-premium {
        padding: 3px !important;
    }

    /* Footer */
    .footer-saas .logo-saas {
        font-size: 1.5rem;
    }

    .footer-saas {
        padding: 32px 0;
    }
}

/* ==========================================================================
   BREAKPOINT: ≤ 576px  — Móviles pequeños (iPhone SE, Galaxy S)
   ========================================================================== */
@media (max-width: 576px) {

    /* Body */
    body.saas-bg {
        font-size: 0.9rem;
    }

    /* Header */
    .header-saas {
        height: 56px;
    }

    .header-logo-img {
        height: 32px;
    }



    .hero-stats-brands-bar {
        padding: 16px 10px 12px;
    }

    .hero-stat-item {
        min-width: 46%;
    }

    .logo-saas {
        font-size: 1.15rem;
    }

    /* Reducir botón "Zona Clientes" en pantallas muy pequeñas */
    .header-saas .btn-saas-primary {

        padding: 0 5px;
        font-size: 0.62rem;
    }

    .header-saas .btn-saas-primary i {
        margin-right: 4px !important;
    }

    /* Hero */
    .hero-saas {
        min-height: 480px;
        padding: 24px 16px;
        border-radius: 14px;
    }

    .hero-tag {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .hero-title-saas {
        font-size: 1.75rem;
        line-height: 1.3;
        max-width: 100%;
    }

    .hero-desc-saas {
        font-size: 0.95rem;
        margin-top: 8px;
        max-width: 100%;
    }

    .hero-benefits-row {
        gap: 8px !important;
        margin-top: 12px !important;
        flex-wrap: wrap !important;
    }

    .hero-benefit-badge {
        font-size: 0.68rem;
        padding: 5px 8px;
        gap: 4px;
        width: calc(50% - 4px);
        justify-content: center;
    }

    /* Novedades carousel */
    .novedades-card {
        flex: 0 0 calc(100vw - 48px);
        max-width: 320px;
        min-height: 140px;
        padding: 18px;
    }

    .novedad-content h5 {
        font-size: 0.9rem;
    }

    .novedad-content p {
        font-size: 0.78rem;
    }

    /* Section headers */
    .section-header-saas h3 {
        font-size: 1.2rem;
    }

    .section-header-saas p {
        font-size: 0.82rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    /* Service cards — full width */
    .service-card-saas {
        padding: 18px;
        border-radius: 16px;
    }

    .icon-wrapper {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 1.2rem;
    }

    .card-saas-title {
        font-size: 1rem;
    }

    .card-saas-desc {
        font-size: 0.82rem;
    }

    /* Accesos Rápidos */
    .quick-access-card {
        padding: 20px !important;
        border-radius: 16px;
    }

    .quick-access-card h4 {
        font-size: 1.1rem;
    }

    .quick-access-card p {
        font-size: 0.82rem;
    }

    .btn-quick-saas {
        height: 50px;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    /* Store */
    .store-saas-card {
        padding: 18px;
        border-radius: 16px;
    }

    .store-img-container {
        max-width: 200px;
        height: 120px;
    }

    .store-info-container h4 {
        font-size: 1.05rem;
    }

    .store-info-container p {
        font-size: 0.82rem;
    }

    /* Pricing */
    .pricing-saas-card {
        padding: 20px !important;
        border-radius: 16px;
    }

    .price-saas .amount {
        font-size: 2rem;
    }

    .price-saas .currency {
        font-size: 1rem;
    }

    .pricing-list li {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }

    /* Stats */
    .stat-card-saas {
        border-radius: 16px;
    }

    .stat-card-saas h3 {
        font-size: 1.45rem;
    }

    .stat-card-saas h3.stat-long-text {
        font-size: 1.15rem;
    }

    .stat-card-saas p {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    /* Trabaja */
    .custom-card-saas {
        border-radius: 16px;
    }

    .custom-card-saas h3 {
        font-size: 1.2rem;
    }

    .job-list-saas li {
        font-size: 0.85rem;
    }

    /* FAQ */
    .faq-item-saas {
        border-radius: 12px;
    }

    .faq-header-saas {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .faq-body-saas p {
        padding: 0 16px 14px;
        font-size: 0.8rem;
    }

    /* Contact form */
    .custom-form-saas input,
    .custom-form-saas select,
    .custom-form-saas textarea {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    /* Buttons */
    .btn-capsule {
        height: 46px;
        padding: 0 20px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-saas .logo-saas {
        font-size: 1.3rem;
    }

    .footer-saas {
        text-align: center;
        padding: 28px 0;
    }

    .footer-saas .d-flex.flex-wrap {
        justify-content: center !important;
        gap: 12px !important;
    }
}

/* ==========================================================================
   BREAKPOINT: ≤ 400px  — Móviles muy pequeños (iPhone SE 1gen, Galaxy A01)
   ========================================================================== */
@media (max-width: 400px) {
    .hero-saas {
        min-height: 460px;
        padding: 20px 14px;
    }

    .hero-title-saas {
        font-size: 1.55rem;
    }

    .hero-desc-saas {
        font-size: 0.9rem;
    }

    .hero-benefit-badge {
        font-size: 0.57rem;
        padding: 4px 10px;
    }

    .novedades-card {
        flex: 0 0 calc(100vw - 32px);
    }

    .stat-card-saas h3 {
        font-size: 1.25rem;
    }

    .stat-card-saas p {
        font-size: 0.6rem;
    }

    .service-card-saas {
        padding: 14px;
    }

    .quick-access-card {
        padding: 16px !important;
    }

    .faq-header-saas {
        font-size: 0.78rem;
        padding: 12px 14px;
    }

    .btn-capsule {
        height: 42px;
        font-size: 0.8rem;
        padding: 0 16px;
    }
}

/* Offcanvas custom background dark blue */
.bg-dark-blue {
    background-color: var(--secondary) !important;
}

/* ==========================================================================
   ÚLTIMAS NOVEDADES - VIDEO CAROUSEL SECTION (v2)
   ========================================================================== */

/* --- Header --- */
.novedades-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.btn-novedades-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    border-radius: var(--radius-btn);
    padding: 7px 18px;
    white-space: nowrap;
    transition: var(--transition-saas);
}

.btn-novedades-all:hover {
    background: var(--primary);
    color: #fff;
}

/* --- Carousel Container --- */
.novedades-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-saas);
}

.novedades-carousel-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.novedades-carousel-track::-webkit-scrollbar {
    display: none;
}

/* --- Video Card --- */
.novedades-card-v2 {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.novedades-card-v2:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* --- Media Wrapper --- */
.novedades-media-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    background: #0a0a1a;
    overflow: hidden;
}

.novedades-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.novedades-card-v2:hover .novedades-video-thumb {
    transform: scale(1.05);
}

/* --- Gradient Overlay --- */
.novedades-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.0) 30%,
            rgba(0, 0, 0, 0.0) 50%,
            rgba(0, 0, 0, 0.70) 100%);
    pointer-events: none;
}

.novedades-overlay-top {
    display: flex;
    justify-content: flex-start;
}

.novedades-overlay-content {
    /* intentionally empty — positioned via flex */
}

.novedades-overlay-content h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.novedades-overlay-content p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.novedades-overlay-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: all;
}

/* --- Play Button --- */
.btn-play-novedad {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.btn-play-novedad:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.btn-play-novedad i {
    margin-left: 2px;
    /* optical centering for play icon */
}

/* --- Meta Stats --- */
.novedades-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.novedades-meta span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* --- Badges --- */
.badge-novedad-v2 {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.badge-nuevo-servicio {
    background: rgba(249, 124, 6, 0.88);
    color: #fff;
}

.badge-contra-entrega {
    background: rgba(1, 33, 71, 0.88);
    color: #fff;
}

.badge-fulfillment {
    background: rgba(20, 20, 20, 0.80);
    color: #fff;
}

.badge-cobertura {
    background: rgba(10, 90, 200, 0.80);
    color: #fff;
}

/* --- Carousel Navigation Arrows --- */
.novedades-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

.novedades-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(249, 124, 6, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.novedades-nav-prev {
    left: 10px;
}

.novedades-nav-next {
    right: 10px;
}

/* --- Suggestion Banner (Premium) --- */
.novedades-suggestion-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, #032d5e 60%, #054a8c 100%);
    border-radius: 20px;
    padding: 22px 28px;
    box-shadow: 0 12px 40px rgba(1, 33, 71, 0.22);
}

.suggestion-bg-decor {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 50%, rgba(249, 124, 6, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(249, 124, 6, 0.10) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
    pointer-events: none;
}

.suggestion-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.suggestion-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.suggestion-icon-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(249, 124, 6, 0.18);
    border: 1.5px solid rgba(249, 124, 6, 0.35);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.suggestion-icon-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(249, 124, 6, 0.25);
    animation: pulse-ring 2.2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.suggestion-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.97rem;
    color: #ffffff;
    margin: 0 0 3px;
    line-height: 1.3;
}

.suggestion-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.60);
    margin: 0;
    line-height: 1.4;
}

.btn-suggestion-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.84rem;
    padding: 11px 22px;
    white-space: nowrap;
    transition: var(--transition-saas);
    box-shadow: 0 4px 18px rgba(249, 124, 6, 0.35);
    text-decoration: none;
}

.btn-suggestion-send:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(249, 124, 6, 0.45);
}

.suggestion-arrow {
    transition: transform 0.25s ease;
}

.btn-suggestion-send:hover .suggestion-arrow {
    transform: translateX(4px);
}

/* --- Content Category Cards (Premium) --- */
.novedad-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.novedad-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
}

.cat-number {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-gray);
    opacity: 0.5;
}

.cat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.novedad-category-card:hover .cat-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.cat-text {
    flex: 1;
}

.cat-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--secondary);
    margin: 0 0 3px;
    line-height: 1.3;
}

.cat-desc {
    font-size: 0.73rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.cat-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 0 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.novedad-category-card:hover .cat-accent-bar {
    width: 100%;
}

/* Color variants */
.novedad-category-card.cat-orange .cat-icon-wrap {
    background: rgba(249, 124, 6, 0.12);
    color: var(--primary);
}

.novedad-category-card.cat-orange .cat-number {
    color: var(--primary);
}

.novedad-category-card.cat-orange:hover {
    border-color: rgba(249, 124, 6, 0.4);
    box-shadow: 0 14px 36px rgba(249, 124, 6, 0.12);
}

.novedad-category-card.cat-orange .cat-accent-bar {
    background: linear-gradient(90deg, var(--primary), #ffab40);
}

.novedad-category-card.cat-blue .cat-icon-wrap {
    background: rgba(249, 124, 6, 0.12);
    color: var(--primary);
}

.novedad-category-card.cat-blue .cat-number {
    color: var(--primary);
}

.novedad-category-card.cat-blue:hover {
    border-color: rgba(1, 33, 71, 0.25);
    box-shadow: 0 14px 36px rgba(1, 33, 71, 0.08);
}

.novedad-category-card.cat-blue .cat-accent-bar {
    background: linear-gradient(90deg, var(--secondary), #1a6fc4);
}

/* --- Responsive: smaller screens show 1.5 cards --- */
@media (max-width: 600px) {
    .novedades-card-v2 {
        flex: 0 0 80vw;
    }

    .novedades-media-wrapper {
        height: 400px;
    }

    .novedades-nav-btn {
        display: none;
    }

    .suggestion-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-suggestion-send {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   TARIFARIO PREMIUM
   ========================================================================== */
.tarifario-premium-card {
    background: var(--white);
    border-radius: var(--radius-saas);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tarifario-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0 0 6px;
}

.tarifario-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.tarifario-table {
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 24px;
}

.tarifario-table-row {
    border-bottom: 1px solid #eef2f6;
    min-height: 64px;
    background: var(--white);
    transition: background 0.2s ease;
}

.tarifario-table-row:not(.header-row):hover {
    background: #fafbfc;
}

.tarifario-table-row:last-child {
    border-bottom: none;
}

.tarifario-table-row.header-row {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.tarifario-table-row.header-row .col-zona,
.tarifario-table-row.header-row .col-distritos,
.tarifario-table-row.header-row .col-tarifa {
    padding: 14px 20px;
}

.col-zona {
    width: 12%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-distritos {
    flex-grow: 1;
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--secondary);
    line-height: 1.5;
}

.col-tarifa {
    width: 22%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zona-number {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.zona-number.zona-1 {
    background-color: #e8f9ee;
    color: #10b981;
}

.zona-number.zona-2 {
    background-color: #e0f2fe;
    color: #0284c7;
}

.zona-number.zona-3 {
    background-color: #fef3c7;
    color: #d97706;
}

.zona-number.zona-4 {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.zona-number.zona-5 {
    background-color: #fee2e2;
    color: #ef4444;
}

.tarifa-price {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.tarifario-footer {
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    margin: 24px -32px -32px -32px;
    padding: 16px 32px;
    border-radius: 0 0 var(--radius-saas) var(--radius-saas);
}

.tarifario-footer>div {
    padding: 8px 12px;
}

.tarifario-footer-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #e0f2fe;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.tarifario-footer h6 {
    font-size: 0.78rem;
    color: var(--secondary);
    font-weight: 700;
}

.tarifario-footer p {
    font-size: 0.68rem;
    color: var(--text-gray);
}

/* Desktop dividers (>= 992px) */
@media (min-width: 992px) {
    .tarifario-footer>div:not(:last-child) {
        border-right: 1px solid #e2e8f0;
    }
}

/* Mobile/Tablet dividers (< 992px) */
@media (max-width: 991px) {
    .tarifario-footer>div {
        padding: 10px 8px;
    }

    /* Left column items get a vertical divider on the right */
    .tarifario-footer>div:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }

    /* Top row items get a horizontal divider on the bottom */
    .tarifario-footer>div:nth-child(-n+2) {
        border-bottom: 1px solid #e2e8f0;
    }
}

@media (max-width: 767px) {
    .tarifario-premium-card {
        padding: 20px 16px;
    }

    .tarifario-title {
        font-size: 1.4rem;
    }

    .tarifario-table-row {
        flex-direction: column;
        align-items: stretch !important;
        padding: 16px;
    }

    .col-zona {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .col-distritos {
        width: 100%;
        padding: 0;
        margin-bottom: 12px;
    }

    .col-tarifa {
        width: 100%;
        justify-content: space-between;
        border-top: 1px dashed #eef2f6;
        padding-top: 12px;
    }

    .tarifa-price {
        font-size: 1.2rem;
    }

    .tarifario-footer {
        margin: 20px -16px -20px -16px;
        padding: 16px;
    }
}

.recojo-gratis-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #e86a00 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 124, 6, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recojo-gratis-banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(249, 124, 6, 0.3);
}

/* ==========================================================================
   SECCIÓN CARGA Y MERCADERÍA
   ========================================================================== */
.carga-section {
    position: relative;
    background-image: url('../img/camioneta.jpeg');
    background-size: cover;
    background-position: left;
    border-radius: var(--radius-saas);
    overflow: hidden;
    box-shadow: var(--shadow-saas);
    min-height: 520px;
    display: flex;
    align-items: center;
}

.carga-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0.85) 29%, rgba(255, 255, 255, 0) 75%);
    z-index: 1;
}

.carga-content-wrap {
    position: relative;
    z-index: 2;
    padding: 50px 45px;
    max-width: 55%;
}

.carga-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.carga-title span {
    color: var(--primary);
}

.carga-desc {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 480px;
}

.carga-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    max-width: 480px;
}

.carga-feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carga-feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(249, 124, 6, 0.25);
    background-color: rgba(249, 124, 6, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.carga-feature-item:hover .carga-feature-icon-circle {
    transform: translateY(-5px);
    background-color: rgba(249, 124, 6, 0.08);
}

.carga-feature-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

.carga-feature-subtext {
    font-size: 0.65rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.carga-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #e06a00 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(249, 124, 6, 0.25);
    border: none;
    transition: all 0.3s ease;
}

.carga-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 124, 6, 0.35);
}

/* Floating Card at bottom right */
.carga-floating-card {
    position: absolute;
    bottom: 30px;
    right: 40px;
    background-color: var(--secondary);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(1, 33, 71, 0.25);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 320px;
}

.carga-floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.carga-floating-text-wrap {
    display: flex;
    flex-direction: column;
}

.carga-floating-title-sec {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
    font-family: var(--font-body);
}

.carga-floating-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2px 0;
}

.carga-floating-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .carga-section {
        min-height: auto;
        flex-direction: column;
        background-position: center top;
        background-size: cover;
    }

    .carga-gradient-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .carga-content-wrap {
        max-width: 100%;
        padding: 280px 24px 40px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .carga-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .carga-features-grid {
        margin-left: auto;
        margin-right: auto;
    }

    .carga-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0 auto;
    }
}

@media (max-width: 575px) {
    .carga-title {
        font-size: 1.8rem;
    }

    .carga-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .carga-content-wrap {
        padding-top: 200px;
    }
}