@font-face {
    font-family: "OpenSans";
    src: url("../fonts/opensans/OpenSans-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/opensans/OpenSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/opensans/OpenSans-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik";
    src: url("../fonts/rubik/Rubik-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Rubik";
    src: url("../fonts/rubik/Rubik-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Rubik";
    src: url("../fonts/rubik/Rubik-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2a4a90;
    --secondary-color: #f0ca30;
    --terciary-color: #b21a1d;

    --text-color: #1e1e1e;
    --neutral-color: #ede0d4;
    --white: #ffffff;
    --black: #000000;

    --bg-light: #f9fafb;

    --gray-100: #f5f5f5;
    --gray-200: #eaeaea;
    --gray-300: #d6d6d6;
    --gray-400: #bdbdbd;
    --gray-500: #7a7a7a;
    --gray-600: #535353;
    --gray-700: #333333;

    --green-whatsapp: #25d366;

    --font-primary: "Rubik", sans-serif;
    --font-secondary: "OpenSans", sans-serif;

    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.5rem; /* 24px */
    --font-size-xl: 2.8rem;
    --font-size-xxl: 2.75rem; /* 48px */

    --border-radius-sm: 0.25rem; /* 4px */
    --border-radius-md: 0.5rem; /* 8px */
    --border-radius-lg: 0.875rem; /* 12px */
    --border-radius-xl: 1rem; /* 16px */
    --border-radius-full: 2rem;

    --filter-primary: brightness(0) saturate(100%) invert(23%) sepia(82%)
        saturate(798%) hue-rotate(188deg) brightness(96%) contrast(89%);
    --filter-secondary: brightness(0) saturate(100%) invert(77%) sepia(61%)
        saturate(400%) hue-rotate(3deg) brightness(105%) contrast(95%);
}

html {
    scroll-behavior: smooth;
}

* {
    font-family: "OpenSans", sans-serif;
}

/* === SKIP TO CONTENT (accesibilidad) === */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 10001;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
    color: var(--white);
}

/* === FOCUS VISIBLE GLOBAL (WCAG AA) === */
:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 3px;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* === INICIO UTILITARIOS === */

.bodyPag.scrollnone {
    overflow: hidden;
}

.bg-primary {
    background-color: var(--primary-color);
}
.bg-secondary {
    background-color: var(--secondary-color);
}
.bg-terciary {
    background-color: var(--terciary-color);
}
.bg-light {
    background-color: var(--bg-light);
}

.padding-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.heading-section {
    margin-bottom: 2rem;
}

.title-section {
    font-size: 1.875rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.description-section {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-page {
    overflow: hidden;
}

.container-page {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.container-text-page {
    color: var(--white);
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.wrapper-text-page a {
    color: var(--white);
    font-weight: 600;
}

.wrapper-text-page p {
    font-size: 1.125rem;
    text-wrap: pretty;
    text-align: justify;
}

.tag-text-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 1px solid var(--white);
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
}

.title-text-page {
    font-size: 2rem;
    line-height: 1.2;
}

.wrapper-image-page {
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    border-bottom-left-radius: 140px;
    width: 100%;
    max-height: 450px;
}

.svg-vertical {
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    height: 100%;
}

.svg-horizontal {
    position: absolute;
    left: -0.5px;
    right: -0.5px;
    bottom: -2px;
    width: 100%;
}

.primary-color {
    color: var(--primary-color);
}

.fw-bold {
    font-weight: bold;
}

/* === FIN UTILITARIOS === */

/* === INICIO HEADER === */
.header {
    --tw-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        var(--tw-shadow);
    z-index: 1000;
}

.nav-header-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
}

.item-nav-header-middle:first-child {
    display: flex;
    align-items: center;
    justify-content: start;
    max-width: 132px;
    min-width: 100px;
}

.link-header-logo {
    display: flex;
    margin-bottom: 0.5rem;
}

.img-header-logo {
    top: -2px;
    height: 50px;
    width: auto;
    object-fit: contain;
    position: relative;
}
.list-nav-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.link-nav-header {
    display: inline-block;
    border-radius: 0.5rem;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0.875rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.link-nav-header-icon {
    display: inline-block;
    padding: 0.875rem;
    width: 52px;
}

.btn-nav-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-xl);
    color: var(--white);
    line-height: 1.2;
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    text-wrap: nowrap;
    transition: all 0.3s;
}

.btn-nav-header:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* = inicio menu vertical = */

.has-menu-vertical {
    position: relative;
}

.menu-vertical {
    position: absolute;
    top: 100%;
    left: 13px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    box-shadow: 0 17px 15px -11px rgba(0, 0, 0, 0.2);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0.875rem 0.5rem;
    width: 230px;
    transition: all 0.3s;
}

.link-menu-vertical {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
    transition: all 0.3s;
}
.link-menu-vertical svg {
    min-width: 24px;
    width: 24px;
    height: 24px;
}
.link-menu-vertical:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.has-menu-vertical:hover .link-nav-header {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.has-menu-vertical:hover .link-nav-header svg {
    transform: rotate(-180deg);
}

.has-menu-vertical:hover .menu-vertical {
    display: grid;
    opacity: 1;
    visibility: visible;
}

/* = fin menu vertical = */

/* = inicio megamenu = */

.wrapper-megamenu {
    display: block;
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--white);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    max-height: 69vh;
    max-width: 1300px;
    width: calc(99vw - 74px);
    box-sizing: border-box;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 17px 15px -11px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.grid-wrapper-megamenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    overflow-y: auto;
    max-height: 69vh;
    padding: 2.5rem 3rem;
}

/* scrollbar submenu brands*/
.grid-wrapper-megamenu::-webkit-scrollbar {
    width: 12px;
}
.grid-wrapper-megamenu::-webkit-scrollbar-track {
    background: #ededed;
    border-radius: 1rem;
}
.grid-wrapper-megamenu::-webkit-scrollbar-thumb {
    background-color: rgba(42, 74, 144, 1);
    border-radius: 10px;
    border: 2px solid #ededed;
}
.grid-wrapper-megamenu::-webkit-scrollbar-thumb:hover {
    background-color: rgba(42, 74, 144, 0.8);
}

.title-list-megamenu {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 0.75rem;
}

.list-megamenu {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.link-megamenu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 0.5rem;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    transition: all 0.3s ease;
}

.name-megamenu {
    font-size: 1rem;
    font-family: var(--font-secondary);
    flex: 1;
    transition: all 0.3s;
}

.icon-megamenu {
    filter: brightness(0) saturate(100%) invert(23%) sepia(14%) saturate(1543%)
        hue-rotate(194deg) brightness(92%) contrast(90%);
    width: 42px;
    height: 42px;
    transition: transform 0.35s;
}

.link-megamenu:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.link-megamenu:hover::after {
    transform: translateY(-50%) rotate(-45deg);
}

.has-megamenu:hover .link-nav-header,
.link-nav-header:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.has-megamenu:hover svg {
    transform: rotate(-180deg);
}

.has-megamenu:hover .wrapper-megamenu {
    display: grid;
    opacity: 1;
    visibility: visible;
}

/* = fin megamenu = */

/*= inicio menu mobile =*/

.item-nav-mobile {
    display: none;
}

.btn-menu-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 50%;
}
.btn-menu-mobile img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.btn-menu-mobile .icon-close {
    display: none;
}
.button-menu {
    display: flex;
    position: relative;
    z-index: 99;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.menu-mobile.open {
    transform: translate(0);
    transition: all 0.6s;
}
.menu-mobile {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    transform: translate(-10000px);
    width: 320px;
    height: 100vh;
    border-radius: 0;
    background: var(--white);
    transition: all 0.6s;
    z-index: 9999;
}

.menu-mobile .item-head {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 1rem;
    padding: 1.6rem 1.6rem 1rem;
    z-index: 1;
}

.cart-head-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0;
}

.cart-head-btn {
    height: 40px;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background: var(--gray-100);
    border: 0;
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s;
}
.cart-head-btn:hover {
    color: var(--primary-color);
}

.cart-head-btn:hover img {
    filter: var(--filter-primary);
}

.cart-head-btn img {
    width: 18px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.list-menu-actions {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.item-mobbile-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--text-color);
    font-size: 1rem;
    padding: 1rem 0;
}

.item-mobbile-actions img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.list-menu-mobile {
    list-style: none;
    margin-bottom: 0;
    padding: 0 1.6rem;
}

.list-nav-submenu {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    padding: 0.75rem 0;
    padding-left: 0;
    background: transparent;
    color: var(--text-color);
    border: 0;
    transition: all 0.3s;
}
.list-nav-submenu:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background: url(../images/icons/caret-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
}

.list-nav-submenu.not-caret:before {
    content: unset;
}

.menu-item {
    font-size: 0.95rem;
    color: var(--text-color);
    display: block;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.menu-item-all {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0 0.75rem 0.5rem;
}

.submenu-nav-two.open {
    height: auto;
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.submenu-nav-two {
    position: initial;
    width: 100%;
    padding: 0;
    background: var(--white);
    border-left: 0;
    height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}

.menu-products-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.menu-accordion {
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0 0.75rem 0.5rem;
}

.menu-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
}

.menu-accordion-summary::-webkit-details-marker {
    display: none;
}

.list-submenu {
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    list-style: none;
    padding: 1rem 0.6rem 1rem;
    margin-bottom: 0;
}

.list-mobile-footer {
    list-style: none;
    padding: 0 1.6rem 1.6rem;
    margin-bottom: 0;
}
.list-mobile-footer li a {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 0;
    transition: all 0.3s;
}
.list-mobile-footer li a:hover {
    color: var(--primary-color);
}

/*= fin menu mobile =*/

/* === FIN HEADER === */

/*==== INICIO INDEX ====*/

/* = inicio hero = */

.swiper-slide-hero {
    background-color: var(--primary-color);
    height: auto;
    overflow: hidden;
}

.hero-navigation-buttons {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    right: 8%;
    z-index: 5;
}

.secondary-navigation-buttons {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    right: 8%;
    z-index: 5;
}

.hero-button-prev,
.hero-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: none;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s;
}

.secondary-button-prev,
.secondary-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: none;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s;
}

.hero-button-prev svg,
.hero-button-next svg {
    height: 24px;
    width: 24px;
}

.secondary-button-prev svg,
.secondary-button-next svg {
    height: 24px;
    width: 24px;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.secondary-button-prev:hover,
.secondary-button-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-slide-content {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-slide-content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* .hero-slide-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
} */

.hero-slide-media picture img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-slide-image,
.hero-slide-image img {
    display: block;
}

.hero-slide-image img {
    object-fit: cover;
    object-position: left;
}

.wrapper-hero {
    position: absolute;
    top: 0;
    display: flex;
    align-items: start;
    height: 100%;
    
    padding: 2rem 1.5rem 1.5rem;
    z-index: 3;
}

.content-hero {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.title-hero {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-wrap-style: balance;
}

.desc-hero {
    color: var(--white);
    font-size: 1rem;
    width: fit-content;
    margin-bottom: 1.5rem;
    text-wrap-style: balance;
}

.desc-hero small {
    font-size: 0.875rem;
}

.btn-action-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-xl);
    color: var(--primary-color);
    font-size: 1.25rem;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s;
}

.btn-action-hero:hover {
    background-color: var(--white) !important;
    color: var(--primary-color);
}

.swiper-pagination-hero .swiper-pagination-bullet {
    height: 0.75rem;
    width: 0.75rem;
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
    --swiper-theme-color: var(--white);
}

/* animaciones */
.section-hero .title-hero,
.section-hero .desc-hero,
.section-hero .btn-action-hero {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.section-hero .swiper-slide-active .title-hero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.section-hero .swiper-slide-active .desc-hero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.section-hero .swiper-slide-active .btn-action-hero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.4s;
}

/* = fin hero = */

/* = inicio intro = */

.section-action {
    position: relative;
    padding-top: 4rem;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.grid-action {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2rem;
    position: sticky;
    top: 50px;
}

.item-action {
    display: flex;
    flex-direction: column;
}

.item-action_wrapper {
    max-width: 800px;
}

.wrapper-media__image {
    width: 100%;
    object-fit: cover;
}

.wrapper-media {
    position: relative;
}

.secondary-slide-content {
    position: relative;
}

.secondary-slide-content.has-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #090979 0%,
        rgba(9, 9, 121, 0.7) 52%,
        rgba(9, 9, 121, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.secondary-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.secondary-slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 90%;
}

.title-intro {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.description-intro {
    font-size: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.btn-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-xl);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    padding: 0.75rem 1.75rem;
    text-wrap: nowrap;
    transition:
        background-color 0.3s,
        color 0.3s;
}

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

.svg-placeholder path {
    transition: fill 0.4s ease;
}

/* = fin intro = */

/* = inicio pasos credito = */

.section-steps {
    background: #eef0fc;
}

.creditsteps-swiper .swiper-slide {
    height: auto;
}

.credit-step-card {
    height: 100%;
    background-color: #eef0fc;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.credit-step-card:hover {
    background-color: var(--white);
}

.credit-step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.credit-step-icon img {
    width: 32px;
    height: 32px;
}

.credit-step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.credit-step-subtitle {
    font-size: 1rem;
    color: #1f1f1f;
    margin-bottom: 0.75rem;
}

.credit-step-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(47, 79, 143, 0.3);
    margin-bottom: 1rem;
}

.credit-step-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1f1f1f;
    margin-bottom: 1.5rem;
}

.credit-step-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credit-step-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.creditsteps-swiper:hover .creditsteps-button-prev,
.creditsteps-swiper:hover .creditsteps-button-next {
    opacity: 1;
}

.creditsteps-swiper .creditsteps-button-prev,
.creditsteps-swiper .creditsteps-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--bg-light);
    border: none;
    border-radius: 100%;
    color: var(--primary-color);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.creditsteps-swiper .creditsteps-button-prev {
    left: 0;
}

.creditsteps-swiper .creditsteps-button-next {
    right: 0;
}

.creditsteps-button-prev svg,
.creditsteps-button-next svg {
    height: 32px;
    width: 32px;
}

.creditsteps-button-prev:hover,
.creditsteps-button-next:hover {
    transform: scale(1.1) translateY(-50%);
}

/* = fin pasos credito = */

/* = inicio creditos mas solicitados = */

.section-credits {
    position: relative;
    background-color: var(--white);
    background-image: var(
        --credits-banner-desktop,
        url("../images/banner-8.png")
    );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 12rem;
    padding-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .section-credits {
        background-image: var(
            --credits-banner-mobile,
            var(--credits-banner-desktop, url("../images/banner-8.png"))
        );
    }
}

.section-credits::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.container-credits {
    position: relative;
    padding: 0 1.5rem;
    z-index: 5;
}

.title-section.title-credits,
.description-section.description-credits {
    color: var(--white);
}

.container-credits-swiper {
    position: relative;
    max-width: 790px;
    margin: 0 auto;
}

.swiper-group-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

.credits-button-prev,
.credits-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--bg-light);
    border-radius: 100%;
    color: var(--primary-color);
    transition: all 0.3s;
}

.credits-button-prev svg,
.credits-button-next svg {
    height: 32px;
    width: 32px;
}

.credits-button-prev:after,
.credits-button-next:after {
    content: unset;
}

.credits-button-prev:hover,
.credits-button-next:hover {
    transform: scale(1.1);
}

.credits-swiper {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}

.swiper-pagination-credits .swiper-pagination-bullet {
    height: 0.75rem;
    width: 0.75rem;
}

.swiper-pagination-credits .swiper-pagination-bullet-active {
    --swiper-theme-color: var(--primary-color);
}

.credit-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    background: var(--secondary-color);
    border-bottom-left-radius: var(--border-radius-xl);
    border-bottom-right-radius: var(--border-radius-xl);
    padding: 4rem 2rem;
    width: 100%;
    max-width: 850px;
    text-align: center;
    transition: all 0.3s;
}

.credit-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.credit-card:hover .amount {
    color: var(--white);
}

.tag-credit {
    color: var(--primary-color);
    font-size: 1.125rem;
    text-align: center;
    background: var(--bg-light);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 36px;
    line-height: 1.2;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px #698fb842;
    padding: 0 1rem;
}

.col-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.amount {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 0;
}

.total-share {
    font-size: 1.125rem;
}

.share {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
}

.col-credit.total .amount {
    font-size: 2rem;
}

.credit-svg {
    min-width: 26px;
    max-width: 26px;
    width: 26px;
    height: 26px;
}

.credit-svg.arrow {
    transform: rotate(90deg);
}

/* = fin creditos mas solicitados = */

/* = inicio productos = */

.section-products {
    background-color: var(--bg-light);
    overflow: hidden;
}

.line-container {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    opacity: 0;
}

.dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 100%;
    background-color: var(--primary-color);
}

.line {
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
}

.actions-products-swiper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.thumbs-products-swiper {
    padding-bottom: 0.5rem;
}

.thumbs-products-swiper .swiper-slide {
    width: auto;
}

.thumb-product-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--gray-200);
    min-width: 150px;
}

.thumb-product {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--border-radius-md);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    min-height: 55px;
    padding: 0.5rem;
    transition: all 0.3s;
    text-transform: capitalize;
}

.thumb-product:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.products-button-prev,
.products-button-next {
    color: var(--primary-color);
    min-width: 28px;
    max-width: 28px;
    width: 28px;
    height: 28px;
}

.swiper-slide-thumb-active .line-container {
    opacity: 1;
}

.product-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 1rem;
}

.product-wrapper-img {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-xl);
    padding: 1rem;
}

.product-img {
    aspect-ratio: 1 / 1;
    border-radius: 0.875rem;
    object-fit: cover;
}

.product-title {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    width: fit-content;
    gap: 0.75rem;
    border-radius: var(--border-radius-xl);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s;
}

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

/* = fin productos = */

/* = inicio features = */

.section-features {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(178, 26, 29, 0) 0%,
        rgba(178, 26, 29, 0.15) 48%,
        #b21a1d 95%
    );
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.wrapper-feature {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.wrapper-text-feature {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    padding: 2rem;
    height: 100%;
    width: 100%;
}

.wrapper-feature-image {
    -webkit-filter: blur(2px) brightness(0.75);
    filter: blur(1px) brightness(0.95);
    width: 100%;
    height: clamp(260px, 50vh + 0.1rem, 438px);
    object-fit: cover;
    transform: scale(1.1);
    will-change: filter;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.tag-card-feature {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-xl);
    background: transparent;
    font-size: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    padding: 4px 12px;
    width: fit-content;
}

.title-card-feature {
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.title-card-feature svg {
    min-width: 22px;
    max-width: 22px;
    height: 22px;
    width: 22px;
}

.action-card-feature {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.desc-card-feature {
    color: var(--white);
    font-size: 1rem;
    margin: 1rem 0;
    text-align: left;
    text-wrap: pretty;
    transition: all 250ms ease;
}

.btn-action-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-xl);
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: all 250ms ease;
    transition-delay: 100ms;
}

.btn-action-feature:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.card-feature {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card-feature:hover .wrapper-feature-image {
    filter: blur(0px) brightness(80%);
}

.card-feature:hover .desc-card-feature {
    translate: 0;
    opacity: 1;
    scale: 1;
}

.card-feature:hover .btn-action-feature {
    opacity: 1;
    scale: 1;
}

.features-swiper-wrapper:has(.card-feature:is(:hover, :focus-within))
    .card-feature:not(:hover, :focus, :focus-within) {
    scale: 0.9;
}

.features-swiper:hover .feature-button-prev,
.features-swiper:hover .feature-button-next {
    opacity: 1;
}

.features-swiper .feature-button-prev,
.features-swiper .feature-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--bg-light);
    border-radius: 100%;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s;
}

.feature-button-prev svg,
.feature-button-next svg {
    height: 32px;
    width: 32px;
}

.feature-button-prev:after,
.feature-button-next:after {
    content: unset;
}

.feature-button-prev:hover,
.feature-button-next:hover {
    transform: scale(1.1);
}

/* = fin features = */

/*==== FIN INDEX ====*/

/*==== INICIO NOSOTROS ====*/

/* inicio culture && values */

.section-culture {
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.grid-culture {
    position: relative;
    display: flex;
    flex-direction: column;
}

.title-culture {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-culture {
    font-size: 1.125rem;
    text-wrap: pretty;
    text-align: justify;
}

.col-culture-middle {
    display: flex;
    justify-content: center;
}

.globo-aboutus {
    width: 300px;
}

.section-values {
    background-color: var(--bg-light);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.title-value {
    color: var(--primary-color);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 4rem;
}

.grid-values {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.col-values {
    width: 100%;
}

.card-values {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.card-values-head {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
}

.card-values-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--terciary-color);
    border-bottom-right-radius: 1rem;
    color: var(--white);
    padding: 1rem 2rem;
    min-height: 74px;
    width: 96px;
}

.card-values-icon img {
    height: 32px;
    width: 32px;
}

.card-values-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-left: 2rem;
    background-color: var(--white);
}

.card-values-text {
    text-align: justify;
    padding: 1rem 2rem 2rem;
}

.card-values-text p {
    text-align: justify;
}

.col-values:nth-child(1) .card-values-icon,
.col-values:nth-child(6) .card-values-icon {
    background-color: var(--terciary-color);
}

.col-values:nth-child(2) .card-values-icon,
.col-values:nth-child(4) .card-values-icon {
    background-color: var(--secondary-color);
}

.col-values:nth-child(3) .card-values-icon,
.col-values:nth-child(5) .card-values-icon {
    background-color: var(--primary-color);
}

/* fin culture && values */

/*==== FIN NOSOTROS ====*/

/*==== INICIO POLITICAS CALIDAD ====*/

.title-quality {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 800px;
}

.description-quality {
    text-align: justify;
}

/*==== FIN  CALIDAD ====*/

/*==== INICIO PRIVACIDAD ====*/

.privacy-policy {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.privacy-policy > * {
    text-align: justify;
}

.privacy-policy__header {
    margin-bottom: 2.5rem;
}

.privacy-policy__title {
    font-size: 2rem;
    color: var(--primary-color);
}

.privacy-policy__intro {
    font-size: 1rem;
    color: var(--gray-700);
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.privacy-list,
.privacy-bullet-list {
    margin: 1rem 0;
}

.privacy-bullet-list {
    padding-left: 1.5rem;
}

.privacy-list__item {
    margin-bottom: 0.8rem;
}

.privacy-bullet-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.privacy-bullet-list li::marker {
    color: var(--secondary-color);
}

.privacy-summary {
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

/*==== FIN PRIVACIDAD ====*/

/*==== INICIO SUCURSALES ====*/

.main-branch {
    background-color: var(--bg-light);
}

.branchs-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.sucursales-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.branch-card {
    background: var(--branch-card-bg, var(--white));
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(42, 74, 144, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(42, 74, 144, 0.15);
}

.branch-card-content {
    position: relative;
    z-index: 1;
}

.branch-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.branch-icon {
    width: 32px;
    height: 32px;
}

.branch-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.branch-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.branch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.branch-info-item:last-child {
    margin-bottom: 0;
}

.branch-info-icon {
    color: var(--primary-color);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-info-content {
    flex: 1;
}

.branch-info-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.branch-info-text {
    font-size: 0.9375rem;
    color: var(--text-color);
    line-height: 1.5;
}

.branch-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.branch-link:hover {
    color: var(--terciary-color);
    text-decoration: underline;
}

.branch-phone-link {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.branch-phone-link:hover {
    color: var(--primary-color);
}

.branch-card:nth-child(6n + 1) .branch-icon-wrapper {
    background-color: var(--terciary-color);
}

.branch-card:nth-child(6n + 2) .branch-icon-wrapper {
    background-color: var(--secondary-color);
}

.branch-card:nth-child(6n + 3) .branch-icon-wrapper {
    background-color: var(--primary-color);
}

.branch-card:nth-child(6n + 4) .branch-icon-wrapper {
    background-color: var(--secondary-color);
}

.branch-card:nth-child(6n + 5) .branch-icon-wrapper {
    background-color: var(--primary-color);
}

.branch-card:nth-child(6n + 6) .branch-icon-wrapper {
    background-color: var(--terciary-color);
}

/*==== FIN SUCURSALES ====*/

/*==== INICIO PREGUNTAS FRECUENTES ====*/

.faq-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.faq-accordion .accordion-item {
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    background: var(--white);
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    background: var(--white);
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 1.25rem;
}

.faq-accordion .accordion-button::after {
    filter: var(--filter-primary);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: var(--filter-primary);
}

/*==== FIN PREGUNTAS FRECUENTES ====*/

/*==== INICIO MEMORIA Y BALANCE ====*/

/* Filtros */
.filters-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.filter-select {
    font-family: var(--font-secondary);
    font-size: 16px;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-color);
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--primary-color);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 74, 144, 0.1);
}

/* Sección de Balances */
.balances-section {
    background-color: var(--white);
}

.cards-grid {
    display: grid;
    gap: 16px;
}

.balance-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.625rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.balance-card:hover {
    box-shadow: 0 4px 16px rgba(42, 74, 144, 0.15);
    transform: translateY(-2px);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.card-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.download-link:hover {
    background-color: var(--terciary-color);
    transform: scale(1.05);
}

/* Sección de Memorias */
.memorias-section {
    background-color: var(--bg-light);
}

.memorias-grid {
    display: grid;
    gap: 1.5rem;
}

.memoria-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.memoria-card:hover {
    box-shadow: 0 6px 20px rgba(42, 74, 144, 0.2);
    transform: translateY(-4px);
}

.memoria-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.memoria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.memoria-info {
    padding: 1.25rem;
}

.memoria-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.btn-visualizar {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    transition: all 0.3s ease;
}

.btn-visualizar:hover {
    background-color: var(--terciary-color);
    transform: scale(1.02);
}

/* Sección de Estados Financieros */
.estados-financieros-section {
    background-color: var(--white);
    text-align: center;
}

.section-description {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-estados-financieros {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 12px rgba(42, 74, 144, 0.3);
    transition: all 0.3s ease;
}

.btn-estados-financieros:hover {
    background-color: var(--terciary-color);
    box-shadow: 0 6px 16px rgba(178, 26, 29, 0.4);
    transform: translateY(-2px);
}

.btn-estados-financieros svg {
    flex-shrink: 0;
}

/* Media Queries - Tablet */
@media (min-width: 640px) {
    .filters-container {
        flex-direction: row;
        gap: 20px;
    }

    .filter-group {
        flex: 1;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .memorias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .filters-container {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .memorias-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .card-title {
        font-size: 1.063rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .btn-estados-financieros {
        font-size: 1.125rem;
        padding: 1.125rem 2.5rem;
    }
}

@media (min-width: 1280px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*==== FIN MEMORIA Y BALANCE ====*/

/*==== INICIO PRODUCTOS ====*/

.productpage-section {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.title-productpage {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.productpage-products__grid {
    display: grid;
    grid-template-columns: 1fr;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--white);
    overflow: hidden;
    transition: all 0.3s;
}
.product-card:first-child {
    border-top-left-radius: 2rem;
}
.product-card:last-child {
    border-bottom-right-radius: 2rem;
}

.product-card__image {
    position: relative;
    background-color: var(--gray-200);
    overflow: hidden;
    width: 100%;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__image svg {
    position: absolute;
    top: 0;
    height: 100%;
    right: -1px;
    width: auto;
}

.product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    background-color: var(--bg-light);
    justify-content: center;
    padding: 1.5rem 1.5rem;
}

.product-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.product-card__description {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.product-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    width: fit-content;
    padding: 0.875rem 1.5rem;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.product-card__btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.02);
}

.product-card__btn:active {
    transform: scale(0.98);
}

.product-card__btn--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.product-card__btn--secondary:hover {
    background-color: var(--secondary-color);
}

/* = inicio requirements = */

.requirements-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.requirements-section__content {
    display: grid;
    position: relative;
    background-color: var(--bg-light);
    border-top-left-radius: 2rem;
    padding: 2rem;
}

.requirements-svg {
    position: absolute;
    width: 8vw;
    height: auto;
    top: 1rem;
    right: 1rem;
}

.requirements-section__info {
    width: 90%;
}

.requirements-section__title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.requirements-section__info p {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.requirements-section__info ul {
    color: var(--primary-color);
    line-height: 1.8;
}

.requirements-section__info p:last-child {
    margin-bottom: 0;
}

.requirements-section__info a {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s;
}

.requirements-section__info a:hover {
    text-decoration: underline;
}

/* = inicio cta section = */

.cta-credit-section {
    padding: 3rem 1rem;
    background: var(--bg-light);
}

.cta-credit__content {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
    border-radius: 2.25rem 0 2.25rem 0;
    overflow: hidden;
}

.cta-credit__image {
    position: relative;
    color: var(--secondary-color);
    width: 100%;
    overflow: hidden;
}

.cta-credit__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-credit__info {
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.cta-credit__title {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.cta-credit__description {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0 0 1.75rem 0;
}

.cta-credit__btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--terciary-color);
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(178, 26, 29, 0.3);
    transition:
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
    display: inline-block;
}

.cta-credit__btn:hover {
    background-color: #9a1618;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(178, 26, 29, 0.4);
}

.cta-credit__btn:active {
    transform: translateY(0);
}

/* inicio beneficos */
.section-benefits {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.title-benefits {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.grid-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.col-benefits {
    width: 100%;
}

.card-benefits {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.card-benefits-head {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
}

.card-benefits-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--terciary-color);
    border-bottom-right-radius: 1rem;
    color: var(--white);
    padding: 1rem 2rem;
    min-height: 74px;
    width: 96px;
}

.card-benefits-icon svg {
    height: 32px;
    width: 32px;
}

.card-benefits-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-left: 2rem;
    background-color: var(--white);
}

.card-benefits-text {
    padding: 1rem 2rem 2rem;
}

.col-benefits:nth-child(6n + 1) .card-benefits-icon {
    background-color: var(--terciary-color);
}

.col-benefits:nth-child(6n + 2) .card-benefits-icon {
    background-color: var(--secondary-color);
}

.col-benefits:nth-child(6n + 3) .card-benefits-icon {
    background-color: var(--primary-color);
}

.col-benefits:nth-child(6n + 4) .card-benefits-icon {
    background-color: var(--secondary-color);
}

.col-benefits:nth-child(6n + 5) .card-benefits-icon {
    background-color: var(--primary-color);
}

.col-benefits:nth-child(6n + 6) .card-benefits-icon {
    background-color: var(--terciary-color);
}

/* fin beneficios */

/* inicio tarjeta prepaga */
.tu-tarjeta {
    background: var(--bg-light);
}

.tu-tarjeta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.tu-tarjeta-image {
    aspect-ratio: 1;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 6rem;
    box-shadow: 0 10px 40px rgba(42, 74, 144, 0.3);
}

.tu-tarjeta-points {
    width: 100%;
}

.tarjeta-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.point-number {
    min-width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-color);
}

.point-content h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.point-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* inicio descuentos especiales */
.descuentos-especiales {
    background: var(--white);
}

.descuentos-comercios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comercio-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.comercio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.comercio-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.comercio-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.comercio-content {
    padding: 1.5rem;
}

.comercio-badges {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.descuento-tag {
    display: inline-flex;
    flex-direction: column;
    font-family: var(--font-primary);
    font-weight: 700;
    gap: 0.5rem;
}

.tag-value {
    color: var(--terciary-color);
    font-size: 1.75rem;
    line-height: 1;
}

.dia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gray-600);
}

.intro-product {
    padding: 3rem 0;
}

.intro-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    font-family: var(--font-primary);
}

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

/* inicio cheques y documentos */

.product-feature-box {
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    display: inline-block;
}

.feature-label {
    display: block;
    font-size: 1.125rem;
    opacity: 0.8;
}

.feature-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/*==== FIN PRODUCTOS ====*/

/*==== INICIO TRABAJA CON NOSOTROS ====*/

.section-apply {
    overflow: hidden;
    padding: 4rem 0;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
    column-gap: 2rem;
    align-items: start;
}

.apply-info {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    height: 95%;
    z-index: 2;
}

.apply-info-text {
    position: relative;
    z-index: 4;
}

.apply-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.apply-text {
    font-size: 1rem;
    line-height: 1.6;
}

.apply-info-media {
    position: absolute;
    right: -12rem;
    top: 22rem;
    z-index: 1;
}

.apply-info-media svg {
    height: auto;
    max-width: 340px;
}

.apply-form-wrapper {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    z-index: 2;
}

.apply-form .form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group select,
.filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(42, 74, 144, 0.1);
}

.form-group input[type="file"] {
    padding: 0.4rem;
}

.label-required::after {
    content: " *";
    color: #dc3545;
}

.form-select-wrapper {
    position: relative;
}

.form-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.75rem;
    color: #667085;
}

.form-note {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.form-group-file {
    position: relative;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-drop-area {
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.form-group-file:hover .file-drop-area,
.file-drop-area:hover {
    border-color: var(--primary-color);
    background-color: #f3f2ff;
}

.file-drop-area.dragover {
    border-color: var(--primary-color);
    background-color: #ecebff;
    transform: scale(1.01);
}

.file-icon {
    margin-bottom: 0.75rem;
}

.file-icon svg {
    color: var(--gray-500);
    width: 32px;
    width: 32px;
}

.file-message {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.file-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--green-whatsapp);
    font-size: 0.9rem;
}

.form-note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #64748b;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/*==== FIN TRABAJA CON NOSOTROS ====*/

/*==== INICIO CONTACTO ====*/

.section-contact {
    overflow: hidden;
    padding: 4rem 0;
}

.title-contact {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-wrap-style: balance;
}

.contact-column {
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card__icon svg {
    height: 28px;
    width: 28px;
}

.contact-card__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-card__schedule {
    margin: 0.35rem 0 0.5rem 0;
    font-size: var(--font-size-sm);
    font-family: var(--font-secondary);
    color: var(--gray-600);
}

.contact-card__phone {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-color);
}

.contact-card:hover .contact-card__title {
    color: var(--primary-color);
}

.contact-card:hover .contact-card__icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-social {
    margin-top: 2rem;
}

.contact-social__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-social__list {
    display: flex;
    gap: 1rem;
}

.contact-social__item {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-light);
    color: var(--primary-color);
    transition: all 0.25s ease;
}

.contact-social__item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/*==== FIN CONTACTO ====*/

/*==== INICIO TASAS TARIFARIAS ====*/

.card-tasas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    column-gap: 1rem;
    row-gap: 1rem;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.card-title-tasas {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0;
    text-align: center;
}

.btn-more-tasas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-xl);
    color: var(--white);
    line-height: 1.2;
    padding: 0.875rem 1rem;
    text-wrap: nowrap;
    transition: all 0.3s;
}

.btn-more-tasas:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/*==== FIN TASAS TARIFARIAS ====*/

/*==== INICIO MODAL ====*/

.credito-modal {
    border-radius: var(--border-radius-xl);
}

.credito-modal .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    height: 40px;
    width: 40px;
    padding: 0;
    z-index: 2;
}

.credito-modal-body {
    padding: 0.5rem 2rem 2.5rem;
}

.credito-modal__image {
    border-radius: var(--border-radius-lg);
    width: 100%;
    object-fit: cover;
}

.credito-modal__title {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.credito-modal__description {
    font-size: 1rem;
    margin-bottom: 4rem;
}

.credito-modal_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-xl);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    text-wrap: nowrap;
    transition: all 0.3s;
}

.credito-modal_btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/*==== FIN MODAL ====*/

/* === INICIO FOOTER === */

.vector-footer {
    position: absolute;
    bottom: -30px;
    z-index: 1;
    width: 100%;
    left: 0;
    height: auto;
    right: 0;
}

.footer {
    background-color: var(--primary-color);
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.footer-logo {
    height: 60px;
}
.grid-footer {
    display: flex;
    flex-direction: column;
    column-gap: 2rem;
}
.subgrid-footer {
    display: flex;
    flex-direction: column;
    column-gap: 3rem;
    row-gap: 1.5rem;
}
.title-footer {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.list-footer {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.footer-social {
    display: flex;
    gap: 1.125rem;
    padding-top: 1.5rem;
    padding-left: 0;
    list-style: none;
    align-items: center;
    margin-bottom: 3rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.link-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    padding-bottom: 0.5rem;
    text-wrap-style: balance;
    transition: all 0.3s;
}

.link-footer:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    position: relative;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.footer-copyright {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-copyright svg {
    height: 13px;
    width: auto;
    object-fit: contain;
    margin-top: 2px;
}

/* botones flotantes */

.container-fixed {
    position: fixed;
    right: 2rem;
    top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.btn-whatsapp-fixed,
.phone-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    transition: all 0.3s;
}

.phone-fixed {
    background-color: var(--primary-color);
    border: 1px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    width: 50px;
    height: 50px;
}

.phone-fixed svg {
    width: 1.25rem;
    height: 1.25rem;
}

.phone-fixed:hover svg {
    animation: shake 1s;
    animation-iteration-count: infinite;
    transition: all 1s;
}

.icon-whatsapp-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-whatsapp);
    border-radius: 50%;
    width: 62px;
    height: 62px;
    margin-bottom: 0;
}

.icon-whatsapp-fixed img {
    width: 34px;
    height: 34px;
}
.btn-whatsapp-fixed:hover img {
    animation: shake 1s;
    animation-iteration-count: infinite;
    transition: all 1s;
}
@keyframes shake {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.1) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    75% {
        transform: scale(1.1) rotate(-10deg);
    }
    100% {
        transform: scale(1);
    }
}

/* === FIN FOOTER === */

@media screen and (max-width: 1100px) {
    /* = Inicio Header = */
    .link-header-logo {
        margin-bottom: 0;
    }
    .nav-header-middle {
        padding: 0.5rem 0;
        width: 100%;
    }
    .item-nav-header-middle:first-child {
        max-width: unset;
    }
    .img-header-logo {
        top: 0;
        height: 28px;
        width: auto;
    }
    .grid-search {
        padding-left: 0;
        padding-right: 0;
    }

    /* menu mobile */
    .not-nav-mobile {
        display: none;
    }
    .item-nav-mobile {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        column-gap: 1rem;
    }
    .btn-menu-mobile {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        padding: 0;
    }
    .btn-menu-mobile img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }
    .btn-menu-mobile .icon-close {
        display: none;
    }
    .btn-nav-header {
        padding: 0.5rem 0.875rem;
        margin-bottom: 0;
    }
    /* = Fin Header = */
}

@media screen and (min-width: 768px) {
    /* === INICIO UTILITARIOS === */
    .padding-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .heading-section {
        margin-bottom: 4rem;
    }
    .title-section {
        font-size: 2.5rem;
        max-width: 650px;
        line-height: 1.2;
        margin-left: auto;
        margin-right: auto;
    }
    .description-section {
        font-size: 1.125rem;
    }
    /* === FIN UTILITARIOS === */

    /* = INICIO INDEX = */

    /* .hero-slide-content::after {
        background: linear-gradient(
            90deg,
            #090979 0%,
            #090979 64%,
            rgba(9, 9, 121, 0.7) 75%,
            rgba(9, 9, 121, 0.4) 83%,
            rgba(9, 9, 121, 0) 100%
        );
        width: 40vw;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        position: absolute;
        z-index: 2;
    } */

    .hero-navigation-buttons {
        display: flex;
    }

    .secondary-navigation-buttons {
        display: flex;
    }

    .content-hero {
        max-width: 600px;
    }

    .secondary-slide-text {
        max-width: 60%;
    }

    /* intro */
    .title-intro {
        font-size: 2.25rem;
        text-align: start;
    }
    .description-intro {
        font-size: 1.15rem;
        text-align: start;
    }
    .btn-intro {
        margin: 0;
    }

    .item-action {
        justify-content: space-between;
        flex-direction: row;
        gap: 1rem;
    }

    /* creditos mas solicitados */
    .section-credits {
        padding-top: 16rem;
    }

    .container-credits-swiper {
        padding: 0 4rem;
    }

    .swiper-group-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 5;
        justify-content: space-between;
        gap: 0;
        margin-top: 0;
    }

    /* = FIN INDEX = */

    /* = INICIO SUCURSALES = */
    .branchs-section {
        padding: 6rem 0;
    }

    .sucursales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    /* = FIN SUCURSALES = */

    /* = INICIO FICHA PRODUCTO = */

    /* productos */
    .productpage-section {
        padding-top: 6rem;
        padding-bottom: 0;
    }

    .product-card {
        align-items: center;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:first-child {
        border-top-left-radius: 6rem;
    }
    .product-card:last-child {
        border-bottom-right-radius: 6rem;
    }

    .product-card:nth-child(even) .product-card__content {
        order: 1;
    }
    .product-card:nth-child(even) .product-card__image {
        order: 2;
    }

    .descuentos-comercios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-product {
        padding: 6rem 0;
    }

    .intro-title {
        font-size: 2.4rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    /* = FIN FICHA PRODUCTO = */

    /* = INICIO PRODUCTO = */
    .product-title {
        font-size: 2.5rem;
    }

    .title-benefits {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }
    /* = FIN PRODUCTO = */

    /*==== INICIO TRABAJA CON NOSOTROS ====*/
    .grid-two-columns {
        grid-template-columns: 1fr 1fr;
    }
    .apply-info-text {
        padding-right: 1rem;
    }
    .apply-info-media {
        top: 16rem;
    }
    /*==== FIN TRABAJA CON NOSOTROS ====*/

    /*==== INICIO TASAS TARIFARIAS ====*/
    .card-tasas {
        flex-direction: row;
    }
    .card-title-tasas {
        text-align: start;
    }
    /*==== FIN TASAS TARIFARIAS ====*/

    /*==== INICIO MODAL ====*/

    /*==== FIN MODAL ====*/
    .credito-modal__title {
        font-size: 2rem;
    }
    /* = INICIO FOOTER = */
    .grid-footer {
        flex-direction: row;
    }
    .footer-social {
        margin-bottom: 0;
    }
    .subgrid-footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    /* botones flotantes */
    .icon-whatsapp-fixed {
        width: 70px;
        height: 70px;
    }
    .icon-whatsapp-fixed img {
        width: 40px;
        height: 40px;
    }
    /* = FIN FOOTER = */
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 1240px;
    }

    /* = Inicio Index = */
    
    .wrapper-hero {
        align-items: center;
        top: 50%;
        transform: translateY(-50%);
        padding: 3rem 0;
    }

    .title-hero {
        font-size: var(--font-size-xxl);
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    .desc-hero {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    /* creditos solicitados */
    .credit-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 4rem;
        text-align: start;
    }
    .amount {
        font-size: 2rem;
    }
    .col-credit.total .amount {
        font-size: 2.8rem;
    }
    .col-credit {
        align-items: start;
    }
    .credit-svg.arrow {
        transform: unset;
    }

    .container-credits-swiper {
        max-width: 950px;
    }

    /* inicio productos */
    .product-container {
        align-items: center;
        flex-direction: row;
        padding: 3rem;
        gap: 4rem;
    }
    .product-wrapper-img,
    .product-wrapper-text {
        width: 50%;
    }
    .product-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    .product-desc {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    /* inicio features */
    .desc-card-feature,
    .btn-action-feature {
        scale: 0.8;
        opacity: 0;
    }

    /* = Fin Index = */

    /* = Inicio Nosotros = */

    .container-page {
        flex-direction: row;
    }

    .container-text-page {
        min-height: 400px;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .wrapper-text-page {
        width: 50%;
        padding-right: 2rem;
    }

    .title-text-page {
        font-size: 3rem;
    }

    .wrapper-image-page {
        min-height: unset;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border-bottom-left-radius: 360px;
        width: 50%;
    }

    .wrapper-image-page img {
        border-bottom-left-radius: 360px;
    }

    /* inicio culture && values */

    .section-culture {
        padding-top: 9rem;
        padding-bottom: 9rem;
    }

    .section-values {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .grid-culture {
        flex-direction: row;
    }

    .col-culture {
        width: 33.33%;
    }

    .col-culture-image {
        position: absolute;
        top: -47px;
    }

    .globo-aboutus {
        width: 340px;
    }

    .title-culture {
        font-size: 2.5rem;
    }

    .title-value {
        font-size: 2.5rem;
        text-align: start;
    }

    .col-values {
        width: calc(33.33% - 1rem);
    }

    .col-values:nth-child(2),
    .col-values:nth-child(5) {
        width: calc(33.33% - 2rem);
    }

    .card-values-head {
        align-items: center;
        flex-direction: row;
        column-gap: 1rem;
    }

    .card-values-title {
        padding-left: 1rem;
        padding-top: 1rem;
    }

    .wrapper-quality {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .title-quality {
        font-size: 2.3rem;
    }

    .description-quality {
        font-size: 1.25rem;
    }

    /* = Fin Nosotros = */

    /* = Inicio Sucursales = */
    .sucursales-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .branch-card {
        padding: 2.5rem 2rem;
    }
    /* = Fin Sucursales = */

    /* = Inicio Ficha Producto = */

    /* = Inicio Ficha Producto = */
    .productpage-products {
        padding: 4.5rem 2rem;
    }

    .product-card__content {
        padding: 2rem 2rem;
    }

    .product-card__title {
        font-size: 1.8rem;
    }

    .product-card__description {
        font-size: 0.938rem;
    }

    .title-productpage {
        font-size: 2.5rem;
    }

    /* Requirements */
    .requirements-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .requirements-section__content {
        border-top-left-radius: 4rem;
        padding: 4rem 4rem;
    }

    .requirements-section__title {
        font-size: 2.3rem;
    }

    .requirements-section__info p,
    .requirements-section__info ul {
        font-size: 1.125rem;
    }

    .requirement-minicard {
        padding: 1.5rem;
    }

    .requirement-minicard__icon {
        width: 64px;
        height: 64px;
    }

    .requirement-minicard__title {
        font-size: 1.063rem;
    }

    /* CTA */
    .cta-credit {
        padding: 5rem 2rem;
    }

    .cta-credit__info {
        padding: 3rem 3rem 3rem 2rem;
        width: 55%;
    }

    .cta-credit__title {
        font-size: 2.5rem;
    }

    .cta-credit__description {
        font-size: 1.125rem;
    }

    .cta-credit__btn {
        padding: 1.125rem 3rem;
        font-size: 1.125rem;
    }

    /* CTA */
    .cta-credit-section {
        padding: 6rem 0;
    }

    .cta-credit__content {
        flex-direction: row;
        align-items: center;
        border-radius: 5.25rem 0 5.25rem 0;
    }

    .cta-credit__image {
        width: 45%;
        flex-shrink: 0;
    }

    .cta-credit__info {
        width: 55%;
        text-align: left;
    }

    .cta-credit__title {
        font-size: 2.125rem;
    }

    .cta-credit__description {
        font-size: 1.063rem;
    }

    /* beneficios */
    .section-benefits {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .title-benefits {
        font-size: 2.5rem;
    }
    .col-benefits {
        width: calc(33.33% - 1rem);
    }
    .col-benefits:nth-child(2),
    .col-benefits:nth-child(5) {
        width: calc(33.33% - 2rem);
    }
    /* = Fin Ficha Producto = */

    /* = Inicio Footer = */
    .grid-footer {
        justify-content: space-between;
    }
    .subgrid-footer {
        grid-template-columns: repeat(3, 1fr);
    }
    .subitem-footer:nth-child(3) {
        margin-top: 0;
    }
    /* = Fin Footer = */
}

@media screen and (min-width: 1024px) {
    /* intro */
    .intro-title {
        font-size: 2.5rem;
    }

    .intro-text {
        font-size: 1.125rem;
    }

    /* cheques y descuentos */
    .cta-button {
        padding: 1.125rem 3rem;
        font-size: 1.125rem;
    }

    /* = Fin Ficha Producto = */
}

@media screen and (min-width: 1200px) {
    /* = INICIO INDEX = */
.hero-slide-content,
    .hero-slide-image,
    .hero-slide-media picture img {
        height: calc(100vh - 70px);
    }
    /* = FIN INDEX = */
    /* = INICIO FOOTER = */
    .subgrid-footer {
        grid-template-columns: repeat(3, 170px) 220px;
    }
    /* = FIN FOOTER = */
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================================================
   MOBILE-FIRST FOUNDATION
   Optimizaciones táctiles y de rendimiento para mobile
   ============================================================ */

/* --- Reset táctil y rendimiento --- */
*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100svh;
}

/* --- Variables de safe area y touch targets --- */
:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --touch-min: 44px;
    --touch-comfortable: 48px;
}

/* --- Touch target mínimo en todos los links y botones --- */
a,
button,
[role="button"],
summary {
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
}

/* Excepción para links inline dentro de texto */
p a,
li a,
.description-section a,
.wrapper-text-page a {
    min-height: unset;
    display: inline;
}

/* --- Fix touch target del menú hamburguesa --- */
.btn-menu-mobile {
    min-width: var(--touch-min) !important;
    min-height: var(--touch-min) !important;
    width: var(--touch-min) !important;
    height: var(--touch-min) !important;
    padding: 8px !important;
    border-radius: 8px;
}

.btn-menu-mobile img {
    width: 24px !important;
    height: 24px !important;
}

/* --- Feedback táctil :active en botones principales --- */
.btn-nav-header:active,
.btn-intro:active,
.btn-cta:active,
.btn-producto:active,
.menu-item:active,
.list-nav-submenu:active,
.link-menu-vertical:active,
.link-megamenu:active {
    opacity: 0.75;
    transform: scale(0.98);
    transition:
        opacity 100ms,
        transform 100ms;
}

/* --- Asegurar que los items del menú mobile tienen touch target correcto --- */
.list-mobile-footer a,
.menu-item,
.list-nav-submenu {
    min-height: var(--touch-min);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.menu-accordion-summary {
    min-height: var(--touch-min);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

/* --- Imágenes: buenas prácticas mobile --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Reducción de animaciones para usuarios que lo prefieren --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Soporte safe-area para el header sticky --- */
.header {
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
}

/* --- Soporte safe-area para el footer --- */
.footer {
    padding-bottom: calc(1rem + var(--safe-bottom));
}

/* ============================================================
   FIN MOBILE-FIRST FOUNDATION
   ============================================================ */
