/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --bs-primary: #0f7a80;
    --bs-primary-rgb: 15, 122, 128;
    --dark-bg: #11787d;
    --dark-surface: #0c5f63;
    --brand-turquoise: #6ec4c8;
    --brand-cyan: #2bb7e0;
    --brand-blue: #3f8fd0;
    --brand-gray: #9d9d9c;
    --header-grad: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-turquoise) 100%);
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #47b2e4;
    text-decoration: none;
}

a:hover {
    color: #13338a;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background-color: var(--brand-turquoise);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.6s ease-out;
}

.preloader-spinner {
    width: 5.5rem;
    height: 5.5rem;
    border: 4px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: animate-preloader 1s linear infinite;
}

@media (max-width: 575.98px) {
    .preloader-spinner { width: 5rem; height: 5rem; border-width: 3px; }
    #preloader img { width: 2.2rem; }
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.35s ease, background 0.35s ease;
    background-image: var(--header-grad);
}

#header.header-scrolled,
#header.header-inner-pages {
    background-image: var(--header-grad);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.13);
}

/* ---- Barra superior (TRM / IVA-USD / Login / Banderas) ---- */
#header .header-topbar {
    padding: 7px 0;
    background: rgba(0, 0, 0, 0.06);
}

#header .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px clamp(12px, 2vw, 26px);
}

#header .topbar-controls {
    align-items: center;
    gap: clamp(10px, 1.6vw, 22px);
}

#header .topbar-trm {
    color: #fff;
    font-size: clamp(11px, 1.1vw, 13px);
    white-space: nowrap;
}

#header .topbar-flags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#header .topbar-flags img {
    height: clamp(16px, 1.6vw, 20px);
    width: auto;
    display: block;
    border-radius: 2px;
}

#header .topbar-login .linkIcon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

#header .topbar-login .linkIcon i {
    font-size: 15px;
}

#header .topbar-login .linkIcon small {
    font-size: 13px;
}

#header .topbar-login .linkIcon:hover {
    background: #fff;
    color: var(--bs-primary);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

/* ---- Logo centrado ---- */
#header .header-main {
    padding: clamp(10px, 1.8vw, 18px) 0 clamp(4px, 1vw, 10px);
    text-align: center;
}

#header .logo {
    display: inline-block;
    margin: 0;
}

#header .logo img {
    height: clamp(46px, 6vw, 78px);
    width: auto;
}

/* ---- Fila de navegación ---- */
#header .header-nav {
    padding-bottom: clamp(8px, 1.4vw, 14px);
}

#header .header-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 24px);
}

#header .header-nav .navbar {
    margin: 0 auto;
}

#header .header-nav .navbar ul {
    justify-content: center;
    flex-wrap: wrap;
}

#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a,
#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a:focus {
    padding: 8px clamp(8px, 1.2vw, 18px);
    font-size: clamp(13px, 1.1vw, 15px);
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #fff;
    position: relative;
}

#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: width .25s ease;
}

#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a:hover::after,
#header .header-nav .navbar:not(.navbar-mobile) > ul > li:hover > a::after,
#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a.active::after {
    width: 60%;
}

#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a:hover,
#header .header-nav .navbar:not(.navbar-mobile) > ul > li:hover > a,
#header .header-nav .navbar:not(.navbar-mobile) > ul > li > a.active {
    color: #fff;
}

/* ---- Botón Ver catálogo ---- */
#header .btn-catalog {
    flex: 0 0 auto;
    align-items: center;
    background: #fff;
    color: var(--bs-primary);
    font-weight: 700;
    font-size: clamp(13px, 1.1vw, 15px);
    padding: 9px clamp(16px, 1.6vw, 26px);
    border-radius: 50px;
    white-space: nowrap;
    transition: all .3s ease;
}

#header .btn-catalog:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    #header .header-nav-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
    }
    #header .header-nav .navbar {
        grid-column: 2;
        margin: 0;
    }
    #header .btn-catalog {
        grid-column: 3;
        justify-self: end;
    }
}

/* ---- Responsive header ---- */
@media (max-width: 991px) {
    #header .header-nav {
        padding: 0;
    }
    #header .header-nav .navbar {
        margin: 0;
    }
    #header .header-nav-inner {
        min-height: 0;
    }
    #header .topbar-inner {
        justify-content: center;
    }
    #header .header-main .container {
        position: relative;
    }
    #header .header-main .mobile-nav-toggle {
        position: absolute;
        top: 50%;
        right: calc(var(--bs-gutter-x, 1.5rem) * .5);
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    #header .header-main {
        text-align: left;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #212F3D ;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 6px 15px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #31a9e1;
}

.navbar .dropdown ul {
    display: none;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 8px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 50, 70, 0.16);
    transition: opacity 0.25s, visibility 0.25s;
    border-radius: 14px;
}

.navbar .dropdown ul li {
    min-width: 230px;
}

.navbar .dropdown ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    margin: 1px 0;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #25323b;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.navbar .dropdown ul a i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--bs-primary);
    background: rgba(110, 196, 200, 0.16);
}

.navbar .dropdown>ul.dropdown-active {
    display: block;
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .toggle-dropdown.open {
    transform: rotate(180deg);
}

.navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    max-height: none;
    overflow: visible;
    margin: 4px 0 6px 8px;
    padding: 4px 0 4px 10px;
    box-shadow: none;
    border-radius: 0;
    border-left: 2px solid var(--brand-turquoise);
    opacity: 1;
    visibility: visible;
    background: transparent;
}

.navbar .dropdown .dropdown ul a {
    font-size: 13px;
    color: #5b6770;
}

.navbar .dropdown .dropdown>ul.dropdown-active {
    display: block;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown>ul.dropdown-active {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(20, 40, 60, 0.55);
    transition: 0.3s;
    z-index: 1001;
}

body.drawer-open .cont-btn-car,
body.drawer-open .float-whatsapp,
body.drawer-open .chat_on,
body.drawer-open #tooltip_chat {
    display: none;
}

#header .header-main .mobile-nav-toggle.bi-x {
    position: fixed;
    top: 18px;
    right: 18px;
    transform: none;
    color: var(--bs-primary);
    z-index: 1002;
}

/* Drawer: panel deslizante desde la derecha */
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(84%, 320px);
    padding: 64px 0 24px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    transition: 0.3s;
}

/* Extras del drawer (banderas / TRM) — solo móvil */
.navbar-mobile .drawer-flags {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 4px;
    margin-top: 6px;
    border-top: 1px solid #eef1f4;
}

.navbar-mobile .drawer-flags img {
    height: 20px;
    width: auto;
    border-radius: 2px;
}

.navbar-mobile .drawer-trm {
    padding: 10px 20px 0;
    color: var(--brand-gray);
    font-size: 13px;
    font-weight: 600;
}

.navbar-mobile .drawer-switches {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 16px 20px 8px;
    color: #37517e;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #37517e;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.navbar .toggle-dropdown {
    cursor: pointer;
}

.navbar-mobile .dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.navbar-mobile .toggle-dropdown {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    color: var(--bs-primary);
    background-color: rgba(15, 122, 128, 0.12);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar-mobile .toggle-dropdown.open {
    color: #fff;
    background-color: var(--bs-primary);
    transform: rotate(180deg);
}

.navbar-mobile .dropdown a span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 80vh;
    background: #37517e;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #47b2e4;
}

#hero .btn-get-started:hover {
    background: #209dd8;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: #47b2e4;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: clip;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 15px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    color: #37517e;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Blog (listado de publicaciones)
--------------------------------------------------------------*/
#contentBlogs {
    padding: clamp(24px, 4vw, 48px) 0;
}

.blog-divider {
    border: 0;
    height: 4px;
    width: min(220px, 60%);
    margin: clamp(18px, 3vw, 28px) auto clamp(8px, 1.5vw, 14px);
    background: var(--header-grad);
    border-radius: 999px;
    opacity: 1;
}

.blog-banner {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: clamp(20px, 3vw, 36px);
    box-shadow: 0 10px 28px rgba(20, 50, 70, 0.10);
}

.blog-banner img {
    width: 100%;
    height: clamp(160px, 28vw, 360px);
    object-fit: cover;
    display: block;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vw, 22px);
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    min-height: clamp(160px, 20vw, 210px);
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 50, 70, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 28px rgba(20, 50, 70, 0.12);
    transform: translateY(-2px);
}

.blog-card-thumb {
    flex: 0 0 clamp(150px, 30vw, 280px);
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(12px, 1.8vw, 18px) clamp(14px, 2vw, 20px) clamp(12px, 1.8vw, 18px) 0;
}

.blog-card-title {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    color: #0b2a3a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    margin: 0;
    font-size: clamp(13px, 1.1vw, 15px);
    color: #5a6b75;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.blog-card-date {
    font-size: 12.5px;
    color: var(--brand-gray);
}

.blog-card-date i {
    color: var(--brand-turquoise);
    margin-right: 4px;
}

.blog-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--header-grad);
    color: #fff;
    font-weight: 600;
    font-size: clamp(12.5px, 1vw, 14px);
    padding: 7px clamp(14px, 1.6vw, 18px);
    border-radius: 50px;
    white-space: nowrap;
    transition: gap 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-more i {
    transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-more {
    box-shadow: 0 6px 16px rgba(43, 183, 224, 0.35);
}

.blog-card:hover .blog-card-more i {
    transform: translateX(3px);
}

@media (max-width: 575.98px) {
    .blog-card {
        flex-direction: column;
    }
    .blog-card-thumb {
        flex-basis: auto;
    }
    .blog-card-thumb img {
        height: clamp(160px, 44vw, 220px);
    }
    .blog-card-body {
        padding: 0 16px 16px;
    }
}

.blog-article {
    max-width: 860px;
    margin: 0 auto;
}

.blog-article-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    color: #0b2a3a;
    margin: 0 0 14px;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: var(--brand-gray);
    margin-bottom: clamp(16px, 2.4vw, 26px);
}

.blog-article-meta i {
    color: var(--brand-turquoise);
    margin-right: 5px;
}

.blog-article-cover {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: clamp(18px, 2.6vw, 30px);
    box-shadow: 0 10px 28px rgba(20, 50, 70, 0.10);
}

.blog-article-cover img {
    width: 100%;
    height: clamp(200px, 34vw, 440px);
    object-fit: cover;
    display: block;
}

.blog-article-content {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.8;
    color: #3f4d56;
}

.blog-article-content p {
    margin-bottom: 1rem;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 16px auto;
    display: block;
}

.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: #0b2a3a;
    font-weight: 700;
    margin: 1.4rem 0 0.8rem;
}

.blog-article-content a {
    color: var(--brand-blue);
    text-decoration: underline;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 1rem 1.2rem;
}

.blog-latest {
    margin-top: 0;
}

.blog-mini {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 50, 70, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-mini:hover {
    box-shadow: 0 12px 26px rgba(20, 50, 70, 0.12);
    transform: translateY(-3px);
}

.blog-mini-thumb {
    overflow: hidden;
}

.blog-mini-thumb img {
    width: 100%;
    height: clamp(130px, 14vw, 160px);
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-mini:hover .blog-mini-thumb img {
    transform: scale(1.06);
}

.blog-mini-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px 14px;
}

.blog-mini-title {
    margin: 0;
    font-size: clamp(14px, 1.1vw, 15.5px);
    font-weight: 700;
    color: #0b2a3a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-mini-date {
    margin-top: auto;
    font-size: 12px;
    color: var(--brand-gray);
}

.blog-mini-date i {
    color: var(--brand-turquoise);
    margin-right: 4px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding: 12px 0;
    text-align: center;
}

.clients .clients-slider {
    padding: 20px 0 44px 0;
}

.clients .swiper-slide {
    height: 140px;
}

.clients .swiper-slide img {
    max-width: 92%;
    max-height: 105px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.clients .swiper-slide img:hover {
    transform: scale(1.08);
}

.clients .swiper-slide .maker-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.clients .swiper-slide .maker-link:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 3px;
    border-radius: 6px;
}

.clients .swiper-pagination {
    bottom: 6px;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    background: #c4ccd6;
    opacity: 1;
    transition: background 0.3s, width 0.3s;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--bs-primary);
    width: 22px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .clients .swiper-slide {
        height: 180px;
    }
    .clients .swiper-slide img {
        max-height: 150px;
        max-width: 72%;
    }
}


/*--------------------------------------------------------------
# Categories grid
--------------------------------------------------------------*/

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.6vw, 22px);
}

.category-cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 3 / 2;
    padding: clamp(12px, 2vw, 20px);
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(20, 50, 70, 0.10);
}

.category-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.58) 100%);
    transition: background 0.45s ease;
}

.category-cover-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 1.7vw, 22px);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.category-cover:hover .category-cover-img {
    opacity: 0.85;
    transform: scale(1.06);
}

.category-cover:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}


/*--------------------------------------------------------------
# Product detail actions
--------------------------------------------------------------*/

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1vw, 12px);
}

.product-actions .btn-action {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px clamp(12px, 1.4vw, 18px);
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: clamp(13px, 1vw, 14px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-actions .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 50, 70, 0.18);
    color: #fff;
}

.product-actions .btn-asesor,
.product-actions .btn-cart {
    background: var(--header-grad);
}

.product-actions .btn-login {
    background: transparent;
    border: 2px solid var(--brand-turquoise);
    color: var(--bs-primary);
}

.product-actions .btn-login:hover {
    background: var(--brand-turquoise);
    color: #fff;
}

.product-actions .btn-action:disabled,
.product-actions .btn-action[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 575px) {
    .product-actions .btn-action {
        flex: 1 1 100%;
    }
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 14px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 16px);
    padding: clamp(12px, 2.2vw, 18px);
    border: 1px solid #e6ecee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(20, 50, 70, 0.04);
    transition: transform 0.18s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.doc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 50, 70, 0.1);
    border-color: var(--brand-turquoise);
}

.doc-icon {
    width: clamp(40px, 8vw, 52px);
    height: clamp(40px, 8vw, 52px);
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(15, 122, 128, 0.08);
    color: var(--bs-primary);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    flex-shrink: 0;
}

.doc-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.doc-name {
    font-weight: 600;
    color: #1f2d33;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    word-break: break-word;
}

.doc-meta {
    font-size: 0.8rem;
    color: var(--brand-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
    padding: clamp(8px, 1.6vw, 10px) clamp(14px, 2.4vw, 20px);
    border: none;
    border-radius: 10px;
    background: var(--header-grad);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.18s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.doc-download:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(20, 50, 70, 0.18);
}

.doc-download:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

@media (max-width: 575px) {
    .doc-card {
        flex-wrap: wrap;
    }

    .doc-download {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
}


/*--------------------------------------------------------------
# Support page (servicio técnico)
--------------------------------------------------------------*/

.support-section {
    padding: clamp(36px, 5vw, 70px) 0;
}

.support-title {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    color: var(--brand-cyan);
    margin-bottom: clamp(14px, 2vw, 20px);
}

.support-text {
    color: #5b6770;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.7;
    margin-bottom: clamp(18px, 2.4vw, 28px);
}

.btn-support-mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--header-grad);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 9px 26px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-support-mail:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 50, 70, 0.18);
}

.support-social {
    display: flex;
    gap: 18px;
    margin-top: clamp(16px, 2vw, 24px);
}

.support-social a {
    color: var(--brand-cyan);
    font-size: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.support-social a:hover {
    transform: translateY(-2px);
    color: #0c5f63;
}

.support-form .form-control,
.support-form .form-select {
    background: #f3f5f7;
    border: 1px solid #e6eaee;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: clamp(13px, 1vw, 15px);
}

.support-form .form-control:focus,
.support-form .form-select:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 0.15rem rgba(43, 183, 224, 0.18);
}

.support-label {
    display: block;
    margin-bottom: 6px;
    color: #5b6770;
    font-size: 13px;
}

.btn-support-submit {
    width: 100%;
    border: 0;
    background: var(--header-grad);
    color: #fff;
    font-weight: 700;
    font-size: clamp(14px, 1.1vw, 16px);
    border-radius: 8px;
    padding: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-support-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 122, 128, 0.25);
}


/*--------------------------------------------------------------
# Contact advisers + map
--------------------------------------------------------------*/

.advisers-grid {
    margin-top: clamp(10px, 2vw, 22px);
}

.adviser-card {
    text-align: center;
    padding: clamp(10px, 1.5vw, 18px);
    margin-bottom: clamp(20px, 3vw, 34px);
}

.adviser-photo {
    width: clamp(120px, 12vw, 160px);
    height: clamp(120px, 12vw, 160px);
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-cyan);
    padding: 4px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 50, 70, 0.12);
}

.adviser-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.adviser-name {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: clamp(17px, 1.5vw, 20px);
    color: #25323b;
    margin-bottom: 6px;
}

.adviser-phone,
.adviser-email {
    display: block;
    color: var(--brand-cyan);
    text-decoration: none;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.adviser-phone:hover,
.adviser-email:hover {
    color: #0c5f63;
}

.adviser-phone i {
    margin-right: 4px;
}

.map-wrapper {
    margin-top: clamp(14px, 2vw, 22px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 50, 70, 0.14);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: clamp(320px, 45vw, 480px);
    border: 0;
}


/*--------------------------------------------------------------
# About page
--------------------------------------------------------------*/

.about-section {
    padding: clamp(36px, 5vw, 70px) 0;
}

.about-section-bg {
    background: #f6f9fb;
}

.about-title {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.2;
    color: var(--brand-cyan);
    margin-bottom: clamp(14px, 2vw, 22px);
}

.about-content {
    color: #5b6770;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.75;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 14px 34px rgba(20, 50, 70, 0.16);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.8vw, 24px);
}

.why-card {
    background: var(--header-grad);
    color: #fff;
    text-align: center;
    border-radius: 14px;
    padding: clamp(20px, 2.2vw, 30px);
    box-shadow: 0 10px 26px rgba(15, 122, 128, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(15, 122, 128, 0.28);
}

.why-card h3 {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    margin: 0;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.4vw, 34px);
}

.timeline-item {
    text-align: center;
}

.timeline-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 12px;
    background: var(--brand-gray);
    box-shadow: 0 8px 20px rgba(20, 50, 70, 0.10);
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-year {
    position: relative;
    margin-top: clamp(22px, 2.6vw, 32px);
    padding-top: 24px;
    border-top: 2px solid #dfe5ea;
    color: var(--brand-cyan);
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 24px);
}

.timeline-year::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-cyan);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(43, 183, 224, 0.25);
}

.timeline-item:not(:last-child) .timeline-year::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 100%;
    width: clamp(16px, 2.4vw, 34px);
    height: 2px;
    background: #dfe5ea;
}

.timeline-item p {
    margin: 10px 0 0;
    color: #5b6770;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .timeline-item:not(:last-child) .timeline-year::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #37517e;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }
    .why-us .content {
        padding-top: 30px;
    }
    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
    font-family: "Poppins", sans-serif;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #37517e;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #47b2e4;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #47b2e4;
    color: #fff;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
}

.team .member .pic2 {
    overflow: hidden;
    height: 200px;
}

.member .pic3 {
    overflow: hidden;
    height: 80px;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37517e;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: #ffffff;
}

.team .member .social a+a {
    margin-left: 8px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #47b2e4;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured {
    border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #37517e;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #47b2e4;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form label {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #47b2e4;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #209dd8;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #37517e;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

body:has(.footer-band) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

body:has(.footer-band) #main {
    flex: 1 0 auto;
}

body:has(.footer-band) #footer {
    flex-shrink: 0;
}

#footer {
    font-size: 14px;
    background: #ebebeb;
}

#footer .footer-band {
    padding: clamp(28px, 4vw, 44px) 0;
    background: #fff;
    color: #5a5a5a;
    border-top: 1px solid #e6e9ec;
}

#footer .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

#footer .footer-logo {
    width: clamp(150px, 16vw, 190px);
    height: auto;
    display: block;
}

#footer .footer-flags {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

#footer .footer-flags img {
    height: 22px;
    width: auto;
    object-fit: contain;
    border-radius: 2px;
    display: block;
}

#footer .footer-title {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 19px);
    margin: 0 0 16px 0;
}

#footer .footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

#footer .footer-social a {
    color: #3a4750;
    font-size: 20px;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

#footer .footer-social a:hover {
    color: var(--brand-blue);
    transform: translateY(-2px);
}

#footer .footer-email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #5a5a5a;
    font-size: 15px;
    text-decoration: none;
    transition: color .25s ease;
}

#footer .footer-email i {
    font-size: 18px;
    color: var(--brand-blue);
}

#footer .footer-email:hover {
    color: var(--brand-blue);
}

#footer .footer-policies {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-policies li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}

#footer .footer-policies li i {
    color: var(--brand-cyan);
    font-size: 14px;
}

#footer .footer-policies a {
    color: #5a5a5a;
    text-decoration: none;
    transition: color .25s ease;
}

#footer .footer-policies a:hover {
    color: var(--brand-blue);
}

@media (max-width: 768px) {
    #footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    #footer .footer-logo {
        margin: 0 auto;
    }
    #footer .footer-flags,
    #footer .footer-social {
        justify-content: center;
    }
    #footer .footer-policies li {
        justify-content: center;
    }
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #444444;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #47b2e4;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #209dd8;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #37517e;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #47b2e4;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #47b2e4;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }
    #footer .credits {
        padding-top: 4px;
    }
}

.date_content {
    display: inline-flex;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e8;
    border-top: 1px solid #e9e9e8;
    margin: 10px 0;
}

.date_content i {
    color: #4f5fb8;
    margin-right: 10px;
}

.date_content p {
    margin-right: 20px;
}

.date_content4 p {
    margin-right: 12px;
}

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

#mainCarousel {
    padding: 0;
    
}

#mainSearch {
    background-color: rgb(255, 255, 255, 0.1)
}

.products-search {
    position: relative;
    margin-bottom: clamp(14px, 2vw, 22px);
}

.products-search .input-group {
    width: 100%;
}

.products-search .form-control {
    background: #fff;
    border: 1px solid var(--brand-turquoise);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    color: #2a3b45;
    font-size: clamp(14px, 1.4vw, 16px);
    padding: clamp(9px, 1.4vw, 13px) clamp(16px, 2vw, 22px);
}

.products-search .form-control:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 0.18rem rgba(110, 196, 200, 0.25);
}

.products-search .form-control::placeholder {
    color: var(--brand-gray);
}

.products-search .btn {
    background: var(--header-grad);
    color: #fff;
    border: 0;
    border-radius: 0 50px 50px 0;
    padding-inline: clamp(16px, 2.4vw, 26px);
    font-size: clamp(15px, 1.6vw, 18px);
}

#resultSearch {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2000;
    margin-top: 6px;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(20, 50, 70, 0.16);
}

.imgPortada{
    max-width: 100%;
    aspect-ratio: 3 / 1;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    background-color: #0b1c2e;
    background-image: var(--slider-bg);
}

@media (max-width: 767px) {
    .imgPortada {
        aspect-ratio: 4 / 5;
        background-image: var(--slider-bg-movil);
    }
}

#mainCarousel .carousel-caption {
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 14px rgba(0, 0, 0, 0.6);
}

#mainCarousel .carousel-caption:has(.slider-cta) {
    bottom: clamp(1.75rem, 3vw, 2.5rem);
}

#mainCarousel .carousel-caption h5 {
    font-size: clamp(1.05rem, 2.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

#mainCarousel .carousel-caption p {
    font-size: clamp(0.78rem, 1.4vw, 1.1rem);
    margin-bottom: 0;
}

.carousel-caption .slider-cta {
    margin-top: clamp(8px, 1.6vw, 16px);
}

.slider-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(7px, 1.4vw, 12px) clamp(14px, 2.6vw, 26px);
    border-radius: 999px;
    background: var(--header-grad);
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.78rem, 1.7vw, 1rem);
    box-shadow: 0 6px 18px rgba(11, 28, 46, 0.3);
    transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.slider-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 28, 46, 0.38);
}

.slider-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    #mainCarousel .carousel-caption h5 {
        font-size: clamp(0.95rem, 4.5vw, 1.35rem);
    }

    #mainCarousel .carousel-caption p {
        font-size: clamp(0.7rem, 3vw, 0.9rem);
    }

    .slider-cta {
        gap: 5px;
        padding: 5px 12px;
        font-size: 0.72rem;
    }

    .slider-cta i {
        display: none;
    }
}

#linkKondory{
    color: white;
}

#linkKondory:hover{
    color: black;
}

.cont-btn-car {
    position: fixed;
    right: clamp(12px, 3vw, 18px);
    bottom: clamp(12px, 3vw, 18px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
}

#btn-car{
    width: 44px;
    height: 44px;
    padding: 3px;
    background: var(--header-grad);
    border: 1px solid #fff;
    color: #fff;
}

.float-whatsapp {
    position: fixed;
    right: clamp(12px, 3vw, 18px);
    bottom: calc(clamp(12px, 3vw, 18px) + 88px + 2 * clamp(8px, 2vw, 12px));
    z-index: 2000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(20, 50, 70, 0.22);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.float-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 50, 70, 0.3);
}

.float-whatsapp img {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
}

.linkIcon{
    color: white;
}

.linkIcon:hover{
    color: #212F3D;
}

.notView{
    display: none;
}

#btnPopUp{
    position: absolute;
    background-color: white;
    top: 2px;
    right: 2px;
}

#btnCatalog{
    position: absolute;
    background-color: white;
    top: 2px;
    right: 2px;
}

#btnCloseImg{
    position: absolute;
    top: 4px;
    right: 4px;
}

.titleCardBlack{
    color: black;
}

.titleBrand{
    color: #343a40;
}

.titleBrandCard{
    color: #6C757D;
}

/* Estilo para la imagen que tendrá el efecto de zoom */
.zoom-img {
    transition: transform 0.3s; /* Transición suave para el efecto de zoom */
  }

  /* Estilo para cuando se hace hover sobre la imagen */
  .zoom-img:hover {
    transform: scale(1.1); /* Escalar la imagen al 110% del tamaño original */
  }

/*--------------------------------------------------------------
# Products / Catalog
--------------------------------------------------------------*/
.products-section {
  background-color: #f6f9ff;
}

/* Filtros */
.filters-sidebar {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 16px;
  height: 100%;
  max-height: calc(100dvh - 32px);
  overflow: hidden;
}

.filters-container {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  flex-shrink: 0;
}

.filters-title {
  margin: 0;
  color: #0c5f63;
  font-size: 1.1rem;
  font-weight: 600;
}

.filters-content {
  padding: 20px;
  height: 100%;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #0f7a80 #f1f1f1;
}

.filters-content::-webkit-scrollbar { width: 6px; }
.filters-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.filters-content::-webkit-scrollbar-thumb { background: #0f7a80; border-radius: 10px; opacity: .7; }
.filters-content::-webkit-scrollbar-thumb:hover { opacity: 1; }

.filter-group {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }

.filter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0c5f63;
  margin-bottom: 12px;
}

.filters-content .form-check { margin-bottom: 8px; }
.filters-content .form-check-label { font-size: 0.9rem; color: #444444; }
.filters-content .form-check-input:checked {
  background-color: #0f7a80;
  border-color: #0f7a80;
}
.filters-content .form-select:focus {
  border-color: #6ec4c8;
  box-shadow: 0 0 0 3px rgba(110, 196, 200, .25);
}
.filter-actions { flex-shrink: 0; }

/* Tarjetas de producto */
.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05), 0 4px 12px rgba(0, 0, 0, .08);
  transition: .3s ease-in-out;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 12px 20px rgba(0, 0, 0, .15);
}
.product-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: #ffffff;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform .3s ease;
}
.product-card:hover .product-image img { transform: scale(1.03); }
.product-info {
  padding: 16px;
  border-top: 1px solid #f3f4f6;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 6px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.product-title:hover { color: #0f7a80; }
.product-sku { font-size: 12px; color: #6b7280; margin-bottom: 2px; }
.product-brand {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
}
.product-brand:hover { color: #0f7a80; }
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: #0c5f63;
  margin-top: auto;
}

/* Paginación */
.products-pagination { margin-top: 24px; }
.products-pagination .pagination { justify-content: center; flex-wrap: wrap; }
.pagination .page-link { color: #0f7a80; border-color: #dee2e6; }
.pagination .page-item.active .page-link {
  background-color: #0f7a80;
  border-color: #0f7a80;
  color: #ffffff;
}
.pagination .page-link:hover {
  background-color: #0f7a80;
  border-color: #0f7a80;
  color: #ffffff;
}

/* Productos Destacados */
#newProducts { padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(28px, 4vw, 48px); }
#newProducts .featured-wrap {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: clamp(14px, 1.6vw, 18px);
    padding: clamp(16px, 2.4vw, 28px);
    box-shadow: 0 10px 30px rgba(20, 50, 70, 0.08);
}
#newProducts .carousel-inner { padding: 8px 6px; }
#newProducts .carousel-item > .row { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1rem; }
#newProducts .carousel-control-prev,
#newProducts .carousel-control-next {
    width: clamp(36px, 4vw, 46px);
    height: clamp(36px, 4vw, 46px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: var(--header-grad);
    box-shadow: 0 6px 16px rgba(20, 50, 70, 0.18);
    opacity: 1;
    transition: transform 0.25s ease, filter 0.25s ease;
}
#newProducts .carousel-control-prev { left: clamp(-8px, -0.6vw, 0px); }
#newProducts .carousel-control-next { right: clamp(-8px, -0.6vw, 0px); }
#newProducts .carousel-control-prev-icon,
#newProducts .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
    filter: none;
}
#newProducts .carousel-control-prev:hover,
#newProducts .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.06);
    filter: brightness(1.05);
}
#newProducts .featured-nav-mobile {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: #fff;
    background: var(--header-grad);
}

/* Responsive */
@media (max-width: 767px) {
  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1050;
    max-height: 100vh;
    border-radius: 0;
    overflow-y: auto;
  }
  .filters-sidebar.collapse.show { display: block !important; }
  .filters-content { max-height: none; overflow-y: visible; }
  .btn-close { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
}

/*--------------------------------------------------------------
# UI Components
--------------------------------------------------------------*/
/* Cards */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    transition: box-shadow 0.3s ease;
}
.card:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.18);
}
.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}
.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
}
.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}
.card-body {
    padding: 0 20px 20px 20px;
}
.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Close button */
.btn-close {
    background-size: 25%;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion (Bootstrap) */
.accordion-item {
    border: 1px solid #ebeef4;
}
.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}
.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}
.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #0f7a80;
}
.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Form inputs */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #dce0e8;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus,
.form-select:focus {
    border-color: #0f7a80;
    box-shadow: 0 0 0 3px rgba(15, 122, 128, 0.12);
}
.form-control::placeholder {
    color: #adb5bd;
}
.form-control[type="file"] {
    padding: 0;
    padding-right: 12px;
    overflow: hidden;
    line-height: 32px;
}
.form-control::file-selector-button {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-surface));
    color: #fff;
    border: none;
    border-right: 1px solid #dce0e8;
    border-radius: 0;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.3s ease;
}
.form-control::file-selector-button:hover {
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-bg));
}
select option:is(:checked, :hover) {
    background-color: var(--dark-bg) !important;
    color: #fff !important;
}

/* Select2 */
.select2-container .select2-selection {
    border-radius: 8px;
    border: 1px solid #dce0e8;
    min-height: 38px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.select2-container--focus .select2-selection,
.select2-container--open .select2-selection {
    border-color: var(--dark-bg) !important;
    box-shadow: 0 0 0 3px rgba(15, 122, 128, 0.12) !important;
}
.select2-dropdown {
    border-color: #dce0e8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.select2-search__field:focus {
    border-color: var(--dark-bg) !important;
    box-shadow: none !important;
}
.select2-results__option--highlighted,
.select2-results__option--selected {
    background-color: var(--dark-bg) !important;
    color: #fff !important;
}
.select2-results__option--highlighted *,
.select2-results__option--selected * {
    color: #fff !important;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}
.btn-primary {
    --bs-btn-bg: #0f7a80;
    --bs-btn-border-color: #0f7a80;
    --bs-btn-hover-bg: #094f54;
    --bs-btn-hover-border-color: #094f54;
    --bs-btn-active-bg: #094f54;
    --bs-btn-active-border-color: #073f43;
    --bs-btn-disabled-bg: #0f7a80;
    --bs-btn-disabled-border-color: #0f7a80;
    --bs-btn-focus-shadow-rgb: 15, 122, 128;
}
.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(15, 122, 128, 0.35);
    transform: translateY(-1px);
}
.btn-success:hover {
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.35);
    transform: translateY(-1px);
}
.btn-danger:hover {
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.35);
    transform: translateY(-1px);
}
.btn-warning:hover {
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.35);
    transform: translateY(-1px);
}
.btn-info {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    border-color: var(--dark-surface);
    color: #fff;
}
.btn-info:hover {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
    border-color: var(--dark-bg);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 122, 128, 0.4);
    transform: translateY(-1px);
}

/* Tables */
.table {
    border-radius: 8px;
    overflow: hidden;
}
.table thead th {
    background: #eef6f6;
    color: #012970;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #dce0e8;
    padding: 10px 14px;
}
.table tbody tr {
    transition: background-color 0.2s ease;
}
.table tbody tr:hover {
    background-color: #eef8f8;
}
.table tbody td {
    padding: 10px 14px;
    vertical-align: middle;
    font-size: 14px;
    color: #444;
}

/* Badges */
.badge {
    border-radius: 6px;
    font-weight: 500;
    padding: 5px 10px;
    font-size: 11px;
    letter-spacing: 0.3px;
}

/* Modals */
.modal-dialog:not(.modal-dialog-centered) {
    display: flex;
    align-items: flex-start;
    min-height: calc(100% - 1rem);
    padding-top: 8vh;
}
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.modal-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    border-bottom: none;
    padding: 16px 20px;
    border-radius: 12px 12px 0 0;
}
.modal-header .modal-title {
    font-weight: 600;
    color: #fff;
}
.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}
.modal-header .btn-close:hover {
    opacity: 1;
}
.modal-footer {
    border-top: 1px solid #ebeef4;
    padding: 12px 20px;
}

/*--------------------------------------------------------------
# Profile details
--------------------------------------------------------------*/
.profile-details .profile-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 12px 14px;
    background: #f8fafb;
    border: 1px solid #eef1f5;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.profile-details .profile-detail-item:hover {
    border-color: #cfe9ea;
    box-shadow: 0 2px 10px rgba(15, 122, 128, 0.08);
}
.profile-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(15, 122, 128, 0.1);
    color: #0f7a80;
    font-size: 18px;
}
.profile-detail-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.profile-detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #8a93a5;
}
.profile-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    word-break: break-word;
}

/*--------------------------------------------------------------
# Adviser cards (contacto)
--------------------------------------------------------------*/
.adviser-card {
    border-radius: 12px;
}
.adviser-card .card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}
.adviser-photo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 14px;
}
.adviser-name {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #012970;
    margin: 0 0 2px;
}
.adviser-charge {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #0f7a80;
    margin-bottom: 16px;
}
.adviser-info {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.adviser-info li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}
.adviser-info li:last-child {
    border-bottom: none;
}
.adviser-info li i {
    color: #0f7a80;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}
.adviser-info li span {
    word-break: break-word;
}
.adviser-card .btn-success {
    margin-top: auto;
}