@font-face {
    font-family: "Branding";
    src: url("../fonts/branding/BrandingMedium.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Branding";
    src: url("../fonts/branding/BrandingSemibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Branding";
    src: url("../fonts/branding/BrandingBold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #33417d;
    --secondary-color: #f6c629;
    --terciary-color: #fbfbfb;

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

    --bg-light: #eff5f6;

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

    --green-whatsapp: #16a34b;

    --font-primary: "Branding", sans-serif;
    --font-secondary: "Branding", 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(24%) sepia(9%)
        saturate(4484%) hue-rotate(194deg) brightness(93%) contrast(89%);
    --filter-secondary: brightness(0) saturate(100%) invert(80%) sepia(54%)
        saturate(714%) hue-rotate(341deg) brightness(103%) contrast(93%);
}

* {
    font-family: "Branding", sans-serif;
    scroll-behavior: smooth;
}

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

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

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

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

.small,
small {
    font-size: 0.875rem;
}

.bodyPag.scrollnone {
    overflow: hidden;
}

/* elimina flechitas del input tipo numero/cantidad */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/*= inicio utilitarios =*/

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

.page-title {
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-xxl);
    line-height: 1.2;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.bg-section {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--terciary-color);
    overflow: hidden;
}

.bg-terciary {
    background-color: var(--terciary-color) !important;
}

.hero-section {
    margin-top: 2rem;
    overflow: hidden;
}
.hero-section-wrapper {
    position: relative;
    background-color: var(--terciary-color);
    border-radius: var(--border-radius-xl);
    margin-bottom: 1rem;
    overflow: hidden;
    height: 250px;
}
.tri-svg-left,
.tri-svg {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 100px;
    z-index: 1;
    opacity: 0.1;
}
.tri-svg-left {
    left: 0;
}
.tri-svg {
    right: 0;
    transform: scaleX(-1);
}
.hero-section-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(51, 65, 125, 0.85), rgba(51, 65, 125, 0.85));
    z-index: 1;
}
.hero-section-img {
    border-radius: var(--border-radius-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section-content {
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.05rem;
    line-height: 1.3;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.hero-section-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .hero-section-wrapper {
        height: 180px;
    }
    .hero-section-title {
        font-size: 1.75rem;
    }
}

.nav-breadcrumb {
    padding-top: 1rem;
}

.hidden {
    display: none;
}
.show {
    display: block;
}

.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.open {
    opacity: 1;
    visibility: visible;
}

/*= fin utilitarios =*/

/* === INICIO HEADER === */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
}

.nav-header-middle {
    display: grid;
    grid-template-columns: 151px minmax(250px, 450px) 1.5fr;
    align-items: center;
    padding: 1rem 0;
}
.link-header-logo {
    display: inline-block;
}
.img-header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: -2px;
}
.grid-search {
    display: flex;
    align-items: center;
    padding-left: 3rem;
    padding-right: 1rem;
}
.form-search {
    width: 100%;
    position: relative;
}
.input-header-search {
    width: 100%;
    height: 46px;
    border-radius: 30px;
    padding-left: 1.4rem;
    padding-right: 2.6rem;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    background: transparent;
    color: var(--white);
    outline: none;
}
.input-header-search::placeholder {
    color: var(--white);
}

.btn-search {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    border: 0;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s;
}
.btn-search img {
    width: 28px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: all 0.6s;
}
.btn-search:hover {
    background-color: var(--terciary-color);
}
.btn-search:hover img {
    filter: var(--filter-primary);
}
.list-nav-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.link-nav-header {
    color: var(--white);
    padding: 1.8rem 0.875rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.link-nav-header:hover {
    color: var(--white);
}

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

/* = inicio menu vertical = */

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

.menu-vertical {
    position: absolute;
    top: 140%;
    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: 176px;
    transition: all 0.3s;
}

.link-menu-vertical {
    display: block;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    padding: 0.5rem;
    width: 100%;
    transition: all 0.3s;
}
.link-menu-vertical:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.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: 100%;
    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;
}

.list-megamenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
    overflow-y: auto;
    max-height: 69vh;
    margin-bottom: 0;
    padding: 2rem;
}

.link-megamenu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.875rem;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    line-height: 1.4;
    overflow: hidden;
    padding: 0.8rem 1rem;
    transition: all 0.35s;
}

.link-megamenu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background-image: url(../images/icons/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    transition: transform 0.35s;
}

.box-megamenu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.box-megamenu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url(../images/icons/arrow-right.svg);
    height: 22px;
    width: 22px;
}

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

.icon-megamenu {
    filter: drop-shadow(1px 0 0 var(--primary-color))
        drop-shadow(0 1px 0 var(--primary-color))
        drop-shadow(-1px 0 0 var(--primary-color))
        drop-shadow(0 -1px 0 var(--primary-color));
    width: 42px;
    height: 42px;
    transition: transform 0.35s;
}

.description-megamenu {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gray-500);
}

.link-megamenu:hover {
    background-color: var(--terciary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

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

.megamenu-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.megamenu-col h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-size: 1.15rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
}

.list-megamenu-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.megamenu-col.featured {
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    color: var(--primary-color);
}

.megamenu-col.featured h4 {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
    line-height: 1.2;
}

.megamenu-col.featured .btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary-color);
    text-decoration: none;
}

.megamenu-col.featured .btn:hover {
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* = Hierarchical Megamenu (Simplified) = */

.wrapper-megamenu {
    min-width: 280px;
    width: clamp(300px, 90vw, 1000px);
    padding: 0.5rem 0;
}

.list-megamenu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 1.5rem;
}

.item-megamenu {
    position: relative;
}

.link-megamenu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

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

.link-megamenu .name-megamenu {
    flex: 1;
}

/* = Linea Page (Vista Intermedia) = */

.hero-linea .hero-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color, #1a365d) 100%
    );
    height: 200px;
}

.linea-grupos-section {
    padding: 3rem 0 4rem;
    background: var(--light-gray, #f8f9fa);
}

.linea-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.linea-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.grupos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.grupo-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--border-radius-lg, 12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.grupo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.grupo-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color-light, #e8f4fd);
    border-radius: var(--border-radius-md);
    color: var(--primary-color);
}

.grupo-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.grupo-card-content {
    flex: 1;
    min-width: 0;
}

.grupo-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.grupo-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.grupo-card-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.grupo-card:hover .grupo-card-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.linea-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-ver-todos:hover {
    background: var(--primary-color-dark, #0056b3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

    .linea-title {
        font-size: 1.5rem;
    }
}

/* = fin megamenu = */

/* = inicio aside carrito = */

.item-nav-cart {
    width: 24px;
}

.cart-button-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cart-button {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-button-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.cart-button-label {
    color: var(--text-color);
    font-size: var(--font-size-sm);
}

.cart-button-count {
    position: absolute;
    top: -9px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 100%;
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    height: 18px;
    width: 18px;
    margin-bottom: 0;
}

.cart-header.open,
.cart-header.active {
    transform: translateX(0);
    transition: ease-in-out 0.6s;
}
.cart-header {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--white);
    max-width: 450px;
    transform: translateX(1000px);
    transition: ease-in-out 0.6s;
    z-index: 9999;
}
.item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--terciary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 1.6rem;
}
.wrapper-cart-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}
.wapper-cart {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    padding: 1.6rem;
}
.item-body {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    column-gap: 1rem;
    width: 100%;
}
.card-cart {
    width: 100%;
    display: flex;
    align-items: flex-start;
    column-gap: 1rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--gray-300);
}
.card-cart-images {
    display: block;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
    width: 30%;
}
.card-cart-images img {
    width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
}
.card-cart-text {
    width: 70%;
}
.card-cart-title {
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    text-transform: capitalize;
    width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0;
}
.card-cart-title a {
    color: var(--text-color);
    transition: all 0.3s;
}
.card-cart-title a:hover {
    color: var(--secondary-color);
}
.card-cart-precio {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.1rem;
    width: 95%;
    margin-bottom: 0;
}
.card-cart-actions {
    display: flex;
    align-items: center;
    column-gap: 1.4rem;
    margin-top: 0.8rem;
    width: 95%;
}

.card-btn-remove {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 0;
    text-decoration: underline;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s;
}
.card-btn-remove:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.item-footer:last-child {
    display: flex;
    justify-content: center;
    background-color: var(--gray-100);
    border-top: 1px solid var(--primary-color);
    padding: 1.6rem;
}
.cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.grid-total-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-footer-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    letter-spacing: 0.05rem;
    margin-bottom: 0;
}
.cart-footer-total {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    margin-bottom: 0;
    color: var(--primary-color);
}
.btn-checkout {
    height: 48px;
    width: 100%;
    font-size: 1.125rem;
    letter-spacing: 0.05rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border: 0;
    border-radius: var(--border-radius-full);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    text-align: center;
    transition: all 0.3s;
}
.btn-checkout:hover {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* = fin aside carrito = */

/*= 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.open,
.overlay-carrito {
    opacity: 1;
    visibility: visible;
}
.overlay-carrito {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    cursor: pointer;
}

/* Carrito Pagina Livewire */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    color: var(--gray-500);
}

.empty-cart-message svg {
    opacity: 0.5;
}

.quantity-decrease:disabled,
.quantity-increase:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.wrapper-table {
    position: relative;
}

.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);
    padding: 1.6rem;
    transition: all 0.6s;
    z-index: 9999;
}

.menu-mobile .item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent !important;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
}

.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;
    outline: 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;
    padding-left: 0;
    margin-bottom: 0;
}

.list-nav-submenu {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    padding: 0.75rem 1.6rem;
    padding-left: 0;
    background: transparent;
    color: var(--text-color);
    outline: 0;
    border: 0;
    transition: all 0.3s;
}
.list-nav-submenu:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    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: 1rem;
}

.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;
}

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

.list-mobile-footer {
    list-style: none;
    border-top: 1px solid var(--gray-300);
    padding-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    margin-bottom: 0;
}
.list-mobile-footer li a {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 0.9rem;
    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 =*/

/* = inicio header scroll = */

.header-index {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
}

.header-index .input-header-search::placeholder {
    color: var(--white);
}

.header-index .link-nav-header {
    color: var(--white);
}

.header-index .input-header-search {
    border: 1px solid var(--white);
}

.header-index .btn-menu-mobile img,
.header-index .cart-button-icon {
    filter: brightness(0) invert(1);
}

.header-index .cart-button-count {
    background-color: var(--primary-color);
    color: var(--white);
}

.header-scroll {
    background-color: var(--primary-color);
}

.header-scroll .input-header-search {
    border: 1px solid var(--gray-300);
}
.header-scroll .img-header-logo {
    filter: unset;
}
.header-scroll .btn-menu-mobile img {
    filter: unset;
}
.header-scroll .cart-button-count {
    color: var(--primary-color);
    background-color: var(--white);
}

/* = fin header scroll = */

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

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

/* = inicio hero = */

.hero-carousel {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.hero-carousel .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.slide-content {
    position: absolute;
    bottom: -18rem;
    z-index: 3;
    max-width: 670px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    margin: 0;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.3;
    max-width: 640px;
}

/* custom navigation */
.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* animaciones */
.hero-carousel .slide-content h1,
.hero-carousel .slide-content p {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

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

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

/* Custom Pagination */
.swiper-pagination {
    bottom: 14px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 1.5rem;
    background: var(--primary-color);
    border-color: var(--white);
    border-radius: 1.875rem;
    transform: scale(1.2);
}

/* = fin hero = */

/* = inicio nosotros = */

/* = inicio about = */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    height: fit-content;
}

.about-image-wrapper {
    border-radius: var(--border-radius-xl);
    width: 100%;
}

.about-text-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-tag {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 0.5rem 0.875rem;
    width: fit-content;
}

.about-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--primary-color);
    font-weight: bold;
    margin-top: 2rem;
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s;
}

.about-button:hover {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* = fin about = */

/* = fin nosotros = */

/* = inicio contador features = */

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 4;
}

.features-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.features-text .description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.feature-box {
    background-color: var(--terciary-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.feature-box .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--secondary-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    padding: 1rem;
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.feature-box p {
    color: var(--gray-600);
    font-size: 1rem;
}

.feature-box img {
    height: 38px;
    width: 38px;
    animation: pulseRotate 2s ease-in-out infinite;
}

.feature-box:hover {
    transform: perspective(600px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* animaciones */

@keyframes pulseRotate {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.1) rotate(-2deg);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.15) rotate(2deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.1) rotate(-1deg);
        opacity: 0.95;
    }
}

/* = fin contador features = */

/* = inicio servicios = */

.products-section .container {
    position: relative;
    z-index: 4;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.services-header .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 0;
}

.btn-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    border-radius: var(--border-radius-full);
    color: var(--white);
    font-weight: 600;
    padding: 0.4375rem 0.875rem 0.4375rem 0.5rem;
    width: 139px;
    transition: all 0.3s;
}

.icon-all {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 100%;
    color: var(--primary-color);
    padding: 0.5rem;
}

.btn-text {
    transition: opacity 0.3s;
}

.btn-all:hover {
    background: var(--primary-color);
    color: var(--primary-color);
    padding: 0.4375rem 0.5rem;
}

.btn-all:hover .btn-text {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.btn-all:hover .icon-all {
    border-radius: var(--border-radius-full);
    width: calc(139px - 1rem);
}

.btn-all:hover .btn-text {
    display: none;
}

.services-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.services-controls .swiper-pagination {
    flex: 1;
    height: 4px;
    background: var(--gray-300);
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
}

.services-controls .swiper-pagination-progressbar-fill {
    --swiper-pagination-color: var(--primary-color);
}

.grid-carousel {
    display: grid;
    grid-template-columns: 100%;
    column-gap: 1.6rem;
    row-gap: 1.6rem;
}
.grid-carousel-invert {
    grid-template-columns: 100%;
}

.card-carousel-frame {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all 0.3s;
}

.img-carousel-frame {
    border-radius: var(--border-radius-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.img-carousel-frame:hover {
    transform: scale(1.05);
    transition: all 1s;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    height: 480px;
}

.service-card-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.service-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-wrap: balance;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 3.875rem;
    margin-bottom: 0.5rem;
}

.service-card-content span {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    line-height: 1.6;
    color: var(--text-color);
    text-wrap: balance;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.services-swiper .service-card-content span,
.services-swiper .service-card-content span * {
    text-align: left !important;
}

.service-link {
    display: inline-block;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    width: fit-content;
}
.service-link::before {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    bottom: 0;
    background: var(--text-color);
    transition: transform 0.01s linear;
    transform-origin: 0 50%;
    transform: scaleX(0);
}
.service-link::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    bottom: 0;
    background: var(--text-color);
    transform: scaleX(1);
    transition: transform 0.01s linear;
    transform-origin: 100% 50%;
}

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

.service-card:hover h3 {
    color: var(--gray-600);
}

.service-card:hover .service-card-image img {
    transform: scale(1.2);
    transition: all 1s;
}

.service-card:hover .service-link::before {
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
.service-card:hover .service-link::after {
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.customization-button-prev,
.customization-button-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-full);
    color: var(--white);
    transition: all 0.3s;
}

.customization-button-prev {
    left: 4px;
}

.customization-button-next {
    right: 4px;
}

.customization-button-prev:hover,
.customization-button-next:hover {
    background-color: var(--terciary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* = fin servicios = */

/*= inicio banner section =*/

/*= Banner Medio =*/

.section-banners {
    padding-top: 3rem;
}

.middle-banner-row {
    row-gap: 2rem;
}
.middle-banner-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    display: block;
}
.middle-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.middle-banner-card:hover .middle-banner-image {
    transform: scale(1.05);
}

.middle-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.middle-banner-content {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    max-width: 50%;
}

.middle-banner-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.middle-banner-content p {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .middle-banner-content {
        left: 1.5rem;
        max-width: 80%;
    }
    .middle-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }
    .middle-banner-content {
        top: auto;
        bottom: 2rem;
        transform: none;
    }
}

/*= fin banner section  =*/

/* = inicio marcas = */

.brands-section {
    position: relative;
    overflow: hidden;
}

.brands-section .container {
    z-index: 4;
}

.carousel-brands,
.carousel-blogs {
    padding-top: 2rem;
}

.card-brand {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s;
}
.image-brand {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.card-brand:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
}

/* = fin marcas = */

/* = inicio novedades = */

.blog-section {
    background-color: var(--terciary-color);
}

.card-noticias {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    transition: all 0.3s;
}
.card-img-noticias {
    width: 100%;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}
.img-noticias {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 460px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: all 4s;
}
.card-text-noticias {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.fecha-noticias {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding-top: 0.8rem;
    padding-right: 0.8rem;
    padding-left: 0;
    padding-bottom: 0;
    background: var(--white);
    border-radius: 0 0.4rem 0 0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    line-height: 1.4;
    color: var(--primary-color);
}
.title-noticias {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 1.3;
    color: var(--primary-color);
    text-wrap: balance;
    margin-bottom: 0;

    height: 54px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.text-noticias {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.card-noticias:hover .img-noticias {
    transform: scale(1.1);
    transition: all 2s;
}

.card-noticias:hover .title-noticias {
    color: var(--gray-600);
}

.link-noticias {
    font-size: 1rem;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    width: fit-content;
}
.link-noticias::before {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    bottom: 0;
    background: var(--text-color);
    transition: transform 0.01s linear;
    transform-origin: 0 50%;
    transform: scaleX(0);
}
.link-noticias::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    bottom: 0;
    background: var(--text-color);
    transform: scaleX(1);
    transition: transform 0.01s linear;
    transform-origin: 100% 50%;
}
.card-noticias:hover .link-noticias {
    color: var(--primary-color);
}
.card-noticias:hover .link-noticias::before {
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}
.card-noticias:hover .link-noticias::after {
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* = fin novedades = */

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

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

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

.culture-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.grid-culture {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    background-color: var(--terciary-color);
    padding: 4rem 2rem;
    border-radius: var(--border-radius-xl);
}
.card-culture {
    display: grid;
    align-items: start;
    gap: 2rem;
    grid-template-columns: 1fr;
}
.card-culture:first-child {
    padding-right: 1rem;
}
.card-culture:last-child {
    padding-left: 1rem;
}

.img-culture {
    width: 5rem;
    height: auto;
}
.title-culture {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.875rem;
}
.subtitle-culture {
    display: block;
    color: var(--gray-500);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* = inicio timeline = */

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

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    transform: translateY(30px);
}

.timeline-header h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    font-family: var(--font-secondary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1rem;
}

.timeline-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    /* background: linear-gradient(
        180deg,
        var(--primary-color),
        var(--secondary-color)
    ); */
    background: var(--primary-color);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 5rem;
    padding-left: 64px;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--terciary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content {
    background: var(--terciary-color);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(51, 65, 125, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.timeline-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-item-image {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-xl);
    aspect-ratio: 1000 / 520;
    object-fit: cover;
    margin-top: 1rem;
}

/* = fin timeline = */

/* = inicio video = */
.video-about-section {
    padding-bottom: 2rem;
}

.video-text {
    margin-bottom: 2rem;
}

.video-text h2 {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.video-text p {
    color: var(--text-color);
}

.video-frame {
    max-width: 950px;
    margin: 0 auto;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-banner-nosotros {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.video-frame iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* = fin video = */

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

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

.catalogo-page {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.grid-catalogo {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-gap: 1.6rem;
}

.banner-catalogo {
    margin-bottom: 2rem;
}

.img-banner-catalogo {
    border-radius: var(--border-radius-xl);
}

/* filtro aside bar */
.aside-filtros {
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-md);
    padding: 1.6rem;
    padding-left: 1rem;
}
.title-toolbox-aside {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 1;
    color: var(--primary-color);
    padding-left: 0;
}
.aside-filtros .item-head {
    display: none;
}
.aside-filtros .item-head {
    align-items: center;
    justify-content: space-between;
}
.cart-head-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.02rem;
    margin-bottom: 0;
}
.cart-head-btn {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background: var(--gray-100);
    border: 0;
    outline: 0;
    border-radius: 1.6rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-color);
    transition: all 0.3s;
}
.cart-head-btn img {
    width: 16px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.card-filter {
    border-top: 1px solid var(--primary-color);
    padding-top: 1.4rem;
    margin-top: 1.4rem;
}
.btn-aside {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    outline: 0;
    padding-left: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.02rem;
}
.btn-aside img,
.btn-subaside img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.card-content-aside {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.card-content-aside.active {
    height: 100%;
    transition: all 0.3s;
}
.list-aside {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-left: 0;
}
.list-aside li {
    margin-bottom: 0.5rem;
}
.input-filtro {
    display: none;
}
.label-filtro {
    font-size: 0.9rem;
    color: var(--gray-700);
    padding-left: 1.6rem;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    text-transform: capitalize;
}
.label-filtro:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
}
.label-filtro:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background-image: url(../images/icons/check.svg);
    background-position: center;
    background-size: 8px;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.input-filtro[type="checkbox"]:checked ~ .label-filtro::after {
    opacity: 1;
    visibility: visible;
}

/* catalogo productos */
.title-tolbox {
    font-size: var(--font-size-xl);
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* filtro ordenar */
.toolbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 2rem;
    padding-top: 0.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-color);
}
.toolbox-item {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.toolbox-item label {
    font-size: 0.94rem;
}
.toolbox-left {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.select-custom .input-filter {
    display: block;
    height: 35px;
    width: 150px;
    border-radius: 50px;
    border: 1px solid var(--gray-300);
    padding-left: 1rem;
    color: var(--text-color);
    font-size: 0.85rem;
}
.select-custom .input-filter:focus {
    outline-color: var(--secondary-color);
}

.btn-filtro {
    display: none;
}

.grid-products {
    display: grid;
    grid-gap: 1.4rem;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

/* = inicio card product = */

/*= inicio products section =*/

.card-product {
    display: block;
    position: relative;
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-xl);
    background: var(--white);
    overflow: hidden;
}
.card-product-image {
    display: block;
    width: 100%;
    padding: 1rem;
    aspect-ratio: 1/1;
    overflow: hidden;
    transition: all 1s;
}
.img-product {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    aspect-ratio: 1/1;
    transition: all 1s;
}

.card-product:hover .img-product {
    transform: scale(1.06);
    transition: all 1s;
}
.card-product-content {
    padding-left: 1.4rem;
    padding-top: 0.8rem;
    padding-right: 1.4rem;
    padding-bottom: 1.2rem;
}
.card-product-tag {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    letter-spacing: 0.04rem;
    margin-bottom: 0.5rem;
    text-align: left;
    border: 1px solid var(--gray-600);
    width: fit-content;
    border-radius: 1rem;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s;
}
.card-product-title {
    padding-top: 0.25rem;
}
.card-product-title a {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04rem;
    height: 51px;
    text-align: left;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.3s;
}
.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-add-cart {
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 2rem;
    border: 1px solid var(--primary-color);
    border: none;
    line-height: 1.2;
    min-height: 48px;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background-color: var(--terciary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.card-product:hover .card-product-title a {
    color: var(--gray-600);
}

.card-product-tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/*= fin products section =*/

/* = fin card product = */

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

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    border-radius: var(--border-radius-xl);
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding-bottom: 2rem;
}

.product-brand {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-code {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-product-cart {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.2;
    text-decoration: none;
    min-height: 48px;
    width: 100%;
}

.btn-product-cart img {
    filter: brightness(0) invert(1);
}

.btn-product-cart:hover {
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-product-cart:hover img {
    filter: var(--filter-primary);
}

.btn-product-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--border-radius-full);
    background: var(--green-whatsapp);
    color: var(--white);
    font-size: 1.05rem;
    min-height: 48px;
    width: 100%;
    text-decoration: none;
}

.btn-product-whatsapp:hover {
    background: #1db954;
}

.accordion-producto .accordion-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.accordion-producto .accordion-button {
    background: var(--terciary-color);
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-producto .accordion-button:hover {
    background: var(--gray-100);
}

.accordion-producto .accordion-body {
    color: var(--text-color);
    line-height: 1.6;
    padding: 1.25rem;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.spec-list {
    list-style: none;
    padding-left: 0;
}

.spec-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f7fafc;
    display: flex;
    flex-direction: column;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-color);
}

.related-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.related-title {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2rem;
    text-align: center;
}

.swiper-product .swiper-button-next,
.swiper-product .swiper-button-prev {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.swiper-product .swiper-button-next:hover,
.swiper-product .swiper-button-prev:hover {
    background-color: var(--terciary-color);
    border: 1px solid var(--primary-color);
}

.swiper-product .swiper-button-next:hover:after,
.swiper-product .swiper-button-prev:hover:after {
    color: var(--primary-color);
}

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

/*==== INICIO CATALOGO SERVICIOS ====*/

.services-page {
    padding-top: 1rem;
    padding-bottom: 6rem;
}

.row-services {
    row-gap: 1.6rem;
}

/*==== FIN CATALOGO SERVICIOS ====*/

/*==== INICIO FICHA SERVICIOS ====*/

.service-main {
    padding-bottom: 6rem;
}

.service-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-xl);
    padding: 2rem 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.875rem;
}

.service-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-full);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.4375rem 0.875rem 0.4375rem 0.5rem;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s;
}

.icon-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-whatsapp);
    border-radius: 100%;
    color: var(--white);
    padding: 0.5rem;
}

.btn-whatsapp:hover {
    background: var(--primary-color);
    color: var(--white);
}
.btn-whatsapp:hover .icon-whatsapp {
    background-color: var(--white);
    color: var(--green-whatsapp);
}

.service-info {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
}

.service-info-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Benefits List */
.accordion-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-benefits .benefit-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.accordion-benefits .accordion-button {
    width: 100%;
    background: var(--terciary-color);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    text-align: left;
    border: none;
    border-left: 4px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-benefits .benefit-item.active .accordion-button {
    color: var(--primary-color);
}

.accordion-benefits .benefit-icon {
    transition: transform 0.3s ease;
}

.accordion-benefits .accordion-button:not(.collapsed) .benefit-icon {
    transform: rotate(180deg);
}

.accordion-benefits .accordion-body {
    max-height: none; /* Bootstrap maneja la altura */
    padding: 1rem;
    background: var(--white);
}

.accordion-benefits .accordion-body p {
    margin-bottom: 0;
}

/*==== FIN FICHA SERVICIOS ====*/

/* ==== INICIO CARRITO ==== */

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

.wrapper-table {
    padding: 1.5rem;
    padding-top: 0;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
}
.table th,
.table td {
    border-top: none;
}
.table tbody {
    border-bottom: 2px solid var(--neutral-color);
}
.table thead th {
    border-bottom: 2px solid var(--neutral-color);
    font-size: 1.125rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    vertical-align: bottom;
}
.table td {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 0;
    padding-right: 2rem;
    vertical-align: middle;
}
.product-col .product {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin: 0;
    padding-right: 2rem;
    box-shadow: none;
}
.product-col .product-media {
    margin-bottom: 0;
}
.product-col .product-media img {
    display: block;
    width: 80px;
    border-radius: var(--border-radius-md);
}
.product-col .product-title a {
    display: inline-block;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s;
}
.table .price-col {
    font-weight: 400;
    font-size: 1rem;
}
.table .total-col {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 400;
}
.quantify-value-cart {
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-xl);
    height: 48px;
    padding: 0.5rem;
}
.product-col .product-title a:hover {
    color: var(--primary-dark);
}

/* aside carrito */
.wrapper-form-carrito {
    background: var(--background-color);
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    padding: 1.5rem;
}
.title-form {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.05rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    margin-bottom: 0.5rem;
}
.input-control-cart {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--gray-300);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.6rem;
    transition: all 0.3s;
}
.btn-confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border: 0;
    border-radius: var(--border-radius-full);
    font-size: 1.125rem;
    outline: 0;
    min-height: 48px;
    margin-top: 2rem;
    width: 100%;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}
.btn-confirmation:hover {
    color: var(--primary-color);
    background-color: var(--white);
    border: 1px solid var(--primary-color);
}

.quantity-label,
.installment-label {
    display: block;
    margin-bottom: 0.5rem;
}
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-full);
    height: 42px;
    overflow: hidden;
    padding: 0.35rem;
    width: 140px;
}
.quantity-input {
    font-size: 1rem;
    color: var(--text-color);
    background-color: transparent;
    text-align: center;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
}
.quantity-decrease,
.quantity-increase {
    font-size: 1.3rem;
    color: var(--text-color);
    border: 0;
    outline: 0;
    background: transparent;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.quantity-decrease:hover,
.quantity-increase:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.quantity-decrease svg,
.quantity-increase svg {
    width: 14px;
    height: 14px;
}
.quantity-decrease:hover svg,
.quantity-increase:hover svg {
    fill: var(--white);
}

/* ==== FIN CARRITO ==== */

/* ==== INICIO MODAL CARRITO ==== */
.title-modal {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
    text-align: center;
    margin-bottom: 1.2rem;
}
.modal-header {
    border-bottom: 0;
}
.btn-close:focus {
    box-shadow: 0 0 0 0.25rem var(--primary-color);
}
.card-product-modal {
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    padding: 1rem;
}
.product-title-modal {
    color: var(--gray-600);
    font-size: 1.15rem;
    letter-spacing: 0.02rem;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}
.details-product-modal {
    display: flex;
    flex-wrap: wrap;
    align-items: self-end;
    justify-content: center;
    gap: 0.8rem;
}
.product-cantidad-modal {
    letter-spacing: 0.02rem;
    line-height: 1.2;
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 0.875rem;
}
.grid-buttons-modal {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.btn-primary {
    height: 48px;
    width: 100%;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: 1.6rem;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    transition: all 0.3s;
}
.btn-outline-primary-2 {
    height: 48px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: 1.6rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: var(--terciary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-outline-primary-2:hover {
    color: var(--primary-color);
    background: var(--terciary-color);
    border: 1px solid var(--primary-color);
}

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

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

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

.contact-section-title {
    font-size: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-dark);
}
.select-control {
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-base);
    height: 48px;
    width: 100%;
    padding: 0.375rem 0.75rem;
    transition: all 0.3s;
}
.form-file-group {
    display: flex;
    flex-direction: column;
}

.form-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: var(--gray-200);
    border: 1px dashed var(--gray-400);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-file-label:hover {
    background-color: var(--gray-300);
}

.form-file-input {
    display: none;
}

.file-name {
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--secondary-color);
}

.grid-contacto {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
}
.item-contacto {
    background: var(--gray-100);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
}
.row-contacto {
    display: flex;
    flex-direction: column;
}
.title-form {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.04rem;
}
.subtitle-form {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.04rem;
}
.form-control-contact {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--gray-400);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--border-radius-md);
    transition: all 0.3s;
}
.form-control-textarea {
    display: block;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-md);
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    box-shadow: none;
    height: 80px;
}
.contacto-map {
    overflow: hidden;
    border-radius: var(--border-radius-md);
    margin-top: auto;
}
.contacto-map iframe {
    border-radius: var(--border-radius-md);
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 2rem;
    font-size: var(--font-size-base);
    cursor: pointer;
    height: 48px;
    width: 200px;
    padding: 0 var(--spacing-xl);
    overflow: hidden;
    transition: all 0.3s;
}
.submit-button:hover {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
    background: var(--terciary-color);
    transition: transform 0.3s;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon-bubble {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--border-radius-md);
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-list a {
    display: flex;
    border-radius: 0.25rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    align-items: start;
    justify-content: start;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-list a:hover {
    color: var(--gray-600);
    font-weight: 600;
}

.contact-list li a:hover {
    color: var(--secondary-color);
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.whatsapp-buttons a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-buttons-phone {
    font-size: 0.9rem;
}

.whatsapp-buttons-area {
    font-size: 0.8rem;
    line-height: 1;
}

.whatsapp-buttons a:hover {
    color: var(--gray-600);
    font-weight: 600;
}

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

/*==== Paginas de Noticias ====*/
.seccion-noticias-pag,
.seccion-noticias-post {
    padding-top: 4rem;
    padding-bottom: 6rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    position: relative;
    top: -1rem;
    z-index: 1;
}
.row-novedades {
    row-gap: 2rem;
}
.grid-noticias-pag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.grid-noticias-pag .card-text-noticias .title-noticias {
    height: auto;
}
.seccion-noticias-post .card-text-noticias .title-noticias {
    font-size: 1.8rem;
    height: auto;
}
.text-post-noticias {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.text-post-noticias .note-video-clip {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-lg);
    margin: 1.5rem 0;
}
.text-post-noticias.mb-1 {
    margin-bottom: 1rem;
}
/* .aside-noticias {
    position: sticky;
    top: 100px;
    z-index: 9;
} */
.card-aside-noticias {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}
.title-aside-noticias {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.04rem;
    border-bottom: 1px solid var(--gray-300);
}
.list-aside-noticias {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.link-aside {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    text-decoration: none;
    margin-bottom: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.link-aside:hover {
    background: var(--gray-200);
    border-radius: 0.5rem;
    color: var(--primary-color);
    padding-left: 1rem;
}
.categoria-link {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    text-decoration: none;
    margin-bottom: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-200);
    border-radius: 0.5rem;
    color: var(--primary-color);
    padding-left: 1rem;
}
.list-aside-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.pill-aside {
    display: block;
    width: fit-content;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    color: var(--text-color);
    background: var(--gray-200);
    border-radius: 30px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s;
}
.pill-aside:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pill-select {
    display: block;
    width: fit-content;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s;
}

/*==== Fin Paginas de Noticias ====*/

/*==== PostNoticias ====*/
.seccion-postnoticias {
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.date-postnoticias {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.title-postnoticias {
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.subtitle-postnoticias {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0rem;
}
.img-postnoticias {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
}
.text-postnoticias {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.02rem;
    margin-bottom: 2rem;
}

/*==== Fin PostNoticias ====*/

/*==== Inicio Politicas de Calidad ====*/

.politicas-main,
.privacidad-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.politicas-info-section {
    margin-top: 2rem;
}

.content-grid {
    display: grid;
    column-gap: 4rem;
    row-gap: 2rem;
    margin-bottom: 40px;
    background: var(--terciary-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    padding: 2rem;
}

.iso-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.iso-image {
    width: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.card-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.card-text-download {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(
        120deg,
        transparent 0%,
        var(--primary-color) 0%,
        var(--primary-color) 100%,
        transparent 100%
    );
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding: 2px 0;
    font-weight: 600;
}

.download-section {
    background: var(--text-light);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.download-btn:hover {
    color: var(--primary-color);
    background: var(--white);
    border: 1px solid var(--primary-color);
}

.download-icon {
    width: 20px;
    height: 20px;
}

/*==== Fin Politicas de Calidad ====*/

/* ==== INICIO LOGIN ==== */

.seccion-login {
    padding-top: 6rem;
    padding-bottom: 8rem;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url(../videos/video-1-0.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.row-login {
    justify-content: center;
    gap: 1rem;
}
.form-box {
    max-width: 575px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white);
    padding: 3rem 4rem 3rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}
.title-login {
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    padding-top: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    text-align: center;
}
.form-login {
    margin-top: 2rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.form-group .form-control {
    height: 46px;
    border-radius: var(--border-radius-sm);
}
.form-group .form-control:focus {
    box-shadow: 0 0 0 0.25rem var(--shadow-sm);
    border-color: var(--primary-color);
}
.forgot-link {
    display: block;
    text-align: center;
    color: var(--gray-700);
    text-decoration: underline;
    margin-top: 2rem;
    transition: all 0.3s;
}
.forgot-link:hover {
    color: var(--gray-600);
    text-decoration: none;
}
.nav.nav-pills.nav-login {
    column-gap: 0;
    justify-content: center;
    border: 0;
    margin-bottom: 2rem;
}
.nav.nav-pills.nav-login .nav-item .nav-link {
    border-bottom: 2px solid transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-color);
    font-size: 1.25rem;
    line-height: 1.2;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}
.nav.nav-pills.nav-login .nav-item .nav-link.active {
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05rem;
}
.form-choice {
    color: var(--text-color);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: -0.025em;
}
.text-login {
    font-size: 1.1rem;
}
.btn-login.btn-g {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.02rem;
    text-align: center;
    margin: 0 auto;
    height: 48px;
    padding: 0.8rem 1rem;
    transition: all 0.3s;
}
.btn-login.btn-g:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}
.rm-divider-or {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    font-weight: bold;
    text-transform: uppercase;
}
.rm-divider-or div {
    flex: 1;
    height: 1px;
    background: var(--gray-400);
    margin: 0 10px;
}
.toggle-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.eye-open-icon {
    display: none;
    width: 24px;
    height: 24px;
}
.eye-closed-icon {
    display: inline;
    width: 24px;
    height: 24px;
}

/* ==== FIN LOGIN ==== */

/* ==== INICIO Mi Cuenta ==== */

.seccion-mi-cuenta {
    padding-top: 2rem;
    padding-bottom: 8rem;
}
.row-cuenta {
    row-gap: 1.6rem;
}
.nav-cuenta {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    background: var(--terciary-color);
    list-style: none;
    margin-bottom: 0;
    position: sticky;
    top: 12px;
}
.nav-cuenta li:last-child .nav-link {
    border-bottom: 0;
}
.nav-cuenta li .nav-link {
    font-size: 1rem;
    letter-spacing: 0.04rem;
    color: var(--text-color);
    line-height: 1.5;
    text-align: left;
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--terciary-color);
    padding: 0.8rem 0.5rem;
    outline: 0;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    transition: all 0.3s;
}
.nav-cuenta li .nav-link.active {
    padding-left: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    border-bottom: 1px solid var(--primary-color);
}
.nav-cuenta li .nav-link:hover {
    padding-left: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    border-bottom: 0;
}
.tab-cuenta {
    padding: 2rem;
    border-radius: var(--border-radius-md);
    background: var(--terciary-color);
}
.title-tab-cuenta {
    font-size: 1.8rem;
    font-family: var(--font-primary);
    letter-spacing: 0.04rem;
    color: var(--text-color);
    margin-bottom: 1.6rem;
}
.subtitle-tab-cuenta {
    font-size: 1.4rem;
    font-family: var(--font-primary);
    letter-spacing: 0.04rem;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.form-group {
    position: relative;
    margin-bottom: 1rem;
}
.form-group label {
    color: var(--text-color);
    font-size: 1rem;
    letter-spacing: 0.02rem;
    margin-bottom: 0.5rem;
}
.form-map {
    border-radius: 1rem;
    overflow: hidden;
}
.grid-btn-cuenta {
    width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    margin-top: 1.6rem;
}
.grid-compras {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.4rem;
    margin-bottom: 2rem;
}
.grid-compras:last-child {
    margin-top: 2rem;
}
.card-compras {
    padding: 1.3rem;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-600);
    transition: all 0.3s;
}
.list-card-compras {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card-actions-compras {
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    flex-wrap: wrap;
}
.text-sin-datos {
    padding: 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    text-align: center;
}
.btn-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    width: 190px;
    margin-top: 1rem;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.02rem;
    color: var(--white);
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}
.btn-principal:hover {
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-principal:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(58%) saturate(5718%)
        hue-rotate(264deg) brightness(80%) contrast(122%);
}
.btn-principal.mx-auto {
    margin: 0 auto;
}
.btn-principal.mt-0 {
    margin-top: 0;
}
.btn-outline-principal {
    display: block;
    width: 190px;
    margin-left: auto;
    margin-left: auto;
    margin-top: 1rem;
    background: var(--white);
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.02rem;
    color: var(--primary-color);
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s;
}
.btn-outline-principal.mx-auto {
    justify-content: center;
}

.btn-outline-principal:hover {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
}
.btn-delete {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    width: fit-content;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    color: var(--primary-color);
    min-width: 127px;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-delete img {
    filter: invert(55%) sepia(72%) saturate(7082%) hue-rotate(356deg)
        brightness(98%) contrast(85%);
}
.btn-delete:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
}
.btn-delete:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%)
        hue-rotate(223deg) brightness(117%) contrast(96%);
}
.table.table-tarjetas td {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

textarea.form-control-textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 0.6rem;
    padding: 0.375rem 0.75rem;
    background: transparent;
    font-size: 16px;
    box-shadow: none;
    height: 80px;
}

.btn-cargar-tarjeta {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==== FIN Mi Cuenta ==== */

/* ==== INICIO RESTABLECER CONTRASENHA ==== */

.card-reset {
    background-color: var(--terciary-color);
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem;
}
.card-header-reset {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
}
.btn-submit {
    margin-top: 2rem;
}

/* ==== FIN RESTABLECER CONTRASENHA ==== */

/* ==== INICIO RESUMEN COMPRA ==== */

.orden-compra {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--gray-400);
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.btn-resumen {
    font-size: 1.125rem;
    height: 48px;
    max-width: 400px;
    margin: 0 auto;
}

.card-header h4 {
    margin-bottom: 0;
    letter-spacing: 0.02rem;
}

/* ==== FIN RESUMEN COMPRA ==== */

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

.footer {
    position: relative;
    background-color: var(--gray-200);
    color: var(--text-color);
    padding-top: 2rem;
    overflow: hidden;
}
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: 2px solid var(--primary-color);
    margin-top: 2rem;
    padding-top: 2rem;
}
.footer-column:nth-child(2),
.footer-column:nth-child(3),
.footer-column:nth-child(4) {
    display: flex;
    gap: 1rem;
}
.footer-logo {
    width: auto;
    height: 50px;
}

.footer-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.footer-description span {
    color: var(--primary-color);
    font-weight: 700;
}
.footer-social {
    display: flex;
    gap: 1.125rem;
    padding: 0;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}
.footer-social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(1px 0 0 var(--primary-color))
        drop-shadow(0 1px 0 var(--primary-color))
        drop-shadow(-1px 0 0 var(--primary-color))
        drop-shadow(0 -1px 0 var(--primary-color));
    transition: all 0.3s;
}
.footer-social a:hover .footer-social-icon-img {
    filter: drop-shadow(1px 0 0 var(--white)) drop-shadow(0 1px 0 var(--white))
        drop-shadow(-1px 0 0 var(--white)) drop-shadow(0 -1px 0 var(--white));
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 38px;
    height: 38px;
}
.footer-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    padding: 0;
    margin-bottom: 1.5rem;
}
.footer-links a,
.footer-links p {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 1.05rem;
    letter-spacing: 0.02rem;
    line-height: 1.2;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-icon {
    color: var(--primary-color);
}
.footer-links svg {
    width: 22px;
    height: 22px;
}

.footer-feat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

.footer-contact img,
.footer-links img {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact a:hover img,
.footer-info a:hover img {
    filter: var(--filter-primary);
}

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

.footer-span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.container-porta {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--primary-color);
    margin-top: 2rem;
}
.text-footer {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    padding-top: 1.2rem;
    padding-bottom: 1rem;
    letter-spacing: 0.02rem;
    margin-bottom: 0;
}
.text-footer a {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    letter-spacing: 0.05rem;
    text-decoration: none;
}

.footer-phones {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.footer-list-phones {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}

.footer-link-phones {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s;
}

.icon-link-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-whatsapp);
    border-radius: 50%;
    color: var(--white);
    width: 48px;
    height: 48px;
    padding: 0.5rem;
}
.icon-link-phones svg {
    height: 32px;
    width: 32px;
}

.text-link-phones {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.text-link-phones .title {
    font-size: 1rem;
    color: var(--gray-600);
}

.text-link-phones .phone {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
}

.footer-link-phones:hover .phone {
    color: var(--green-whatsapp);
}

.footer-link-phones:hover .icon-link-phones {
    transform: scale(1.05);
}

/* numero de whatsapp fijo */

.container-fixed {
    position: fixed;
    right: 2rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

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

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

.icon-whatsapp-fixed img {
    width: 32px;
    height: 32px;
}
.btn-whatsapp-fixed:hover img {
    animation: shake 1s;
    animation-iteration-count: infinite;
    transition: all 1s;
}
.text-whatsapp-fixed {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
    text-align: right;
    letter-spacing: 0.02rem;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(
        rgba(214, 209, 196, 0.5),
        rgba(214, 209, 196, 0.5)
    );
    backdrop-filter: blur(12px);
}
@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 ==== */

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

@media (min-width: 576px) {
    .container {
        max-width: calc(100% - 1.5rem);
    }

    /*==== INICIO INDEX ====*/
    .features-boxes {
        grid-template-columns: repeat(2, 1fr);
        flex: 1;
        gap: 2rem;
    }
    /*==== FIN INDEX ====*/

    /*==== INICIO NOSOTROS ====*/
    .card-culture {
        display: grid;
        align-items: start;
        gap: 2rem;
        grid-template-columns: 70px 1fr;
    }
    .img-culture {
        width: 10rem;
        height: auto;
    }
    /*==== FIN NOSOTROS ====*/

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

    .contact-card.email {
        flex-direction: row;
    }

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

    /*==== INICIO FICHA ====*/
    .spec-list li {
        flex-direction: row;
        justify-content: space-between;
    }
    .spec-value {
        text-align: right;
    }
    /*==== FIN FICHA ====*/
}

@media (min-width: 768px) {
    /* == inicio utilitarios == */
    .container {
        max-width: calc(100% - 2rem);
    }

    .hero-section-title {
        font-size: 3.5rem;
        font-family: var(--font-secondary);
    }

    .services-header .section-title {
        font-size: 2.8rem;
    }
    /* == FIN utilitarios == */

    /* = inicio timeline = */
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding: 0 3rem;
        margin-bottom: 6rem;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 3rem;
        padding-left: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: auto;
        padding-left: 3rem;
        padding-right: 0;
    }

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

    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(odd) .timeline-dot {
        right: -23px;
        left: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 0;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

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

    .timeline-content {
        padding: 2.5rem;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .timeline-item-image {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        width: calc(100% - 3rem);
        aspect-ratio: 1000 / 520;
        object-fit: cover;
    }

    .timeline-item:nth-child(odd) .timeline-item-image {
        left: calc(100% + 3rem);
    }

    .timeline-item:nth-child(even) .timeline-item-image {
        right: calc(100% + 3rem);
        left: auto;
    }
    /* = fin timeline = */

    /* = inicio ficha productos = */
    .product-info {
        padding-top: 2.5rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    .product-card-footer {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .btn {
        flex: 1;
    }

    .quantity-controls {
        max-width: 250px;
    }

    .related-title {
        font-size: var(--font-size-xl);
    }
    /* = fin ficha productos = */

    /* = inicio ficha servicios = */
    .service-container {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 2rem 2rem;
        justify-content: center;
    }

    .service-image {
        flex: 3;
    }

    .service-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-title {
        font-size: 2.8rem;
    }

    .service-description {
        font-size: 1.1rem;
    }
    /* = fin ficha servicios = */

    /* = inicio politicas de calidad = */
    .politicas-info-section {
        margin-top: 4rem;
    }

    .content-grid {
        grid-template-columns: 1fr 2fr;
        align-items: start;
        padding: 4rem;
    }

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

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
    /* = fin politicas de calidad = */

    /* = inicio mi cuenta = */
    .grid-compras {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
    /* = fin mi cuenta = */

    /*=== INICIO footer ===*/
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2rem;
    }
    /*=== FIN footer ===*/
}

@media (min-width: 992px) {
    /*=== INICIO index ===*/

    .hero-carousel .swiper-button-next,
    .hero-carousel .swiper-button-prev {
        display: flex;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }

    .about-text-title {
        font-size: var(--font-size-xl);
    }

    .features-text h2 {
        font-size: var(--font-size-xl);
        font-family: var(--font-secondary);
    }

    .video-text h2 {
        font-size: 2.5rem;
    }

    /*=== FIN index ===*/

    /*=== INICIO NOSOTROS ===*/
    .grid-culture {
        flex-direction: row;
    }

    .features-grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .features-text {
        width: 40%;
        padding-right: 2rem;
    }

    .video-about-section {
        padding-top: 2rem;
    }
    .video-text {
        text-align: center;
    }
    .video-text p {
        color: var(--gray-600);
        max-width: 400px;
        margin: 0 auto;
    }
    /*=== FIN NOSOTROS ===*/

    /*=== INICIO SERVICIOS ===*/
    .services-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    /*=== FIN SERVICIOS ===*/

    /*== INICIO CATALOGO ==*/
    .toolbox {
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .toolbox-left {
        justify-content: flex-end;
    }
    /*== FIN CATALOGO ==*/

    /*== INICIO CONTACTO ==*/
    .grid-contacto {
        grid-template-columns: repeat(2, 1fr);
    }
    /*== FIN CONTACTO ==*/
}

@media (min-width: 1024px) {
    /*=== INICIO index ===*/
    .grid-carousel {
        grid-template-columns: calc(25% - 0.8rem) calc(75% - 0.8rem);
    }
    .grid-carousel-invert {
        grid-template-columns: calc(75% - 0.8rem) calc(25% - 0.8rem);
    }
    /*=== FIN index ===*/

    /* = inicio timeline = */
    .timeline-content {
        padding: 3rem;
    }
    /* = fin timeline = */

    /* = inicio ficha productos = */
    .product-info {
        padding-top: 1rem;
        padding-left: 4rem;
        padding-right: 3rem;
        padding-bottom: 4rem;
    }

    .product-card-footer {
        padding-right: 3rem;
        padding-left: 0;
    }

    .product-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .product-image {
        aspect-ratio: auto;
        min-height: 500px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        flex: none;
    }
    /* = fin ficha productos = */

    /* = inicio politicas de calidad = */
    .iso-image {
        height: 300px;
    }
    /* = fin politicas de calidad = */

    /*=== inicio footer ===*/
    .footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.65fr 1fr 1fr;
        grid-column-gap: 2rem;
    }
    .footer-description {
        font-family: var(--font-secondary);
        font-size: 1.1rem;
        margin-top: 0;
        max-width: 800px;
    }
    .footer-column {
        justify-content: center;
        flex-direction: row;
    }
    .footer-column:nth-child(2) {
        padding-left: 2rem;
    }
    /*=== fin footer ===*/
}

@media screen and (min-width: 1100px) {
    .grid-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

@media (min-width: 1500px) {
    .container-header,
    .container-hero {
        max-width: calc(100% - 100px);
    }
}

@media screen and (max-width: 1100px) {
    /* = Inicio Header = */
    .nav-header-middle {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "logo menu"
            "buscador buscador";
        gap: 1rem;
    }
    .item-nav-header-middle:nth-child(1) {
        grid-area: logo;
    }
    .item-nav-header-middle:nth-child(2) {
        grid-area: buscador;
    }
    .item-nav-header-middle:nth-child(4) {
        grid-area: menu;
    }
    .img-header-logo {
        height: 40px;
        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;
        margin-left: 1rem;
    }
    .btn-menu-mobile img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }
    .btn-menu-mobile .icon-close {
        display: none;
    }
    /* = Fin Header = */

    /*= Inicio Catalogo =*/
    .title-catalogo {
        display: none;
    }
    .grid-catalogo {
        grid-template-columns: 1fr;
        gap: 0;
    }
    /* Filtro  Catalogo */
    .select-custom .input-filter {
        font-size: 0.8rem;
        width: 120px;
    }

    .item-head {
        border-bottom: none;
    }

    .btn-filtro {
        display: flex;
        align-items: center;
        column-gap: 0.5rem;
        background: var(--primary-color);
        border: 0;
        outline: 0;
        height: 35px;
        border-radius: 1.6rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: var(--white);
        transition: all 0.3s;
    }
    .btn-filtro img {
        height: 16px;
        width: auto;
        object-fit: contain;
        aspect-ratio: 1/1;
    }
    .aside-filtros .item-head {
        display: flex;
    }

    .aside-filtros {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        transform: translateX(-1000px);
        z-index: 9999;
        width: 320px;
        overflow-y: scroll;
        background: var(--white);
        border-radius: 0;
        padding: 1.6rem;
        transition: all 0.3s;
    }
    .aside-filtros.visible {
        transform: translateX(0);
        transition: all 0.5s;
    }
    .title-toolbox-aside {
        display: none;
    }
    /*= Fin Catalogo =*/

    /**** Inicio carrito ****/
    .table {
        margin-bottom: 0;
    }
    .wrapper-table {
        padding: 1.5rem;
    }
    .table thead {
        display: none;
    }
    .table tr .product-col {
        padding-bottom: 0.6rem;
    }
    .product-col {
        margin: 0 auto;
    }
    .table tr td {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-align: center;
        padding: 0.1rem 0;
        border-bottom: none;
    }
    .table .product-col .product {
        padding-right: 0;
        justify-content: center;
    }
    .table .product-col .product-title {
        text-align: left;
    }
    .table,
    .table tbody,
    .table tr,
    .table td {
        width: 100%;
        display: block;
    }
    .table .remove-col {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--secundario);
    }
    .table .quantity-col {
        margin: 1rem 0;
    }
    td[data-title]::before {
        content: attr(data-title);
    }
    .wrapper-form-carrito {
        margin-top: 2rem;
    }
    /**** Fin carrito ****/
}

/* === ANIMACIONES === */

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUSCADOR PREDICTIVO === */
.buscador-predictivo-container {
    position: relative;
    width: 100%;
}
.buscador-resultados {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 450px;
    overflow-y: auto;
    margin-top: 8px;
}
.buscador-grupo {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.buscador-grupo:last-of-type {
    border-bottom: none;
}
.buscador-grupo-titulo {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.buscador-grupo-titulo svg {
    opacity: 0.6;
}
.buscador-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}
.buscador-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s;
}
.buscador-item:hover {
    background-color: var(--gray-100);
}
.buscador-item-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--gray-100);
}
.buscador-item-img-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--gray-200);
}
.buscador-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.buscador-item-titulo {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.buscador-item-subtitulo {
    font-size: 12px;
    color: var(--gray-500);
}
.buscador-footer {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 0 0 12px 12px;
}
.buscador-ver-todos {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.buscador-ver-todos:hover {
    text-decoration: underline;
}
.buscador-sin-resultados {
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-500);
}
.buscador-sin-resultados p {
    margin: 0;
}

/* ============================================
   CATALOGO FILTRADO STYLES
   ============================================ */

/* Links de filtro en sidebar */
.label-filtro-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}
.label-filtro-link:hover {
    color: var(--primary-color);
}
.label-filtro-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Subcategorías */
.list-aside-sub {
    list-style: none;
    padding-left: 1rem;
    margin: 0.25rem 0 0.5rem 0;
}
.list-aside-sub li {
    margin: 0.25rem 0;
}
.list-aside-sub .label-filtro-link {
    font-size: 0.9rem;
    padding: 0.35rem 0;
}

/* Estado vacío del catálogo */
.empty-catalog {
    padding: 4rem 2rem;
    text-align: center;
}
.empty-catalog-content {
    max-width: 400px;
    margin: 0 auto;
}
.empty-catalog .empty-icon {
    width: 80px;
    height: 80px;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}
.empty-catalog h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.empty-catalog p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Paginación */
.pagination-container {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}
.pagination-container nav {
    display: flex;
    gap: 0.25rem;
}
.pagination-container .relative {
    display: flex;
    gap: 0.25rem;
}
.pagination-container a,
.pagination-container span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}
.pagination-container a {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--text-color);
}
.pagination-container a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.pagination-container span[aria-current="page"] span {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

/* Precio en tarjeta de producto */
.card-product-price {
    margin: 0.5rem 0;
}
.card-product-price .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}
.card-product-price .price-old {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 0.5rem;
}
