:root {
    --primary-color: #F8931F;
    --secondary-color: #032A55;
    --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: #e57d10;
    transform: translateY(-2px);
}



/* 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: #e57d10;
    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: #032a55;
    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: "•";
    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: #021a35;
    transform: translateY(-2px);
}



.main-footer {
    background-color: #032a55;
    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: #032A55;
    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: #021a35;
    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: #e57d10;
    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: #E67E22;
    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: #D35400;
    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: #f8931f;
    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;
    }
}