/*==================================================
=                UP WEB MARKETING                  =
====================================================

 Empresa       : UP Web Marketing
 Sitio Oficial : https://upwebmkt.com/
 Desarrollador : Ulices Gutierrez
 Última edición: 20 Mayo 2026

 © 2026 UP Web Marketing
==================================================*/

:root {
    --bs-primary: #00d4e8;
    --bs-primary-rgb: 0, 212, 232;
    --bs-secondary: #ff3355;
    --teal: #00b4a6;
    --navy: #1a2f5e;
    --blue: #1565c0;
    --red: #e63946;
    --indigo: #6346e6;
    --light-bg: #f0f4fb;
    --blue-rgb: 21, 101, 192;
    --teal-rgb: 0, 180, 166;
    --indigo-rgb: 99, 70, 230;
}

body {
    font-family: "Nunito Sans", sans-serif;
    color: #444;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-teal {
    color: var(--teal);
}

.text-navy {
    color: var(--navy);
}

.text-blue {
    color: var(--blue) !important;
}

.text-red {
    color: var(--red);
}

.bg-teal {
    background-color: var(--teal);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-indigo {
    background-color: var(--indigo);
}

.bg-teal-transparent {
    background-color: rgb(var(--teal-rgb), 0.1);
    color: var(--teal);
}

.bg-blue-transparent {
    background-color: rgb(var(--blue-rgb), 0.1);
    color: var(--blue);
}

.btn {
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    color: white;
}

.btn-teal {
    background-color: var(--teal);
    border: 1.5px solid var(--teal);
    color: white;
}

.btn-teal:hover {
    background-color: #00968a;
    border-color: #00968a;
    color: white;
}

.btn-outline-teal {
    border-color: 1px solid var(--teal);
    color: var(--teal);
}

.btn-outline-teal:hover {
    background-color: var(--teal);
    color: white;
}

.btn-navy {
    background-color: var(--navy);
    color: white;
}

.btn-outline-navy {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: white;
}

.btn-blue {
    background-color: var(--blue);
    color: white;
}

.btn-blue:hover {
    background-color: var(--blue);
    color: white;
}

.btn-outline-blue {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-outline-blue:hover {
    background-color: var(--blue);
    color: white;
}

.btn-white {
    background-color: white;
    border: 1px solid white;
    color: var(--bs-primary);
}

.card {
    border-radius: 1rem;
    border: 1px solid #dde8f2;
    height: 100%;
}

.card-body {
    padding: 28px;
}

.card-footer {
    background-color: transparent;
    border: 0;
    padding: 0 28px 28px 28px;
}

.border-end-md {
    border-right: 1px solid #dee2e6 !important;
}

ul.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.custom-list li {
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-group-item.active {
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.list-group-item a {
    color: var(--bs-primary);
}

.list-group-item.active a {
    color: white;
}

/* .navbar-brand {
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.navbar-brand img {
    height: 5rem;
} */

.navbar-brand img {
    height: 5rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: #f0f4fb;
}

.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--light-bg);
}

.section-title {
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--navy);
}

.section-icon {
    font-size: 3rem;
    color: var(--bs-secondary);
}

footer {
    background-color: var(--navy);
    color: white;
    padding: 28px 0 16px;
}

footer a {
    color: white;
}

.footer-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    margin: 0 0 6px;
}

.footer-sub {
    font-size: 13px;
    color: #a8bfd8;
    margin: 0;
}

.footer-fine {
    font-size: 11px;
    color: #6b8aad;
    margin-top: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    position: relative;
    min-height: 600px;
    background: url(assets/images/backgrounds/bg-1.png) no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section ul.sol-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-section ul.sol-check li {
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-primary-dark {
    color: #0d2a5e;
}

.text-teal {
    color: #00a19a;
}

.floating-card {
    max-width: 205px;
    min-width: 180px;
    width: fit-content;
    background: white;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--teal);
}

.row-pain .col {
    position: relative;
}

.row-pain .col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 40%;
    width: 2px;
    background-color: #dee2e6;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.4rem;
    color: var(--teal);
}

.solutions ul,
.case-sec ul,
.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions ul li,
.case-sec ul li,
.list-check li {
    font-size: 13px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solutions ul li i,
.case-sec ul li i
.list-check li i {
    color: var(--teal);
    font-size: 14px;
    flex-shrink: 0;
}

.solutions .blue ul li i {
    color: var(--blue);
}

.sol-product-name {
    font-size: 12px;
    color: #666;
}

.sol-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 2px;
}

.sol-logo-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    background: #e0f7f5;
    color: var(--teal);
}

.sol-logo-badge.blue {
    background: #e3effc;
    color: var(--blue);
}

.sol-mockup-icon {
    font-size: 56px;
    color: var(--teal);
    opacity: 0.15;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.case-sec .card {
    border: none;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.case-sec .card img {
    object-fit: cover;
}

.case-sec h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
}

.case-sec h2 .no-lo {
    color: var(--red);
    display: block;
}

.case-sec ul li i {
    color: var(--teal);
}

.comparison-card .img-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-card .img-container .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    z-index: 10;
}

.arrow-circle {
    background-color: var(--navy);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-case-study .blue-wing {
    background-color: var(--navy);
    color: white;
    padding: 40px 40px 40px 10%;
}

.res-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.res-icon {
    font-size: 2.2rem;
}

.res-number {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    margin-bottom: 0.3rem;
}

.res-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.erp-manufactura .factory-img,
#checklist .factory-img {
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
}

.erp-manufactura .stats-floating-container,
#checklist .stats-floating-container {
    flex: 0 0 auto;
    padding: 0 5%;
}

.erp-manufactura .stats-card-light,
#checklist .stats-card-light{
    background-color: rgb(var(--teal-rgb), 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.erp-manufactura .stat-group,
#checklist .stat-group {
    margin-bottom: 20px;
}

.erp-manufactura .stat-val,
#checklist .stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.erp-manufactura .stat-desc,
#checklist .stat-desc {
    font-size: 0.75rem;
    color: #444;
    font-weight: 600;
    margin-top: 5px;
}

.erp-manufactura .checklist-icon,
#checklist .checklist-icon {
    font-size: 6.5rem;
    color: var(--teal);
}

.breadcrumb-flotante {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #dee2e6 !important;
    }

    .section-case-study .blue-wing {
        flex: 0 0 75%;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .stats-floating-container {
        flex: 0 0 25%;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 46%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%
        );
    }
}

@media (min-width: 992px) {
    .res-item:not(:last-child):after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 60%;
        width: 2px;
        background: #dee2e6;
    }
}
