:root {
    --primary-color: #F48A00;
    --secondary-color: #052F65;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --font-family: 'Poppins', sans-serif;
    --nav-height: 100px;
    --bg-light: #F5F5F5;

    /* Banner Headers Sizes */
    --banner-h1-size: 38px;
    --banner-h2-size: clamp(80px, 12vw, 160px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

input,
button,
textarea,
select,
font {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

body {
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: transparent;
    z-index: 1000;
    color: var(--text-light);
    padding-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease, padding 0.3s ease, height 0.3s ease;
}

.main-header.nav-hidden {
    transform: translateY(-100%);
}

body:has(.main-nav.active) .main-header.nav-hidden {
    transform: translateY(0);
}

.main-header.scrolled,
.main-header.header-solid {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 0;
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(120px, 25vw, 700px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 100%;
}


.logo {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}


.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 35px);
}

.main-nav a {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active-nav {
    color: var(--primary-color);
}



.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}



/* =============================================
   BANNER HERO (SWIPER)
============================================= */
.banner-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-slide {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
    background-color: var(--secondary-color);

}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: max-width 0.3s ease;
}

.banner-text {
    color: white;
    max-width: 850px;
    margin-left: 80px;
    position: relative;
}

.banner-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--banner-h1-size, 38px);
    font-weight: 300;
    margin-bottom: -5px;
    margin-left: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.banner-text h1.h1-small {
    font-size: 38px;
    /* Should probably match h1 size if meant for something else, but here we prioritize small */
}

.banner-text h1,
.banner-text h2 {
    overflow: visible;

}

.banner-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--banner-h2-size, clamp(80px, 12vw, 160px));
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.banner-text h2.h2-small {
    font-size: 135px;
}

.banner-text h1,
.banner-text h2 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: none;
}

.swiper-slide-active .banner-text h1 {
    animation: bannerTextReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
}

.swiper-slide-active .banner-text h2 {
    animation: bannerTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes bannerTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px) skewY(2deg);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
        filter: blur(0);
    }
}

@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateX(-40px) skewX(10deg);
        filter: blur(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.swiper-slide-active .btn-more {
    animation: btnFadeIn 0.8s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

@keyframes btnFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-more {
    display: table;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
    transition: all 0.3s ease;
    margin-top: 15px;
    margin-left: 0;
}

.btn-more:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}



/* Swiper Navigation Customization */
.banner-next,
.banner-prev {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.banner-next:hover,
.banner-prev:hover {
    color: white;
}


.lines-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.lines-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.lines-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 20px;
}

.lines-header h2 strong {
    font-weight: 800;
}

.lines-header p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.8;
    font-family: var(--font-family);

}




.lines-carousel-container {
    position: relative;
    max-width: 1300px;
    /* Slightly larger again */
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 50px);
}

.lines-swiper {
    padding-bottom: 40px;
    opacity: 0;
    visibility: hidden;
}

.lines-swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.line-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F8F6F6;
    border-radius: 12px;
    padding-bottom: 18px;
    /* Slightly reduced height */
    overflow: hidden;
}

.line-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.lines-swiper:not(.swiper-initialized) .swiper-slide {
    width: 25%;

}



.card-bg {
    width: 100%;
    aspect-ratio: 4/4;
    /* Slightly taller */
    height: auto;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 40px;
    /* More space between image and text */
    position: relative;
    box-shadow: none;
    transition: none;
}



.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.card-img {
    position: relative;
    width: 76%;
    /* Slightly larger product image */
    height: auto;
    object-fit: contain;
    transform: translateY(45px);
    transition: transform 0.3s ease;
    z-index: 3;

}


.card-img-lg {
    width: 95% !important;
    transform: translateY(60px) !important;
}

.line-card:hover .card-img-lg {
    transform: translateY(50px) scale(1.08) !important;
}


.line-card:hover .card-img {
    transform: translateY(35px) scale(1.08);
}




.line-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.3;
    font-weight: 400;
}

.line-card h3 strong {
    font-weight: 800;
}


.lines-prev,
.lines-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.lines-prev:hover,
.lines-next:hover {
    color: var(--secondary-color);
}

.lines-prev {
    left: 0;
}

.lines-next {
    right: 0;
}



.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
}


@media (max-width: 992px) {
    .banner-text {
        margin-left: 50px;
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .banner-text h2 {
        font-size: 80px;
    }

    .mockup-can {
        width: 280px;
        height: 380px;
    }

    .can-title {
        font-size: 38px;
    }

    .main-nav ul {
        gap: 12px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .lines-card {
        margin-bottom: 20px;
    }

    .logo-img {
        height: 48px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        margin-top: 0;
        gap: 10px;
    }

    .logo-img {
        height: 44px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    /* Overlay oscuro al abrir menÃº mÃ³vil */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }

    .main-nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 85vw);
        height: 100vh;
        background-color: var(--secondary-color);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 90px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
        padding: 0 20px;
    }

    .main-nav a {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .btn-contact {
        display: inline-block;
        padding: 12px 30px;
    }

    .banner-slide {
        padding-top: var(--nav-height);
    }

    .banner-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
    }

    .banner-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 100%);
    }

    .banner-text {
        margin-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-text h1 {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 0;
        opacity: 0.9;
    }

    .banner-text h2 {
        font-size: clamp(60px, 18vw, 110px);
        margin-left: 0;
        margin-bottom: 20px;
        line-height: 0.9;
    }

    .banner-text h2.h2-small {
        font-size: clamp(50px, 16vw, 100px);
    }

    .btn-more {
        padding: 10px 25px;
        font-size: 14px;
        margin: 0 auto;
    }


    .lines-section {
        padding: 60px 20px;
    }


    .lines-header h2 {
        font-size: 28px;
    }

    .lines-header p {
        font-size: 14px;
        line-height: 1.6;
        padding-top: 10px;
    }

    .lines-carousel-container {
        padding: 0 40px;
    }

    .lines-prev,
    .lines-next {
        font-size: 24px;
        width: 30px;
        top: 35%;
        display: none;

    }

    .card-img {
        transform: translateY(20px);
        width: 70%;
    }

    .card-img-lg {
        transform: translateY(30px) !important;
        width: 85% !important;
    }

    .line-card h3 {
        font-size: 14px;
        padding: 5px;
    }
}



.body-container {
    border-radius: 0%;
    background-color: #ffffff;
    height: 110vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
}

.body-header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 15vh;

}

.body-header h2 {
    color: white;
    font-size: clamp(24px, 8vw, 36px);
    margin-bottom: 0;
    font-weight: 300;
}

.body-container p {
    color: #ffffff;
    font-size: clamp(16px, 5vw, 24px);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
}

.body-container .btn-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
    transition: all 0.3s ease;
}

.body-container .btn-more:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
}


.body-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}


.reach-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #052F65;
    background-image: url('../img/banner_principal/distribuidor.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 5;
    padding-bottom: 100px;
    overflow: hidden;
}

.reach-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 42, 85, 0.2);
    z-index: -1;
}

.reach-header h2 {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
}

.reach-header h2 strong {
    font-weight: 800;
    font-size: 42px;
}

.reach-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.reach-card {
    background-color: #EBEBEB;
    border-radius: 15px;
    padding: 50px 40px;
    width: 380px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.reach-card1 {
    /* Alias de .reach-card â€” mismos estilos heredados */
    background-color: #EBEBEB;
    border-radius: 15px;
    padding: 50px 40px;
    width: 380px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease, transform 0.4s ease;
}


.reach-card:hover,
.reach-card1:hover {
    background-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.reach-card:hover h3,
.reach-card1:hover h3,
.reach-card:hover ul li,
.reach-card1:hover ul li {
    color: white;
}

.reach-card h3,
.reach-card1 h3 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.reach-card h3 u,
.reach-card1 h3 u {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.reach-card ul,
.reach-card1 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.reach-card ul li,
.reach-card1 ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--secondary-color);
    transition: color 0.4s ease;
}

.reach-card ul li::before,
.reach-card1 ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
}

.btn-contact-alt {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: max-content;
    margin: 0 auto;
}

.btn-contact-alt:hover {
    background-color: #052F65;
    transform: translateY(-2px);
}

/* popup estilos*/

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 42, 85, 0.85);
    /* Azul Crons profundo con transparencia */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: transparent;
    border-radius: 20px;
    width: 95%;
    max-width: 950px;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(50px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.popup-overlay.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: fixed;
    /* Fixed so it stays in place while scrolling */
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.popup-promo-img {
    width: 100%;
    background: transparent;
    position: relative;
}

.popup-promo-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.popup-body {
    display: none;
}

/* Custom Scrollbar for Chrome/Safari */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

@media (max-width: 992px) {
    .popup-content {
        flex-direction: column;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-promo-img {
        height: 300px;
        flex: none;
    }

    .popup-body {
        padding: 50px 40px;
        align-items: center;
        text-align: center;
    }

    .popup-body h6 {
        font-size: 2rem;
    }
}



.main-footer {
    background-color: #052F65;
    padding: 0;
    margin-top: 0;
    min-height: auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
}



.footer-content {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 5% 40px 5%;
    box-sizing: border-box;
    background-color: #052F65;
    position: relative;
}

.footer-main-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.footer-logo {
    flex: 0 1 300px;
    margin-right: 20px;
    align-self: center;
}

.footer-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.footer-links-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;

}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}


.footer-contactanos p {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-contactanos p.email-footer {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin-top: 15px;
    text-decoration: underline;
}


.footer-col-social-reclamaciones {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: transparent;
    border-color: #ffffff;
    transform: translateY(-5px);

}

.reclamaciones {
    width: 100%;
    display: flex;
    justify-content: center;
}

.reclamaciones h3 {
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
}

.reclamaciones img {
    height: 50px;
    width: auto;
    object-fit: contain;
}


.footer-bottom-bar {
    font-family: 'Poppins', sans-serif;
    background-color: #031E42;
    padding: 15px 40px;
    color: rgba(255, 255, 255, 0.75);
    width: 100%;
    display: flex;
    align-items: center;
}

.footer-bottom-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    width: 100%;
}

@media (max-width: 1100px) {
    .footer-main-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-logo {
        flex: 0 0 auto;
        margin-bottom: 20px;
    }

    .footer-links-container {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding-left: 0;
        /* Reset for responsiveness */
    }

    .footer-column {
        flex: 0 0 calc(50% - 30px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .reach-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .reach-section {
        padding: 60px 15px;
        background-attachment: scroll;
    }

    .reach-card,
    .reach-card1 {
        width: 100%;
        max-width: 400px;
        padding: 40px 30px;
    }

    .reach-header h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .reach-header h2 strong {
        font-size: 36px;
    }

    .footer-content {
        padding: 50px 5% 30px 5%;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .footer-column {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        width: 100%;
    }

    .footer-info,
    .footer-address {
        width: 100%;
    }
}




.catalog-section {
    position: relative;
    height: 140vh;
    background-color: white;
    clip-path: inset(0);
    z-index: 2;
}

.catalog-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    z-index: 1;
    overflow: hidden;
    padding: 0 40px;

}

.catalog-left {
    flex: 1;
    padding-left: 60px;

}

.catalog-title {
    font-size: 48px;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 500;
}

.catalog-title strong {
    font-weight: 800;
    display: block;
}

.btn-catalog {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.4);
    transition: all 0.3s ease;
}

.btn-catalog:hover {
    background-color: #F48A00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(248, 147, 31, 0.5);
    color: white;
}

.catalog-center {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
}

.catalog-img-3d {
    width: 180%;
    max-width: 750px;
    height: auto;
    filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(0.6);
}

.catalog-img-3d.in-view {
    animation: iconPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes floatCatalog3D {

    0%,
    100% {
        transform: perspective(1000px) translateY(0) rotateX(0deg) rotate(-8deg) scale(1.3);
    }

    50% {
        transform: perspective(1000px) translateY(-30px) rotateX(5deg) rotate(-5deg) scale(1.3);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0s), opacity 0.6s ease var(--delay, 0s);
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-down {
    opacity: 0;
    transform: translateY(-80px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0s), opacity 0.5s ease var(--delay, 0s);
}

.animate-down.in-view {
    opacity: 1;
    transform: translateY(0);
}

.catalog-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catalog-feature {
    display: flex;
    align-items: center;
    gap: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
}

.catalog-feature.in-view .feature-icon {
    animation: iconPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: calc(0.15s + var(--delay, 0s));
}



.nuestras-marcas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 60px 0;
    width: 100%;
}

.marcas-header {
    width: 100%;
    text-align: center;
}

.marcas-header h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 1px;
}

.marcas-header h2 strong {
    font-weight: 800;
}

.marcas-slider {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marcas-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

.marca-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.marcas-img {
    width: 155px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.marcas-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}




@media (max-width: 991px) {
    .painter-container {
        display: none;
        /* Hide printer on small screens to save space */
    }

    .registrarse-content {
        padding-left: 0;
        text-align: center;
    }

    .subtitle-registrate {
        font-size: 18px;
    }
}

.form-response {
    display: none;
    padding: 12px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.form-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-response i {
    margin-right: 8px;
}

/* Ensure inputs stack nicely if container is narrow */
@media (max-width: 600px) {

    .form-modern-horizontal .col-5,
    .form-modern-horizontal .col-2 {
        width: 100% !important;
        margin-bottom: 10px;
    }
}









@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}



.catalog-feature p {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.2;
}


@media (max-width: 1200px) {
    .catalog-title {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .catalog-section {
        height: auto;
        padding: 80px 0;
    }

    .catalog-container {
        position: relative;
        height: auto;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 40px;
        top: 0;
        left: 0;
        transform: none;
        padding: 0 20px;
    }

    .catalog-left,
    .catalog-center,
    .catalog-right {
        width: 100%;
        align-items: center;
    }

    .catalog-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .catalog-right {
        align-items: center;
    }

    .catalog-feature {
        text-align: left;
        width: 280px;
    }

    .catalog-img-3d {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 60px 16px;
    }

    .catalog-title {
        font-size: 34px;
        margin-bottom: 25px;
    }


    .catalog-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }


    .catalog-left {
        order: 1;
        width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }


    .catalog-center {
        order: 2;
        flex: 1;
        min-width: 0;
    }

    .catalog-right {
        order: 3;
        flex: 1;
        min-width: 0;
        gap: 16px;
        justify-content: center;
    }


    .catalog-container {
        display: grid;
        grid-template-areas:
            "text text"
            "can  features";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .catalog-left {
        width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding-left: 0;
    }

    .catalog-center {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .catalog-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .catalog-img-3d {
        max-width: 140%;
        width: 130%;
        margin-left: -15%;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
        opacity: 1;
        transform: scale(1.05);

    }

    .catalog-feature {
        gap: 10px;
        width: 100%;
    }

    .catalog-feature p {
        font-size: 13px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .catalog-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .catalog-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        grid-template-areas: none;
        grid-template-columns: 100%;
        padding: 0 10px;
    }

    .catalog-center {
        display: none;
    }

    .catalog-right {
        order: 2;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .catalog-feature {
        background: rgba(3, 42, 85, 0.03);
        padding: 10px;
        border-radius: 12px;
        justify-content: flex-start;
        width: 100%;
    }

    .catalog-feature p {
        font-size: 13px;
        margin: 0;
    }

    .btn-catalog {
        width: 100%;
        font-size: 15px;
        padding: 12px;
    }
}


@media (min-width: 1440px) {
    .catalog-section {
        height: 140vh;
    }

    .catalog-container {
        max-width: 1600px;
        gap: 80px;
        padding: 0 60px;
    }

    .catalog-left {
        padding-left: 80px;
    }

    .catalog-title {
        font-size: 58px;
        margin-bottom: 30px;
    }

    .btn-catalog {
        font-size: 20px;
        padding: 16px 50px;
    }

    .catalog-img-3d {
        max-width: 900px;
    }

    .catalog-feature {
        gap: 30px;
    }

    .catalog-feature p {
        font-size: 20px;
    }

    .feature-icon {
        width: 72px;
        height: 72px;
    }

    .catalog-right {
        gap: 36px;
    }
}


@media (min-width: 1920px) {
    .catalog-container {
        max-width: 1860px;
        gap: 100px;
        padding: 0 80px;
    }

    .catalog-left {
        padding-left: 100px;
    }

    .catalog-title {
        font-size: 72px;
        margin-bottom: 36px;
        line-height: 1.05;
    }

    .btn-catalog {
        font-size: 22px;
        padding: 18px 60px;
        border-radius: 40px;
    }

    .catalog-img-3d {
        max-width: 1100px;
    }

    .catalog-feature {
        gap: 36px;
    }

    .catalog-feature p {
        font-size: 24px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .catalog-right {
        gap: 44px;
    }
}


@media (min-width: 2560px) {
    .catalog-container {
        max-width: 2400px;
        gap: 120px;
        padding: 0 120px;
    }

    .catalog-left {
        padding-left: 120px;
    }

    .catalog-title {
        font-size: 90px;
        margin-bottom: 44px;
    }

    .btn-catalog {
        font-size: 26px;
        padding: 22px 70px;
        border-radius: 50px;
    }

    .catalog-img-3d {
        max-width: 1400px;
    }

    .catalog-feature {
        gap: 44px;
    }

    .catalog-feature p {
        font-size: 30px;
    }

    .feature-icon {
        width: 110px;
        height: 110px;
    }

    .catalog-right {
        gap: 56px;
    }
}


.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}


.section-registrate-igualito {
    background: #ffffff;
    position: relative;
    padding: 20px 0 0 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.registrate-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-left: 0;
    padding-right: 20px;

}

.registrate-person {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 320px;

    z-index: 1;
    pointer-events: none;
}

.person-img {
    width: 100%;
    height: auto;
    display: block;
}

.registrate-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;

}

.registrate-left-img {
    flex: 0 0 35%;
    max-width: 300px;
    align-self: flex-end;
}

.registrate-left-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.registrate-form-container {
    flex: 1;
}

.registrate-text h2 {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 3px;
    letter-spacing: -1px;
}

.registrate-text p {
    font-size: 15px;
    color: #4A6A8A;
    font-weight: 500;
    margin-bottom: 15px;
}

.registrate-form-igualito {
    width: 100%;
    max-width: 400px;
}

.inputs-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-full-row {
    width: 100%;
}

.input-last-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.input-last-row .input-igualito {
    flex: 1.5;
}

.btn-registrate-modern {
    flex: 1;
    height: 38px;
    background-color: #F48A00;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-registrate-modern:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
}

.input-igualito {
    width: 100%;
    height: 38px;
    border: 1px solid #E0E0E0;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    outline: none;
    transition: all 0.3s;
    border-radius: 10px;
}

.input-igualito::placeholder {
    color: #a0a0a0;
}

.input-igualito:focus {
    border-color: #00aeef;
    box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.1);
}

.btn-igualito {
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-igualito:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 147, 31, 0.3);
}

.privacy-row {
    margin-top: 15px;
}

.privacy-label-igualito {
    font-size: 10px;
    color: #4A6A8A;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
}

.privacy-label-igualito a {
    color: #7b7b7b;
    text-decoration: underline;
}

.privacy-label-igualito input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.resp-igualito {
    display: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
}

.resp-igualito.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.resp-igualito.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


@media (max-width: 991px) {
    .registrate-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .registrate-left-img {
        display: none;
    }

    .registrate-wrapper {
        justify-content: center;
        padding: 0 20px;
    }

    .registrate-text {
        text-align: center;
    }

    .privacy-label-igualito {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .input-last-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-registrate-modern {
        width: 100%;
        margin-top: 5px;
    }

    .registrate-left-img {
        display: none;
    }
}


@media (min-width: 1400px) {
    .nuestras-marcas {
        padding: 100px 0;
        gap: 50px;
    }

    .marcas-slider {
        max-width: 1400px;
    }

    .marcas-img {
        width: 180px;
    }

    .registrate-wrapper {
        max-width: 1600px;
        padding-right: 60px;
    }

    .registrate-content-wrapper {
        max-width: 1300px;
        gap: 80px;
    }

    .registrate-left-img {
        max-width: 450px;
    }

    .registrate-text h2 {
        font-size: 42px;
    }

    .registrate-text p {
        font-size: 18px;
    }

    .registrate-form-igualito {
        max-width: 550px;
    }

    .input-igualito,
    .btn-registrate-modern {
        height: 50px;
        font-size: 16px;
    }


    .footer-content {
        padding: 100px 10% 60px 10%;
    }

    .footer-logo img {
        height: 100px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-column ul li a,
    .footer-contactanos p,
    .privacidad a,
    .footer-bottom-content {
        font-size: 15px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .footer-bottom-content,
    .footer-main-row {
        max-width: 1600px;
    }
}


@media (min-width: 1440px) {

    .header-container,
    .banner-content,
    .lines-header,
    .catalog-container,
    .footer-main-row,
    .footer-bottom-content {
        max-width: 1560px;
    }

    .banner-text h2 {
        font-size: 180px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column ul li a,
    .footer-contactanos p,
    .footer-bottom-content {
        font-size: 15px;
    }
}


@media (min-width: 1800px) {

    .header-container,
    .banner-content,
    .lines-header,
    .catalog-container,
    .footer-main-row,
    .footer-bottom-content,
    .registrate-wrapper {
        max-width: 1760px;
    }

    .banner-text h2 {
        font-size: 200px;
    }

    .nuestras-marcas {
        padding: 100px 0;
    }

    .marcas-slider {
        max-width: 1700px;
    }

    .marcas-img {
        width: 220px;
    }

    .marcas-container {
        gap: 80px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column ul li a,
    .footer-contactanos p,
    .footer-bottom-content {
        font-size: 15px;
    }
}


@media (min-width: 2560px) {

    .header-container,
    .banner-content,
    .lines-header,
    .catalog-container,
    .footer-main-row,
    .footer-bottom-content,
    .registrate-wrapper {
        max-width: 2400px;
    }

    .banner-text h2 {
        font-size: 260px;
    }

    .marcas-slider {
        max-width: 2200px;
    }

    .marcas-img {
        width: 280px;
    }

    .marcas-container {
        gap: 120px;
    }

    .catalog-img-3d {
        max-width: 1400px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column ul li a,
    .footer-contactanos p,
    .footer-bottom-content {
        font-size: 15px;
    }
}

:root {
    --primary-color: #F48A00;
    --secondary-color: #052F65;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --font-family: 'Poppins', sans-serif;
    --nav-height: 100px;
    --bg-light: #F5F5F5;

    /* Hero Headers Sizes */
    --hero-h1-size: 150px;
    --hero-h2-size: 45px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

input,
button,
textarea,
select {
    font-family: inherit;
}

body {
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: transparent;
    z-index: 1000;
    color: var(--text-light);
    padding-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease, padding 0.3s ease, height 0.3s ease;
}

.main-header.nav-hidden {
    transform: translateY(-100%);
}


body:has(.main-nav.active) .main-header.nav-hidden {
    transform: translateY(0);
}

.main-header.scrolled,
.main-header.header-solid {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 0;
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(120px, 25vw, 700px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 100%;
}


.logo {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}


.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 35px);
}

.main-nav a {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active-nav {
    color: var(--primary-color);
}

.search-icon {
    font-size: 18px;
    background: white;
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.search-icon:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}


.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box {
    position: absolute;
    right: 45px;
    transform-origin: right center;
    transform: scaleX(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-box.active {
    transform: scaleX(1);
    opacity: 1;
    visibility: visible;
}

.search-box input {
    height: 35px;
    width: 200px;
    border: none;
    border-radius: 20px;
    padding: 0 15px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-box input::placeholder {
    color: #999;
}

.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}


.productos-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #777;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}


#hero-bg-transition {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

#hero-bg-transition.active {
    opacity: 1;
}


.expansion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-prev,
.hero-next {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.hero-prev:hover,
.hero-next:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}


.hero-text-container {
    flex: 0 0 50%;
    color: var(--text-light);
    padding-left: 40px;
    margin-top: 80px;
}

.hero-text-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: var(--hero-h2-size, 45px);
    font-weight: 400;
    margin-bottom: -5px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.hero-text-container h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: var(--hero-h1-size, 150px);
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.hero-text-container.revealed h1,
.hero-text-container.revealed h2 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-text-container.revealed h1 {
    transition-delay: 0.1s;
}


.hero-text-container .btn-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/logo_nav/botton_pincel1.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    color: white;
    font-weight: 600;
    padding: 10px 45px;
    font-size: 17px;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: none;
    min-width: 170px;
    height: 62px;
}

.hero-text-container .btn-more:hover {
    transform: translateY(-2px) scale(1.05);
    color: white;
}


.hero-slider-container {
    flex-shrink: 0;
    width: 620px;
    margin-top: 22vh;
}

.hero-swiper {
    width: 100%;
    height: 230px;
    opacity: 0;
    visibility: hidden;
}

.hero-swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.product-card {
    width: 190px;
    height: 220px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: transparent;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card.card-revealed {
    animation: cardsOpening 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardsOpening {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-label {
    display: none;
}


.product-card {
    pointer-events: auto;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.product-card:hover img {
    transform: scale(1.05);
}


.product-card.active-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.product-card:not(.active-card) {
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:not(.active-card):hover {
    opacity: 1;
}

.product-card:not(.active-card):hover .card-img-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


.product-card.card-click-effect {
    animation: cardPulse 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes cardPulse {
    0% {
        transform: scale(1.05);

    }

    40% {
        transform: scale(0.92);

    }

    100% {
        transform: scale(1.05);
    }
}


@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.6;
    }
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #fff;
    z-index: 10;
    pointer-events: none;
    animation: bounce 1.6s ease-in-out infinite;
}

.scroll-hint span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.scroll-hint i {
    font-size: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .scroll-hint {
        bottom: 18px;
    }

    .scroll-hint span {
        font-size: 11px;
    }

    .scroll-hint i {
        font-size: 15px;
    }
}


.product-line-tag,
.product-category-name {
    display: none;
}


.product-details-extra {
    display: block;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        padding: 40px 20px;
        padding-top: 100px;
    }

    .hero-text-container {
        width: 100%;
        padding-left: 0;
    }

    .hero-text-container h1 {
        font-size: 50px;
    }

    .hero-text-container h2 {
        font-size: 24px;
    }

    .hero-slider-container {
        flex: unset;
        width: 100%;
        max-width: 100%;
    }

    .hero-swiper {
        width: 100%;
        height: 160px;
    }

    .product-card {
        width: 110px;
        height: 155px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .productos-hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 70px 15px 25px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-text-container {
        width: 100%;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .hero-text-container h1 {
        font-size: 45px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .hero-text-container h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .hero-text-container .btn-more {
        margin: 0 auto;
        display: table;
        padding: 10px 24px;
        font-size: 14px;
    }

    .hero-swiper {
        width: 100%;
        height: 140px;
        margin-top: 20px;
    }

    .product-card {
        width: 90px;
        height: 130px;
        border-radius: 12px;
    }

    .hero-prev,
    .hero-next {
        display: flex !important;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text-container h1 {
        font-size: 30px;
    }

    .hero-text-container h2 {
        font-size: 16px;
    }

    .hero-swiper {
        height: 130px;
    }

    .product-card {
        width: 90px;
        height: 120px;
        border-radius: 12px;
    }
}



.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
}


@media (max-width: 992px) {
    .main-nav ul {
        gap: 12px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .logo-img {
        height: 48px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        margin-top: 0;
        gap: 10px;
    }

    .logo-img {
        height: 44px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    /* Overlay oscuro al abrir menÃº mÃ³vil */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }

    .main-nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 85vw);
        height: 100vh;
        background-color: var(--secondary-color);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 90px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
        padding: 0 20px;
    }

    .main-nav a {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .btn-contact {
        display: inline-block;
        padding: 12px 30px;
    }

}






.products-layout {
    background-color: #fff;
    padding: 60px 0;
}

.products-wrapper-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 40px;
}

.sidebar-categories {
    flex: 0 0 280px;
    border-right: 1px solid #f0f0f0;
    padding-right: 20px;
}

.main-products-content {
    flex: 1;
}


.sidebar-line-item {
    margin-bottom: 20px;
}

.sidebar-line-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-line-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.sidebar-line-header i {
    font-size: 14px;
    color: #ccc;
    transition: transform 0.3s ease;
}

.sidebar-line-item.active .sidebar-line-header {
    border-bottom-color: transparent;
}

.sidebar-line-item.active .sidebar-line-header h3 {
    color: var(--secondary-color);
}

.sidebar-line-item.active .sidebar-line-header i {
    transform: rotate(180deg);
}

.sidebar-line-header:hover h3 {
    color: var(--primary-color);
}

.sidebar-categories-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding-left: 15px;
}

.sidebar-line-item.active .sidebar-categories-list {
    max-height: 1000px;
    padding-top: 15px;
    padding-bottom: 10px;
}

.category-filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter-item:hover {
    color: var(--primary-color);
}

.category-filter-item .custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.category-filter-item.active .custom-checkbox {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}


.category-filter-item.active .custom-checkbox::after {
    content: none;
}

.category-filter-item.active {
    font-weight: 700;
}


.dynamic-products-section {
    padding: 0;
    max-width: none;
    margin: 0;
    background-color: transparent;
    min-height: 400px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dynamic-products-section.loading {
    opacity: 0;
    transform: translateY(10px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.product-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-img-wrapper {
    background-color: #F8F4F4;
    padding: 25px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px;
    border-radius: 15px;
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-item:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn-product {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 4px 10px rgba(248, 147, 31, 0.3);
}

.btn-product:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 147, 31, 0.4);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .products-layout {
        padding: 40px 0;
    }

    .products-wrapper-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .sidebar-categories {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .sidebar-line-header {
        padding: 12px 15px;
        background: #fdfdfd;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .sidebar-line-item.active .sidebar-line-header {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: white;
    }

    .sidebar-line-item.active .sidebar-line-header h3 {
        color: white;
    }

    .sidebar-line-item.active .sidebar-line-header i {
        color: white;
    }

    .sidebar-categories-list {
        display: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding: 10px 5px 15px;
        max-height: none;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sidebar-categories-list::-webkit-scrollbar {
        display: none;

    }

    .sidebar-line-item.active .sidebar-categories-list {
        display: flex;
        max-height: none;
    }

    .category-filter-item {
        margin-bottom: 0;
        background: #f1f1f1;
        padding: 8px 18px;
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
        border: 1px solid transparent;
        font-size: 13px;
    }

    .category-filter-item.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .category-filter-item .custom-checkbox {
        display: none;
    }
}

@media (max-width: 992px) {
    .sidebar-line-item:not(.active) {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-item {
        padding: 8px;
    }

    .product-img-wrapper {
        padding: 10px;
        margin: 0;
        border-radius: 10px;
    }

    .product-details-extra {
        display: block;
        margin-top: 5px;
    }

    .product-name {
        display: block;
        font-size: 14px;
        margin-top: 5px;
        color: var(--text-dark);
        line-height: 1.2;
    }

    .product-brand {
        display: block;
        font-size: 11px;
        margin-top: 2px;
        color: #777;
    }

    .product-line-tag {
        display: block;
        font-size: 10px;
        color: var(--secondary-color);
        opacity: 0.7;
        text-transform: uppercase;
        margin-top: 5px;
    }

    .product-category-name {
        font-size: 13px;
        margin-top: 2px;
        color: var(--text-dark);
        font-weight: 600;
    }

    .product-name {
        font-size: 14px;
        margin-top: 8px;
    }

    .product-brand {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .btn-product {
        display: block;
        width: 100%;
        padding: 8px;
        font-size: 12px;
        margin-top: 12px;
        text-align: center;
    }
}


.product-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-viewer.active {
    visibility: visible;
    opacity: 1;
}

.viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 42, 85, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.viewer-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 10;
    transform: scale(0.7);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-viewer.active .viewer-content {
    transform: scale(1);
}

.viewer-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background-color: white;
    padding: 20px;
}

.viewer-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 20;
}

.viewer-close:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: #F48A00;
}

.product-img-wrapper {
    cursor: zoom-in;
}

body.viewer-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .viewer-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}



@media (min-width: 1440px) {

    .products-wrapper-container,
    .header-container,
    .hero-content {
        max-width: 1560px;
    }
}

@media (min-width: 1800px) {

    .products-wrapper-container,
    .header-container,
    .hero-content {
        max-width: 1760px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sidebar-categories {
        flex: 0 0 320px;
    }

    .hero-text-container h1 {
        font-size: 180px;
    }
}

@media (min-width: 2560px) {

    .products-wrapper-container,
    .header-container,
    .hero-content {
        max-width: 2400px;
    }

    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .sidebar-categories {
        flex: 0 0 400px;
    }

    .product-name {
        font-size: 22px;
    }

    .hero-text-container h1 {
        font-size: 240px;
    }
}

.product-detail-page {
    padding-top: 90px;
}

.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto 10px;
    padding: 0 20px;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    position: relative;
    z-index: 10;
}

.breadcrumb-container::-webkit-scrollbar {
    display: none;
}

.breadcrumb-container a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-container a:hover {
    color: var(--primary-color);
}

.breadcrumb-container span {
    color: #ccc;
    margin: 0 8px;
}

.breadcrumb-container strong {
    color: #999;
    font-weight: 700;
}

.product-detail-section {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: auto;
    width: 100%;
}

.product-detail-img {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
    justify-content: flex-start;
    position: relative;
    max-height: none;
    width: 100%;
    gap: 20px;
}


.product-detail-img img {
    max-width: 100%;
    max-height: 65vh;
    margin-top: -40px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}



.product-detail-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-detail-info h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 500;
}

.product-detail-info h1 span {
    display: block;
    font-weight: 900;
    color: var(--secondary-color);
    margin-top: 5px;
}

.product-detail-info .description-box {
    margin-bottom: 30px;
    max-width: 550px;
}

.product-detail-info .description {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-detail-info .usos {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.product-detail-info .usos strong {
    font-weight: 800;
}

.circles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 35px;
    margin-left: 80px;
}

.image-circle {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-action {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    flex-grow: 0;
}

.btn-cotizar {
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}


.calculator-promo-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f8f9fb;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.calculator-promo-box:hover {
    box-shadow: 0 10px 30px rgba(3, 42, 85, 0.05);
    transform: translateY(-2px);
    border-color: #d1d9e6;
}

.calc-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.calc-content h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-weight: 700;
}

.calc-content p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
}

.btn-calc-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-calc-link:hover {
    gap: 12px;
}

.btn-action i {
    margin-right: 8px;
}

.btn-cotizar:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.sizes-container {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 30px;
    margin-top: 0px;
}

.size-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-item img {
    height: auto;
    width: auto;
    filter: grayscale(1) opacity(0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.size-item.active {
    color: var(--secondary-color);
}

.size-item.active img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.size-item:hover img {
    filter: grayscale(0.5) opacity(0.8);
}

.size-item.active:hover img {
    transform: scale(1.15);
}

/* Bucket Scaling */
.size-item.size-1 img {
    width: 55px;
}

.size-item.size-4 img {
    width: 75px;
}

.size-item.size-5 img {
    width: 95px;
}

@media (max-width: 992px) {
    .product-detail-section {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 40px;
    }

    .product-detail-img {
        max-height: 50vh;
        margin-top: 20px;
        align-items: center;
        padding-right: 0;
    }

    .product-detail-img img {
        max-height: 45vh;
        margin-top: 0;
        top: 0;
        max-width: 100%;
    }

    .product-detail-info {
        align-items: center;
        text-align: center;
    }

    .product-detail-info h1 {
        text-align: center;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .product-detail-info .description-box {
        text-align: center;
        margin: 0 auto 20px;
        max-width: 100%;
    }

    .circles-container,
    .action-buttons,
    .sizes-container {
        justify-content: center;
    }

    .circles-container {
        margin-left: 0;
    }

    .breadcrumb-container {
        margin-top: 0;
        text-align: center;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .product-detail-section {
        padding: 10px 20px;
        gap: 15px;
    }

    .product-detail-img img {
        max-height: 35vh;
        margin-top: 0;
        top: 0;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .btn-action {
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 12px;
    }

    .circles-container {
        margin-bottom: 25px;
        gap: 30px;
        margin-left: 0;
        justify-content: center;
    }

    .image-circle {
        width: 55px;
        height: 55px;
    }

    .image-circle img {
        width: 100%;
        height: 100%;
    }

    .sizes-container {
        gap: 25px;
    }
}


.similar-products-section {
    padding: 80px 20px;
    background-color: #F2F2F2;
    text-align: center;
    border-top: 2px solid #ddd;
    border-radius: 60px 60px 0 0;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.similar-products-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 800;
}

.similar-carousel-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.similar-swiper {
    padding: 10px 0 30px;
}

.similar-card {
    background: #fff;
    border-radius: 15px;
    padding: 0 0 15px 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
}

/* Color accent at the top */
.similar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.swiper-slide {
    height: auto;
}

.similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.similar-img-box {
    background: radial-gradient(circle, rgba(248, 147, 31, 0.05) 0%, rgba(3, 42, 85, 0.02) 100%);
    width: 100%;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f9f9f9;
}

.similar-img-box img {
    max-width: 85%;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.similar-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 6px;
    padding: 0 15px;
    font-weight: 700;
    line-height: 1.2;
}

.similar-card .brand {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.similar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 10px;
    padding: 0 15px;
}

.btn-similar {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(248, 147, 31, 0.3);
}

.btn-similar:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 147, 31, 0.4);
}


.product-detail-page .swiper-button-next,
.product-detail-page .swiper-button-prev {
    color: var(--secondary-color);
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.product-detail-page .swiper-button-next:after,
.product-detail-page .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 900;
}

.product-detail-page .swiper-button-next:hover,
.product-detail-page .swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-detail-page .swiper-button-prev {
    left: 0;
}

.product-detail-page .swiper-button-next {
    right: 0;
}


.cta-section {
    padding: 40px 20px 0;
    text-align: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3.8vw, 2.7rem);
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1;
}

.cta-section h2 span {
    display: block;
    transform: translateX(-80px);
}

.cta-section h2 strong {
    display: block;
    font-weight: 800;
    transform: translateX(80px);
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
}

.btn-cta:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}

@media (max-width: 576px) {

    .cta-section h2 span,
    .cta-section h2 strong {
        transform: translateX(0);
        /* Center on very small screens or keep it minimal */
    }

    .cta-section h2 span {
        transform: translateX(-15px);
    }

    .cta-section h2 strong {
        transform: translateX(15px);
    }
}

@media (max-width: 768px) {
    .similar-carousel-container {
        padding: 0 40px;
    }

    .product-detail-page .swiper-button-next,
    .product-detail-page .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .product-detail-page .swiper-button-next:after,
    .product-detail-page .swiper-button-prev:after {
        font-size: 14px;
    }
}


.calc-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.calc-modal.active {
    display: flex;
}

.calc-modal-content {
    background-color: transparent;
    width: 95%;
    max-width: 950px;
    height: 90vh;
    position: relative;
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.calc-modal-content iframe {
    width: 100%;
    height: 100vh;
    max-height: 90vh;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: none;
}

.close-modal {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: #052F65;
}

@media (max-width: 768px) {
    .calc-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
    }

    .calc-modal-content iframe {
        border-radius: 0;
        max-height: 100vh;
    }

    .close-modal {
        top: 20px;
        right: 20px;
        position: fixed;
    }
}


@media (min-width: 1440px) {

    .product-detail-section,
    .breadcrumb-container {
        max-width: 1560px;
    }

    .product-detail-img img {
        transform: scale(1);
    }
}

@media (min-width: 1800px) {

    .product-detail-section,
    .breadcrumb-container {
        max-width: 1760px;
    }

    .product-detail-img img {
        transform: scale(1);
    }
}

@media (min-width: 2560px) {

    .product-detail-section,
    .breadcrumb-container {
        max-width: 2200px;
    }

    .product-detail-info h1 {
        font-size: 5rem;
    }

    .product-detail-info .description {
        font-size: 1.4rem;
    }

    .product-detail-img img {
        transform: scale(1);
    }
}

:root {
    --primary-color: #F48A00;
    --secondary-color: #052F65;
    --text-white: #FFFFFF;
}

.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(248, 147, 31, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}


.nosotros-main {
    overflow-x: hidden;
    background-color: #fff;
}


.nosotros-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 600px;
    max-height: 1800px;
    background-color: #ffffff;
}

.hero-bg-source {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -40px;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(20px, 5vw, 80px);
    z-index: 2;
}

.product-bucket-container {
    position: relative;
    width: clamp(250px, 30vw, 500px);
    height: clamp(280px, 34vw, 550px);
    overflow: hidden;
    background: transparent;
    transform: translateY(20px);
}

.product-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    transform: translateY(110%);
    opacity: 0;
    transition: none;
}

.product-slide.enter {
    animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-slide.exit {
    animation: slideDown 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(110%);
        opacity: 0;
    }
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}


.hero-left {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: stretch;
    margin-top: 0;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0px;
}

.years-branding {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: -15px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.years-branding .number {
    font-size: clamp(60px, 9vw, 130px);
    font-weight: 800;
    line-height: 0.85;
    color: var(--primary-color);
    letter-spacing: -3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.years-branding .text {
    font-size: clamp(30px, 4.5vw, 65px);
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    min-width: 1.5em;
    /* Asegura un espacio base */
    text-align: left;
}

.branding-subtitle {
    font-size: clamp(14px, 1.8vw, 24px);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    text-align: center;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.branding-subtitle span {
    display: block;
    white-space: nowrap;
}

.description-section .container {
    padding: auto;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--secondary-color);
    font-weight: 500;
    text-align: center;
}


.coverage-section {
    padding: 120px 0 80px 0;
    height: auto;
    min-height: 850px;
    background-color: #ffffff;
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;

}

.coverage-left {
    flex: 1;
    max-width: 600px;
    text-align: left;
    margin-left: 80px;
    position: relative;
    z-index: 2;

}

.coverage-title {
    margin-bottom: 60px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coverage-title span {
    display: block;
}

.coverage-title .orange {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
}

.coverage-title .navy {
    color: var(--secondary-color);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-left: 50px;
}


.stat-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.stat-number,
.stat-icon-wrapper {
    width: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 65px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 0.9;
}

.stat-icon-wrapper i {
    font-size: 50px;
    color: var(--primary-color);
}

.stat-icon-wrapper img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.stat-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    max-width: 320px;
    overflow-wrap: break-word;
}

.coverage-right {
    position: absolute;
    top: -150px;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.coverage-map {
    width: 1100px;

    height: auto;
}


.description-section {
    margin-top: clamp(60px, 10vw, 120px);
    padding: 60px 0 100px 0;
    background-color: transparent;
    text-align: center;
}


.innova-tecnologia {
    background-image: url('../img/banner_principal/franca.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: auto;
    min-height: 3100px;
    padding: 180px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.innova-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.innova-header {
    text-align: center;
    margin-bottom: 60px;
}

.innova-header h2 {
    font-size: clamp(30px, 6vw, 57px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 45px;
    letter-spacing: 1px;
    display: inline-block;
    white-space: normal;
    overflow: visible;
    min-height: 1.2em;
    position: relative;
}

.innova-header h2::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 4px;
    background-color: var(--primary-color);
    display: none;
}

.innova-header h2.typing-active::after {
    display: block;
    animation: blink-cursor 0.7s step-end infinite;
}

.innova-header h2.typing-done {
    border-right: none;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.innova-header h2.typing-active {
    animation: blink-cursor 0.7s step-end infinite;
}

.innova-header p {
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.innova-header p.reveal-text {
    opacity: 1;
    transform: translateY(0);
}

.typing-effect {
    display: inline-block;
    position: relative;
    border-right: 4px solid transparent;
}

.typing-effect.typing-active {
    border-right-color: var(--primary-color);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-color);
    }
}

.typing-effect.typing-done {
    border-right: none;
}

.innova-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 300px;
    /* Aumentado sustancialmente */
    margin-left: 80px;
}

.feature-row {
    display: flex;
    align-items: stretch;
}

.feature-box {
    width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-wrap: break-word;
    word-break: break-word;
}

.feature-box.reveal {
    opacity: 1;
    transform: translateX(0);
}

.feature-box:hover .circle-fill-drip,
.feature-box:hover .circle-check,
.feature-box:hover .circle-leaf {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 15px 25px rgba(248, 147, 31, 0.4));
}

.feature-box i {
    font-size: 45px;
    color: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.feature-box p {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.3;
}

.v-divider {
    width: 1px;
    height: 80px;
    background-color: var(--secondary-color);
    margin: 0 35px;
    margin-top: 15px;
}

.h-divider {
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
    margin: 40px 0 40px 80px;
}

.circle-fill-drip,
.circle-check {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    position: relative;
    overflow: visible;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.circle-fill-drip img,
.circle-check img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-leaf {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    position: relative;
    overflow: visible;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.circle-leaf img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
    .years-branding .number {
        font-size: 80px;
    }

    .coverage-title .navy {
        font-size: 38px;
    }

    .coverage-title .orange {
        font-size: 30px;
    }

    .stat-number {
        font-size: 55px;
    }

    .coverage-title {
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .nosotros-hero {
        min-height: 700px;
    }

    .description-section {
        position: relative;
        bottom: auto;
        padding: 20px 0;
    }

    .coverage-section {
        padding: 20px 0;
        min-height: auto;
    }

    .hero-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 100px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-left {
        margin-top: 0;
        justify-content: center;
    }

    .product-bucket-container {
        width: clamp(200px, 50vw, 300px);
        height: clamp(240px, 58vw, 350px);
        margin: 0 auto;
    }

    .product-img {
        width: 100%;
        height: 100%;
    }

    .product-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .hero-right {
        align-items: center;
        text-align: center;
        margin-top: 20px;
        align-self: center;
        margin-bottom: 0px;
    }

    .stat-item {
        justify-content: flex-start;
        gap: 10px;
    }

    .stat-number,
    .stat-icon-wrapper {
        width: 50px;
    }

    .stat-icon-wrapper img {
        width: 45px;
    }

    .years-branding {
        justify-content: center;
    }

    .coverage-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        padding: 0 20px;
    }

    .coverage-left {
        flex: 1.2;
        margin-left: 0;
        text-align: left;
        z-index: 5;
    }

    .coverage-title {
        text-align: left;
        margin-bottom: 30px;
    }

    .coverage-title .orange {
        font-size: 24px;
    }

    .coverage-title .navy {
        font-size: 30px;
    }

    .stats-list {
        padding-left: 10px;
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-text {
        font-size: 14px;
    }

    .coverage-right {
        flex: 1;
        position: relative;
        top: 0;
        right: 0;
        margin-top: 0;
        display: flex;
        justify-content: flex-end;
    }

    .coverage-map {
        width: 180%;
        max-width: none;
        margin-right: -40%;
    }

    .innova-tecnologia {
        min-height: auto;
        padding-bottom: 500px;
        background-position: center bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .innova-features {
        margin-left: 20px;
        align-items: flex-start;
        margin-top: 20px;
    }

    .feature-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .feature-box {
        width: calc(50% - 20px);
        align-items: flex-start;
        text-align: left;
    }

    .v-divider,
    .h-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .years-branding .number {
        font-size: 80px;
    }

    .years-branding .text {
        font-size: 40px;
    }

    .branding-subtitle {
        font-size: 20px;
    }

    .stat-number {
        font-size: 45px;
    }

    .stat-text {
        font-size: 16px;
    }

    .innova-header h2 {
        font-size: 26px;
        white-space: normal;
        border-right-width: 3px;
    }

    .feature-box {
        width: calc(50% - 20px);
    }

    .feature-box p {
        font-size: 14px;
    }

    .circle-fill-drip,
    .circle-check {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .circle-leaf {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
}

/* =============================================
   LARGE SCREENS RESPONSIVE
 ============================================= */
@media (min-width: 1600px) {

    .hero-container,
    .coverage-container,
    .innova-wrapper {
        max-width: 85%;
    }

    .product-bucket-container {
        width: 32vw;
        height: 36vw;
    }

    .years-branding .number {
        font-size: 8.5vw;
    }

    .years-branding .text {
        font-size: 4.5vw;
    }

    .branding-subtitle {
        font-size: 1.8vw;
    }

    .main-description {
        font-size: 24px;
        max-width: 1100px;
    }

    .coverage-title .orange {
        font-size: 45px;
    }

    .coverage-title .navy {
        font-size: 60px;
    }

    .stat-number {
        font-size: 80px;
    }

    .stat-text {
        font-size: 22px;
        max-width: 350px;
    }

    .innova-header h2 {
        font-size: 65px;
    }

    .innova-header p {
        font-size: 22px;
        max-width: 1000px;
    }

    .feature-box p {
        font-size: 24px;
    }

    .circle-fill-drip,
    .circle-check {
        width: 80px;
        height: 80px;
    }

    .circle-leaf {
        width: 140px;
        height: 140px;
    }

    .marcas-slider {
        max-width: 1550px;
    }

    .marcas-img {
        width: 190px;
    }
}

:root {
    --primary-blue: #052F65;
    --accent-orange: #F48A00;
    --text-gray: #666666;
    --border-light: #E0E0E0;
}

.banner-puntos {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.banner-overlay-puntos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 2;
}

.banner-content-puntos {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 3;
}


.banner-puntos h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.banner-puntos h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(50px, 12vw, 150px);
    font-weight: 400;
    line-height: 0.85;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.banner-puntos p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: white;
    margin-bottom: 15px;
    max-width: 90%;
}


.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


.btn-distribuidor {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.4);
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-distribuidor:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}


@media (max-width: 768px) {
    .banner-puntos {
        height: 100vh;
        height: 100dvh;
        width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
        display: flex;
        background-color: transparent;
    }

    .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .banner-puntos h1 {
        font-size: 20px;
    }

    .banner-puntos h2 {
        font-size: 80px;
    }

    .banner-puntos p {
        font-size: 16px;
        max-width: 100%;
    }

    .banner-content-puntos {
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .banner-puntos p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.puntos-main {
    padding-top: 100px;
    background-color: #FFFFFF;
}

.puntos-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.puntos-title {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.puntos-title span {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 70px;
    display: block;
    line-height: 0.8;
    margin-top: 10px;
}


.filters-container {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    margin-left: 50px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 500;
}

.filter-option input {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.filter-option input:checked+.custom-radio::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}


.puntos-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    height: 700px;
}

.puntos-list-container {
    height: 100%;
    overflow-y: auto;
    padding-right: 20px;
    border-right: 1px solid #EEEEEE;
}


.puntos-list-container::-webkit-scrollbar {
    width: 6px;
}

.puntos-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.puntos-list-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.puntos-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.store-card {
    display: grid;
    grid-template-columns: 40px 1fr 140px;
    gap: 15px;
    align-items: start;
    padding-bottom: 20px;
    padding-left: 30px;
    /* Indent content to the right */
}

.store-icon {
    color: var(--accent-orange);
    font-size: 24px;
    margin-top: 5px;
}

.store-info h3 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.store-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 2px 0;
}

.store-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-hours {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.3;
}

.btn-location {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(248, 147, 31, 0.3);
    width: 100%;
    display: block;
}

.btn-location:hover {
    background-color: #F48A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 147, 31, 0.4);
}

.btn-directions {
    background-color: #f1f1f1;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    width: 100%;
}

.btn-directions:hover {
    background-color: var(--primary-blue);
    color: white;
}


.map-container-wrapper {
    position: sticky;
    top: 100px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
}


.map-popup-content {
    padding: 5px;
    font-family: 'Poppins', sans-serif;
}

.map-popup-content b {
    color: var(--primary-blue);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.popup-directions-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.popup-directions-link:hover {
    color: #F48A00;
}

.popup-directions-link i {
    margin-right: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .puntos-content-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }

    .puntos-list-container {
        border-right: none;
        height: 500px;
    }

    .map-container-wrapper {
        height: 400px;
        position: static;
    }
}

@media (max-width: 768px) {
    .puntos-title {
        font-size: 26px;
    }

    .puntos-title span {
        font-size: 32px;
    }

    .filters-container {
        gap: 15px;
    }
}


@media (min-width: 1440px) {
    .puntos-section {
        max-width: 1560px;
    }
}

@media (min-width: 1800px) {
    .puntos-section {
        max-width: 1760px;
    }

    .banner-puntos h2 {
        font-size: 160px;
    }
}

@media (min-width: 2560px) {
    .puntos-section {
        max-width: 2200px;
    }

    .banner-puntos h2 {
        font-size: 200px;
    }

    .banner-puntos h1 {
        font-size: 60px;
    }

    .puntos-title span {
        font-size: 100px;
    }
}

/* ============================================================
   COTIZAR â€” Mobile-first responsive
   ============================================================ */

/* â”€â”€ HERO â”€â”€ */
.cot-hero {
    background: linear-gradient(135deg, #052F65, #052F65);
    padding: 90px 20px 36px;
    text-align: center;
    color: white;
}

.cot-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 10vw, 100px);
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 8px;
    line-height: 1;
}

.cot-hero h1 span {
    color: #F48A00;
}

.cot-hero p {
    font-size: clamp(13px, 3.5vw, 16px);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* â”€â”€ MAIN â”€â”€ */
.cot-main {
    background: #f2f4f8;
    padding: 24px 14px 60px;
}

/* â”€â”€ LAYOUT CONTAINER â”€â”€ */
.cot-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* En escritorio: dos columnas */
@media (min-width: 900px) {
    .cot-main {
        padding: 40px 20px 80px;
    }

    .cot-container {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 24px;
        align-items: start;
    }

    .cot-resultado {
        position: sticky;
        top: 90px;
    }
}

/* â”€â”€ CARDS GENERALES â”€â”€ */
.cot-card {
    background: white;
    border-radius: 16px;
    padding: 20px 18px;
    margin-bottom: 14px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

@media (min-width: 600px) {
    .cot-card {
        padding: 28px;
        margin-bottom: 20px;
    }
}

.cot-card h2 {
    font-size: 15px;
    font-weight: 700;
    color: #052F65;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 600px) {
    .cot-card h2 {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.cot-num {
    width: 28px;
    height: 28px;
    background: #052F65;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

/* â”€â”€ PALETTE â”€â”€ */
.cot-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
}

.cot-swatch {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.cot-swatch:hover {
    transform: scale(1.15);
}

.cot-swatch.selected {
    border-color: #F48A00;
    transform: scale(1.18);
    box-shadow: 0 0 0 3px rgba(248, 147, 31, 0.35);
}

.cot-color-sel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e0e6ef;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #052F65;
}

.cot-color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.4s;
}

/* â”€â”€ MEDIDAS â”€â”€ */
.cot-medidas {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 10px;
    align-items: end;
    margin-bottom: 18px;
}

.cot-input-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cot-input-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1.5px solid #dde1e7;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #052F65;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.cot-input-group input:focus {
    border-color: #052F65;
}

.cot-input-group input::-webkit-outer-spin-button,
.cot-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.cot-x {
    font-size: 20px;
    font-weight: 700;
    color: #ccc;
    padding-bottom: 10px;
    text-align: center;
}

.cot-area-box {
    background: #052F65;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    min-width: 70px;
}

.cot-area-label {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cot-area-val {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: white;
}

/* â”€â”€ MANOS â”€â”€ */
.cot-manos-row label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.cot-manos-btns {
    display: flex;
    gap: 8px;
}

.mano-btn {
    flex: 1;
    padding: 12px 8px;
    border: 2px solid #dde1e7;
    border-radius: 10px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 48px;
    /* toque tÃ¡ctil cÃ³modo */
}

.mano-btn:hover {
    border-color: #052F65;
    color: #052F65;
}

.mano-btn.active {
    background: #052F65;
    border-color: #052F65;
    color: white;
}

/* â”€â”€ SELECT LÃNEA â”€â”€ */
.cot-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #dde1e7;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #052F65;
    outline: none;
    appearance: none;
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23032a55' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    cursor: pointer;
    transition: border-color 0.2s;
    min-height: 50px;
}

.cot-select:focus {
    border-color: #052F65;
}

/* â”€â”€ PINTURAS GRID â”€â”€ */
.cot-pinturas-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.cot-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #e0e6ef;
    border-top-color: #052F65;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cot-pinturas-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* 1 col en mÃ³vil */
    gap: 8px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #dde1e7 transparent;
}

@media (min-width: 500px) {
    .cot-pinturas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cot-pinturas-grid::-webkit-scrollbar {
    width: 5px;
}

.cot-pinturas-grid::-webkit-scrollbar-track {
    background: transparent;
}

.cot-pinturas-grid::-webkit-scrollbar-thumb {
    background: #dde1e7;
    border-radius: 4px;
}

/* â”€â”€ TARJETA DE PINTURA â”€â”€ */
.cot-pintura-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 2px solid #e0e6ef;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    /* toque tÃ¡ctil */
}

.cot-pintura-card:hover {
    border-color: #052F65;
    background: #eef4ff;
    box-shadow: 0 3px 10px rgba(21, 101, 192, 0.1);
}

.cot-pintura-card.selected {
    border-color: #F48A00;
    background: #fff8f0;
    box-shadow: 0 3px 12px rgba(248, 147, 31, 0.18);
}

.cot-pintura-img-wrap {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0e6ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cot-pintura-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cot-pintura-card:hover .cot-pintura-img-wrap img {
    transform: scale(1.08);
}

.cot-pintura-info {
    flex: 1;
    min-width: 0;
}

.cot-pintura-cat {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #052F65;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cot-pintura-nm {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #052F65;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cot-pintura-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F48A00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

.cot-pintura-card.selected .cot-pintura-check {
    opacity: 1;
    transform: scale(1);
}

/* â”€â”€ BANNER PINTURA SELECCIONADA â”€â”€ */
.cot-pintura-sel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #fff8f0, #fffaf5);
    border: 1.5px solid #F48A00;
    border-radius: 12px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cot-pintura-sel-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1.5px solid rgba(248, 147, 31, 0.3);
    flex-shrink: 0;
}

.cot-pintura-sel-name {
    font-size: 13px;
    font-weight: 700;
    color: #052F65;
}

.cot-pintura-sel-cat {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

/* â”€â”€ PRECIO POR GALÃ“N â”€â”€ */
#precio-gl {
    font-size: 24px !important;
    font-weight: 800 !important;
    padding: 14px !important;
}

/* â”€â”€ RESULTADO â”€â”€ */

.cot-preview {
    height: 130px;
    border-radius: 16px 16px 0 0;
    position: relative;
    transition: background-color 0.5s ease;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
    .cot-preview {
        height: 160px;
    }
}

.cot-preview-label {
    position: absolute;
    bottom: 10px;
    left: 14px;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.cot-resumen {
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 18px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 600px) {
    .cot-resumen {
        padding: 24px;
    }
}

.cot-resumen h3 {
    font-size: 15px;
    font-weight: 700;
    color: #052F65;
    margin: 0 0 14px;
}

.cot-res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.cot-res-row:last-of-type {
    border-bottom: none;
}

.cot-res-row strong {
    color: #052F65;
    font-weight: 700;
}

.cot-res-highlight {
    background: #EEF4FF;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 8px 0;
    border-bottom: none !important;
}

.cot-res-highlight strong {
    color: #052F65;
    font-size: 17px;
}

/* â”€â”€ PRESENTACIONES â”€â”€ */
.cot-presentaciones {
    margin: 14px 0;
}

.cot-pres-title {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.cot-pres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.cot-pres-card {
    background: #f8fafc;
    border: 2px solid #e0e6ef;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
}

.cot-pres-card.best {
    border-color: #F48A00;
    background: #fff8f0;
}

.cot-pres-best {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #F48A00;
    margin-bottom: 4px;
}

.cot-pres-size {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #052F65;
}

.cot-pres-qty {
    display: block;
    font-size: 11px;
    color: #888;
    margin: 3px 0;
}

.cot-pres-price,
.cot-pres-total {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #052F65;
}

/* â”€â”€ PRECIO TOTAL â”€â”€ */
.cot-precio-total {
    background: linear-gradient(135deg, #052F65, #052F65);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin: 14px 0;
}

.cot-precio-total span {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cot-precio-val {
    font-size: 30px;
    font-weight: 800;
    color: white;
    transition: all 0.3s;
}

@media (min-width: 600px) {
    .cot-precio-val {
        font-size: 34px;
    }
}

.cot-btn-wa {
    width: 100%;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cot-btn-wa:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* â”€â”€ MOBILE: orden y ajustes finos â”€â”€ */
@media (max-width: 899px) {

    /* En mÃ³vil el resultado va DEBAJO del formulario */
    .cot-resultado {
        order: 2;
    }

    .cot-form {
        order: 1;
    }

    /* Inputs mÃ¡s grandes para dedos */
    .cot-input-group input {
        font-size: 26px;
    }

    /* Swatch un poco mÃ¡s grande */
    .cot-swatch {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 420px) {
    .cot-main {
        padding: 16px 10px 50px;
    }

    .cot-card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    /* Medidas: quitar la caja de Ã¡rea, ponerla abajo */
    .cot-medidas {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
    }

    .cot-area-box {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 16px;
    }

    .cot-area-label {
        font-size: 10px;
    }

    .cot-area-val {
        font-size: 18px;
    }

    .cot-manos-btns {
        gap: 6px;
    }

    .mano-btn {
        font-size: 12px;
        padding: 11px 4px;
    }

    .cot-pinturas-grid {
        max-height: 300px;
    }

    .cot-precio-val {
        font-size: 28px;
    }
}


/* =============================================
   SHARE SIDEBAR – Barra lateral de compartir
   ============================================= */
.share-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 999;
    animation: shareSidebarIn 0.6s ease 0.8s both;
}

@keyframes shareSidebarIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.share-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(3, 42, 85, 0.85);
    padding: 12px 8px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(4px);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: width 0.25s ease, padding-right 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    position: relative;
    overflow: hidden;
}

.share-btn::after {
    content: attr(aria-label);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 0 4px 4px 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.share-btn:hover::after {
    opacity: 1;
}

.share-btn:hover {
    width: 52px;
    box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);
    opacity: 0.92;
}

/* Color uniforme de la página web */
.share-facebook,
.share-whatsapp,
.share-instagram,
.share-tiktok,
.share-linkedin,
.share-pinterest {
    background: var(--secondary-color);
}

.share-facebook:hover,
.share-whatsapp:hover,
.share-instagram:hover,
.share-tiktok:hover,
.share-linkedin:hover,
.share-pinterest:hover {
    background: var(--primary-color);
    filter: none;
}

/* Ocultar en mobile para no obstruir la navegación */
@media (max-width: 991px) {
    .share-sidebar {
        display: none;
    }
}