@import "../../js/glidejs/glide.core.css";

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
html,
body {
    scroll-padding-top: 140px;
	overflow-x: hidden;
}

section {
    background-size: cover;
    background-position: center;
}

/* ==========================================================================
   BANNER SECTION
   ========================================================================== */
.banner {
    margin-bottom: 20px;
    margin-top: 79px;
    padding-top: 90px;
    padding-bottom: 94px;
}

.banner .container {
    justify-content: space-between;
}

.banner .container .btn {
    padding: 12px 42px;
}

.banner .sticker {
    display: block;
    margin-bottom: 18px;
    width: 100%;
    height: auto;
    max-width: 440px;
    transform: translateX(-5px);
}

.banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.banner p {
    padding-top: 30px;
    max-width: 400px;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    text-wrap: pretty;
}

/* Banner Slider */
.glide__track.version {
    overflow: visible;
	position: relative;
	z-index: 1;
}

.banner .right .glide__slides {
    position: relative;
    width: 100vw;
    min-height: 380px;
    max-width: 530px;
    transform: none !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.banner .right .glide__slide {
    opacity: 0;
    transition: all 0.8s ease;
}

.banner .right .glide__slide.glide__slide--active {
    opacity: 1;
    z-index: 5;
}

.banner .right .image {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Banner Image Overlay */
.banner .right .image-overlay ul {
    pointer-events: none;
}

.banner .right .image-overlay ul,
.banner .right .image-overlay ul li {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
	max-width: 500px;
    height: 100%;
    list-style: none;
    padding: 0;
}

.banner .right .image-overlay ul li {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #E40521;
    pointer-events: all;
    opacity: 0;
    transition: all 0.8s ease;
    transform: scale(0.8) rotate(10deg);
}

.banner .right .glide__slide.glide__slide--active .image-overlay ul li {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.banner .right .image-overlay ul li::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background: transparent;
    border: 1px solid #fff;
    border-radius: inherit;
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    transition: all .125s;
    cursor: pointer;
    z-index: -1;
}

.banner .right .image-overlay ul li:hover::after {
    opacity: 1;
}

.banner .right .image-overlay ul li > i {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner .right .image-overlay ul li > i::before,
.banner .right .image-overlay ul li > i::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background-color: #fff;
    transform: translate3d(-50%, -50%, 0);
}

.banner .right .image-overlay ul li > i::after {
    transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

.banner .right .image-overlay ul li span {
    position: absolute;
    bottom: 34px;
    left: 10px;
    padding: 15px 20px;
    width: 90vw;
    max-width: 200px;
    color: #1E1E1E;
    font-size: clamp(0.8125rem, 2vw, 1rem);
    font-weight: 300;
    line-height: 1.25;
    background-color: rgba(217, 217, 217, 0.70);
    border: 1.5px solid #fff;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    backdrop-filter: blur(2px);
    pointer-events: none;
    transition: all .3s;
    opacity: 0;
    transform: translate3d(0, 5px, 0);
}

/* Estilo para tooltips que se expanden hacia la izquierda */
.banner .right .image-overlay ul li span.tooltip-left {
    left: auto;
    right: 10px;
    border-radius: 8px;
    border-bottom-right-radius: 0;
}

.banner .right .image-overlay ul li:hover span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ==========================================================================
   COLOR SELECTOR COMPONENT
   ========================================================================== */
ul.colors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    list-style: none;
    padding: 0;
}

ul.colors li {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

ul.colors li::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: calc(100% + 7px);
    height: calc(100% + 7px);
    background: transparent;
    border: 1.5px solid #fff;
    border-radius: inherit;
    opacity: 0;
    transition: all .3s;
}

ul.colors li:hover::after {
    opacity: 0.6;
}

ul.colors li.active::after {
    opacity: 1;
}

/* ==========================================================================
   NAVIGATION SECTIONS
   ========================================================================== */
.nav-sections {
    position: sticky;
    top: 78px;
    padding: 0;
    margin-bottom: 20px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    z-index: 100;
}

.nav-sections.fixed-top {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-sections.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-sections ul.nav {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    color: #666;
    padding: 15px;
    padding-left: 40px;
    font-size: clamp(1.125rem, 3vw, 1.625rem);
    line-height: 1.25;
    font-weight: 500;
    user-select: none;
    width: 100%;
    max-width: 1000px;
}

.nav-sections ul.nav li.pointer {
    position: absolute;
    bottom: 10px;
    left: 40px;
    width: 90px;
    height: 4px;
    background-color: #E40521;
    transition: all 0.3s ease-out;
    transform: translate3d(0, 0, 0);
}

.nav-sections ul a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   SECTIONS CONTAINER & NAVIGATION BULLETS
   ========================================================================== */
.sections-container {
    position: relative;
    padding: 0 !important;
}

.sections-container .section-indicator {
    position: absolute;
    top: 0;
    left: 20px;
    width: 40px;
    padding: 0;
    transform: translate3d(0, -50%, 0);
    z-index: 2;
	background-color: transparent !important;
	box-shadow: unset;
}

.sections-container ul.nav-bullets {
    position: sticky;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    top: 0;
    left: 20px;
    width: 40px;
    list-style: none;
    padding: 0;
    z-index: 5;
}

.sections-container ul.nav-bullets li {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #E40521;
    transition: all 0.3s ease-out;
}

.sections-container ul.nav-bullets li::after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: inherit;
    background: transparent;
    border: 1px solid transparent;
    transform: translate3d(-50%, -50%, 0);
    transition: all 0.6s ease-out;
}

.sections-container ul.nav-bullets li.active::after {
    border-color: #E40521;
}

.sections-container ul.nav-bullets li a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

/* Container Base */
.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

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

.container .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

/* Section Base */
.section {
    position: relative;
    overflow: hidden;
    padding-top: 14vw;
    padding-bottom: 14vw;
}

.section + .section {
    margin-top: 10px;
}

.section h3 {
    font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 10px;
}

.section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.3;
    font-weight: 400;
}

/* Section Background */
.section .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section .background .bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.section .background img.image_desktop {
    display: block;
}

/* Container Content Areas */
.container > div {
    width: 70%;
    max-width: 600px;
}

.container > div.image-container {
    width: 100%;
    height: 100%;
}

.container > div.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container h3 {
    text-transform: uppercase;
}

.container p {
    text-wrap: pretty;
}

/* ==========================================================================
   UI COMPONENTS
   ========================================================================== */

/* Buttons */
.container .button-container {
    display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
}

.container .button-container.mobile-only {
    display: none;
}

.container .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 42px;
    color: #fff;
    font-size: clamp(0.875rem, 2.2vw, 1.125rem);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    text-decoration: none;
    background-color: rgba(147, 152, 158, 0.20);
    border: 2px solid #fff;
    border-radius: 24em;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
}

.container .btn:hover {
    color: #666;
    background-color: #fff;
}

.container .btn.primary {
    color: #fff;
    border-color: #E40521;
    background-color: #E40521;
}

.container .btn.primary:hover {
    background-color: #C9433F;
}

/* Container Alignment */
.container.align-left {
    justify-content: flex-start;
}

.container.align-right {
    justify-content: flex-end;
}

.container.align-center {
    justify-content: center;
    gap: 30px;
}

.container.align-space-between {
    justify-content: space-between;
}

/* ==========================================================================
   TYPOGRAPHY & COLOR THEMES
   ========================================================================== */

/* Color Themes */
.container.color-light h2,
.container.color-light h3,
.container.color-light h4,
.container.color-light h5,
.container.color-light p {
    color: #D9D9D9;
}

.container.color-dark h2,
.container.color-dark h3,
.container.color-dark h4,
.container.color-dark h5,
.container.color-dark p {
    color: #1E1E1E;
}

/* ==========================================================================
   SPECS SECTION
   ========================================================================== */
.specs .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specs .container h2 {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 55px;
}

.specs .container ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    list-style: none;
    padding: 0;
    width: 100%;
    min-height: 175px;
}

.specs .container ul li {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 55px;
    padding: 4px 30px;
    min-width: 388px;
    border: 0;
    text-align: center;
}

.specs .container ul li + li {
    border-left: 1px solid #666;
}

.specs .container ul li p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specs .container ul li p span.name {
    display: block;
    margin-bottom: 20px;
    max-width: 250px;
    font-size: clamp(1.125rem, 3vw, 1.625rem);
    line-height: 1.25;
    font-weight: 500;
}

.specs .container ul li p span.desc {
    color: #3C3C3B;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
}

.specs .container ul li p span.desc small {
    font-size: clamp(1.125rem, 3vw, 1.625rem);
    font-weight: 500;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact .container .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 45px;
    width: 100vw;
    max-width: 100%;
}

.contact .container h2 {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 55px;
}

.contact .container .wrapper > div {
    width: 50%;
    flex-basis: 50%;
}

.contact .container .wrapper > div.left {
    max-width: 510px;
}

/* Contact Version Image */
.contact .version-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.contact .version-image .version {
    position: absolute;
    display: flex;
    bottom: 25px;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 445px;
    max-height: 354px;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact .version-image .version.active {
    opacity: 1;
}

.contact .version-image .version img {
    object-fit: contain;
    object-position: bottom right;
    width: 100%;
    transition: all 0.3s ease;
}

.contact .version-image i.circle {
    position: absolute;
    display: block;
    width: 383px;
    height: 383px;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: #B2B2B2;
    z-index: -1;
}

/* Contact Gallery */
.contact .gallery {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.contact .gallery .gallery-item {
    display: flex;
    flex-grow: 1;
    flex-basis: 166px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 2px #ECECEC;
    cursor: pointer;
}

.contact .gallery .gallery-item .video-container {
    position: relative;
}

.contact .gallery .gallery-item .video-container i.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 50px;
    height: 50px;
    background-color: #E40521;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .gallery .gallery-item .video-container i.play svg {
    width: 20px;
    height: 20px;
}

.contact .gallery .gallery-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    transition: transform 0.3s ease;
}

.contact .gallery .gallery-item .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.contact .gallery .gallery-item .video-container video:hover,
.contact .gallery .gallery-item img:hover {
    transform: scale(1.05);
}

.contact .gallery-disclaimer {
	color: #666;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	margin-top: 20px;
}

/* Contact Version Selector */
.contact .version-selector {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 0px;
    margin-bottom: 10px;
    padding: 20px 44px;
    min-height: 150px;
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 8px;
}

.contact .version-selector .info,
.contact .version-selector .info ul,
.contact .version-selector .info ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex-grow: 1;
    width: 100%;
}

.contact .version-selector .info ul {
    position: relative;
    list-style: none;
    min-height: 90px;
    padding: 0;
}

.contact .version-selector .info ul li {
    display: none;
    gap: 3px;
    transition: all .3s;
    opacity: 0;
	text-align: start;
}

.contact .version-selector .info ul li.active {
    display: flex;
    opacity: 1;
}

.contact .version-selector .info .name {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transition: transform .8s, opacity 1.2s;
    transform: translate3d(0, 10px, 0);
}

.contact .version-selector .info li.active .name {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.contact .version-selector .info .price {
    font-size: clamp(1.125rem, 3vw, 1.625rem);
    font-weight: 500;
    line-height: 1.25;
}

.contact .version-selector .buttons {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 10px;
    align-items: flex-start;
    min-width: 120px;
}

.contact .version-selector .buttons .colors {
    margin-top: 0;
    gap: 20px;
}

.contact .version-selector .buttons .colors li {
    width: 23px;
    height: 23px;
    border: 1px solid #666666;
}

.contact .version-selector .buttons .colors li::after {
    border-color: #c3c3c3;
}

.contact .version-selector .buttons .colors li.active::after {
    width: calc(100% + 9px);
    height: calc(100% + 9px);
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

/* Contact Form */
.contact .form-heading .text-big {
    max-width: 410px;
}

.contact .notes small {
    display: block;
    margin-top: 16px;
}

.contact .notes small a {
	color: #666;
	font-weight: 500;
	text-decoration: underline;
}

.contact .container .button-container {
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   MODAL COMPONENTS
   ========================================================================== */
.modal-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-gallery-body {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-gallery-image img,
.modal-gallery-image video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.modal-gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.modal-gallery-close svg {
    width: 100%;
    height: 100%;
}

.modal-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    background: rgba(217, 217, 217, 0.30);
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery-prev {
    left: 1rem;
}

.modal-gallery-next {
    right: 1rem;
}

.modal-gallery-nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.modal-gallery-nav:hover svg path {
    fill: #000;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.input-error {
    color: #E40521;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    font-weight: 500;
    line-height: 1.25;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Tablet and Mobile */
@media screen and (width <= 1024px) {
    /* Specs Section Mobile Adjustments */
    .specs .container {
        padding: 0 20px;
    }

    .specs .container h2 {
        margin-bottom: 40px;
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .specs .container ul {
        flex-direction: column;
        gap: 0;
        min-height: auto;
        background-color: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .specs .container ul li {
        min-width: auto;
        padding: 20px 15px;
        gap: 15px;
        border: 0;
        border-bottom: 1px solid #e0e0e0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .specs .container ul li:last-child {
        border-bottom: 0;
    }

    .specs .container ul li + li {
        border-left: 0;
    }

    .specs .container ul li p {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    /* When p has both name and desc spans, use column layout */
    .specs .container ul li p:has(span.name):has(span.desc) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .specs .container ul li p span.name {
        margin-bottom: 0;
        max-width: none;
        font-size: clamp(1rem, 4vw, 1.125rem);
        font-weight: 500;
        color: #666;
        flex: 1;
    }

    /* When in column layout, adjust name span */
    .specs .container ul li p:has(span.name):has(span.desc) span.name {
        flex: none;
        margin-bottom: 5px;
    }

    .specs .container ul li p span.desc {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        font-weight: 700;
        color: #333;
        text-align: right;
        flex-shrink: 0;
    }

    /* When in column layout, adjust desc span */
    .specs .container ul li p:has(span.name):has(span.desc) span.desc {
        text-align: center;
        flex: none;
    }

    .specs .container ul li p span.desc small {
        font-size: clamp(0.875rem, 3vw, 1rem);
        font-weight: 500;
    }
}

@media screen and (width <= 768px) {
    /* Background Images */
    .section .background img.image_mobile {
        display: block;
    }

    .section .background img.image_desktop {
        display: none;
    }

    /* Banner Adjustments */
    .banner {
        margin-top: 79px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .banner .sticker {
        max-width: 80%;
    }

    .container p {
        padding-top: 10px;
    }

    /* Container Adjustments */
    .container {
        flex-direction: column;
        width: 100%;
    }

    .container > div {
        flex-direction: column;
        width: 100%;
		max-width: 100% !important;
    }

	#glide-versions {
		margin-top: 10px;
	}

    /* Button Container Adjustments */
    .container .button-container.desktop-only {
        display: none;
    }

    .container .button-container.mobile-only {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 27px;
    }

    /* Banner Slider Adjustments */
    .banner .right .glide__slides {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        min-height: 250px;
    }

    /* Banner Overlay Adjustments */
    .banner .right .image-overlay ul li {
        width: 20px;
        height: 20px;
        transform: scale(0.7) rotate(10deg);
    }

    .banner .right .glide__slide.glide__slide--active .image-overlay ul li {
        transform: scale(0.9) rotate(0deg);
    }

    .banner .right .image-overlay ul li::after {
        width: calc(100% + 4px);
        height: calc(100% + 4px);
    }

    .banner .right .image-overlay ul li span {
        bottom: 24px;
        left: 6px;
        padding: 10px 14px;
        max-width: 140px;
        line-height: 1.15;
        border-radius: 6px;
        border-bottom-left-radius: 0;
    }

    .banner .right .image-overlay ul li > i::before,
    .banner .right .image-overlay ul li > i::after {
        width: 45%;
        height: 1.5px;
    }

	.banner .right .image img {
		object-fit: contain;
		object-position: center;
		width: 90%;
		max-width: 500px;
		height: auto;
	}

	.sections-container .section .container {
		max-width: 500px;
		gap: 30px;
	}

	.sections-container .section .container .image-container {
		max-width: 90% !important;
	}

    /* Color Selector Adjustments */
    ul.colors {
        gap: 40px;
        margin-top: 20px;
    }

	.container .button-container.desktop-only {
		display: none;
	}

	.container.reverse {
		flex-direction: column;
	}

	/* Container Alignment */
	.container.align-left {
		justify-content: unset;
	}

	.container.align-right {
		justify-content: unset;
	}

	.container.align-center {
		justify-content: unset;
		gap: 30px;
	}

	.container.align-space-between {
		justify-content: unset;
	}

	.contact .gallery {
		display: none;
	}

	.contact .container .wrapper {
		flex-direction: column;
	}

	.contact .version-image i.circle {
		width: clamp(250px, 80vw, 383px);
		height: clamp(250px, 80vw, 383px);
		max-width: 383px;
		max-height: 383px;
		left: 50%;
		transform: translateX(-50%);
	}

	.contact .container .wrapper > div {
		width: 100%;
		max-width: 100%;
	}

	.contact .container .wrapper > div.left {
		align-items: center;
		justify-content: center;
		text-align: center;
		max-width: 100%;
	}

	.contact .container .wrapper > div.right {
		align-items: center;
		justify-content: center;
		text-align: center;
		max-width: 600px;
		margin: 0 auto;
	}

	section.contact .notes {
		padding-left: 0;
		text-align: start;
	}

	.contact .form-heading .text-big {
		width: 100%;
		max-width: 100%;
	}

	.contact .version-image .version {
		/* center */
		right: unset;
		left: 50%;
		transform: translateX(-50%);
	}

	/* Restaurar la regla original */
	.nav-sections {
        display: none;
    }

}

/* Small Mobile */
@media screen and (width <= 746px) {
    .banner {
        margin-bottom: 0px;
    }
}

@media screen and (width <= 590px) {

	#glide-versions {
		margin-top: 10px;
	}

	.sections-container .section .container {
		max-width: 100% !important;
	}

	.sections-container .section .container .image-container {
		max-width: 100% !important;
	}

	.sections-container .section-indicator {
		display: none;
	}

	.banner .sticker {
        max-width: 80%;
    }

}

