/* Declaraciones de fuentes "Helvetica Neue" Neue */
@font-face {
    font-family: "Helvetica Neue";
    src: url('public/font/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueUltraLightItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueThin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueThinItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:"Helvetica Neue";
    src: url('public/font/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

/* Estilos de selección de texto */
::selection {
    background-color: #56F28B;
    color: #000000;
}

::-moz-selection {
    background-color: #56F28B;
    color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Mono', monospace;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
}

nav img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    background: #000;
    padding: 20px 60px;
    border-radius: 26px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul li {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

nav ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

nav ul li:hover {
    opacity: 0.7;
}

nav ul div {
    display: flex;
    align-items: center;
}

nav ul div p {
    color: #fff;
    font-size: 8px;
    text-transform: uppercase;
}

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social p {
    color: #fff;
    font-size: 8px;
    text-transform: uppercase;
    margin: 0;
}

.nav-social-icon {
    width: 16px;
    height: 16px;
    color: #D1D1D1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.nav-social-icon:hover {
    color: #FFFFFF;
}

.nav-social-icon svg {
    width: 100%;
    height: 100%;
}

main {
    margin-top: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;

    width: 99%;
    margin: 10px auto 0 auto;
    border-radius: 25px 25px 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 100px;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

.hero .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1400px;
    gap: 4rem;
}

.hero .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero .left h1 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 400;
    color: #D1D1D1;
    max-width: 680px;
}

/* Cursor parpadeante para animación typewriter */
.typewriter-cursor {
    display: inline-block;
    animation: cursor-blink 1s infinite;
    margin-left: 2px;
    transform: scaleY(0.75) translateY(-10px);
    transform-origin: bottom;
}

@keyframes cursor-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero .left p {
    font-family: "Helvetica Neue";
    font-size: 19px;
    line-height: 25px;
    font-weight: 300;
    color: #D1D1D1;
    max-width: 415px;
    margin-top: 17px;
}

.hero .left button,
.hero .left .hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    padding: 23px 30px;
    border: 1px solid #414141;
    border-radius: 30px;
    width: fit-content;
    margin-top: 1rem;
    
    font-size: 14px;
    font-weight: 600;
    color: #D1D1D1;
    cursor: pointer;
    text-decoration: none;

    transition: all 0.3s ease;
}

.hero .left button:hover,
.hero .left .hero-cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.hero .left button img,
.hero .left .hero-cta-button img {
    width: 10px;
    height: auto;
}

.hero .right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero .right img {
    width: 22px;
    height: auto;
}

.hero .right p {
    font-family: "Helvetica Neue";
    font-size: 20px;
    color: #D1D1D1;
    font-weight: 300;
    max-width: 145px;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin: 0;
}

/* Mouse indicator styles */
.mouse {
    width: 20px;
    height: 30px;
    border-radius: 20px;
    border: 1px solid #999;
    position: relative;
}

.mouse::before,
.mouse::after {
    content: '';
    display: block;
    position: absolute;
}

/* Second item (m-1) styles */
.m-1::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: 2px;
    left: 39%;
    transform: translateX(-50%);
    background: #999;
    animation: m-1-ball 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes m-1-ball {
    0%, 65%, 100% {
        opacity: 0;
    }
    10%, 40% {
        opacity: 1;
    }
    0% {
        transform: translateY(5px) scale(0.7);
    }
    5% {
        transform: scale(0.7);
    }
    15%, 100% {
        transform: scale(1);
    }
    45%, 65% {
        transform: translateY(18px) scale(0.7);
    }
}

.about {
    background: #171717;
    height: 450px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

    width: 99%;
    margin: 0 auto;
    border-radius: 0 0 25px 25px;
    scroll-margin-top: 100px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 1;
}

.about-button {
    background: transparent;
    border: 1px solid #707070;
    color: #D1D1D1;
    padding: 11px 20px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}


.about-text {
    color: #D1D1D1;
    font-size: 26px;
    line-height: 37px;
    font-weight: 200;
    text-align: center;
    max-width: 900px;
}

.text-slider-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    padding: 2rem 0;
}

.text-slider {
    display: inline-flex;
    gap: 2rem;
    animation: slide-infinite 30s linear infinite;
    white-space: nowrap;
}

.slider-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.slider-item .asterisk {
    font-size: 21px;
    font-weight: 400;
}

.slider-item .text {
    font-size: 19px;
    font-weight: 400;
    text-transform: uppercase;
}

@keyframes slide-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    text-decoration: none;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-button.hidden {
    opacity: 0;
    transform: translateY(-100px);
    pointer-events: none;
}

.whatsapp-button.show {
    opacity: 1;
    transform: translateY(0);
    animation: slideUpFromBottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #000000;
    padding: 1rem 1.5rem;
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: min-content;
}

.whatsapp-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.whatsapp-title {
    font-family: "Helvetica Neue";
    font-size: 19px;
    font-weight: 400;
    color: #D1D1D1;
    max-width: 190px;
}

.whatsapp-subtitle {
    font-family: "Helvetica Neue"; 
    font-size: 12px;
    font-weight: 400;
    color: #6C6C6C;
    text-wrap: nowrap;
    margin: 0;
}

.whatsapp-icon-wrapper {
    width: 65px;
    height: 65px;
    background: #56F28B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon-wrapper img {
    width: 25px;
    height: 25px;
}

.services {
    background: #F7F7F7;
    padding: 100px 5%;
    width: 95%;
    max-width: 100%;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 30px;
    min-height: 100vh;
    scroll-margin-top: 100px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.services-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.device-slider-wrapper {
    position: relative;
    flex: 0 1 auto;
    max-width: 60vw;
}

.device-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #414141;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.device-slider-prev {
    left: -20px;
}

.device-slider-next {
    right: -20px;
}

.device-slider-nav:hover:not(:disabled) {
    background: #F0F0F0;
    border-color: #D0D0D0;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.device-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.device-slider-nav svg {
    width: 24px;
    height: 24px;
}

.device-buttons {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    touch-action: pan-x;
}

.device-btn {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 10px 20px 10px 10px;
    background: #FFFFFF;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    flex-shrink: 0;
}

.device-btn:hover {
    background: #dbf8e4;
}

.device-btn.active {
    background: #BFF7D2;
}

.device-btn img {
    width: 115px;
    height: auto;
    object-fit: contain;
    -webkit-user-drag: none;
}

.device-btn p {
    font-family: "Helvetica Neue";
    font-size: 21px;
    font-weight: 400;
    color: #414141;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
}

.services-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    font-weight: 500;
    max-width: 300px;
    color: #414141;
    margin: 0;
    line-height: 36px;
}

.services-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #414141;
    text-transform: uppercase;
    max-width: 215px;
    margin: 0;
}

.services-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-image-wrapper {
    position: relative;
    width: fit-content;
    padding-top: 70px;
}

.services-image {
    width: 100%;
    max-height: 555px;
    max-width: 548px;;
    height: auto;
    -webkit-user-drag: none;
    border-radius: 28px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #414141;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-nav-prev {
    left: -20px;
}

.image-nav-next {
    right: -20px;
}

.image-nav-btn:hover:not(:disabled) {
    background: #F0F0F0;
    border-color: #D0D0D0;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.image-nav-btn svg {
    width: 24px;
    height: 24px;
}

.image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.image-dots span {
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.9;
    flex-shrink: 0;
}

.image-dots span.active {
    position: relative;
    background: #FFFFFF;
}

.image-dots span.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: #414141;
    border-radius: 50%;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-label {
    background: #D1D1D1;
    border: none;
    padding: 10px 24px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    width: fit-content;
    cursor: default;
}

.device-name {
    font-size: 36px;
    font-weight: 500;
    font-family: "Helvetica Neue";
    color: #414141;
    margin: 0;
}

.device-description {
    font-size: 16px;
    font-weight: 200;
    color: #414141;
    margin: 0;
    max-width: 600px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: start;
    min-height: fit-content;
    width: 100%;
}

.service-item .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item .service-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.service-title {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.active .service-title {
    color: #000;
}

.service-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.service-item.active .service-arrow {
    transform: rotate(180deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.service-item.active .service-content {
    max-height: 500px;
    padding: 20px;
}

.service-content p {
    font-size: 13px;
    font-weight: 300;
    color: #666;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.service-item.active .service-content p {
    opacity: 1;
    transform: translateY(0);
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #D1D1D1;
    padding: 20px 32px;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 20px;
}

.schedule-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.schedule-btn img {
    width: 10px;
    height: auto;
}

.microsoldadura {
    background: #000000;
    width: 95%;
    max-width: 100%;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 30px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.microsoldadura-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.microsoldadura-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.microsoldadura-image-wrapper {
    position: relative;
    width: fit-content;
}

.microsoldadura-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.microsoldadura-image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: contain;
}

.microsoldadura-copyright {
    position: absolute;
    bottom: 75px;
    right: 200px;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 300;
    color: #F7F7F7;
    margin: 0;
    z-index: 1;
    font-family: 'Helvetica Neue', monospace;
}

.microsoldadura-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 50px;
}

.microsoldadura-subtitle-top {
    font-size: 12px;
    font-weight: 400;
    color: #D1D1D1;
    margin: 0;
    margin-top: 50px;
    margin-bottom: 25px;
    letter-spacing: -1px;
    font-family: "IBM Plex Mono", monospace;
}

.microsoldadura-title {
    font-size: 38px;
    font-weight: 500;
    font-family: "Helvetica Neue";
    color: #D1D1D1;
    margin: 0;
    margin-bottom: 25px;
}

.microsoldadura-subtitle {
    font-size: 12px;
    font-weight: 300;
    color: #D1D1D1;
    max-width: 475px;
    margin: 0;
    margin-top: 10px;
    font-family: "IBM Plex Mono", monospace;
}

.microsoldadura-subtitle b {
    font-weight: 500;
    color: #56F28B;
}

.microsoldadura-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #56F28B;
    color: #414141;
    padding: 20px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 50px;
}

.microsoldadura-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.microsoldadura-btn img {
    width: 10px;
    height: auto;
}

.microsoldadura-disclaimer {
    text-align: center;
    font-size: 9px;
    font-weight: 300;
    color: #909090;
    margin: 30px auto 0;
    max-width: 100%;
    line-height: 1.5;
}

.otros-dispositivos {
    background: linear-gradient(180deg, #56F28B 0%, rgba(255, 255, 255, 0) 50%);
    padding: 100px 5%;
    width: 95%;
    max-width: 100%;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 30px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.otros-dispositivos-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.otros-dispositivos-content {
    display: flex;
    justify-content: center;
}

.otros-dispositivos-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.otros-dispositivos-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    line-height: 44px;
    font-weight: 500;
    max-width: 300px;
    color: #1F1F1F;
}

.otros-dispositivos-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    line-height: 16px;
}

.otros-dispositivos-asterisk {
    font-size: 16px;
    color: #000000;
    margin: 0;
    margin-top: -10px;
}

.otros-dispositivos-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #D1D1D1;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.otros-dispositivos-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.otros-dispositivos-btn img {
    width: 10px;
    height: auto;
}

.otros-dispositivos-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.otros-dispositivos-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.otros-dispositivos-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-top: 40px;
    width: 100%;
}

.otros-dispositivos-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 20px;
}

.otros-dispositivos-brand-separator {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.otros-dispositivos-brand-logo {
    width: auto;
    max-width: 90px;
    height: 60px;
    max-height: 90px;
    object-fit: fill;
}

.dual-section {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
}

.dual-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dual-left {
    background: #F7F7F7;
    border-radius: 40px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    position: relative;
    padding-left: 10%;
}

.dual-left-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    line-height: 36px;
    font-weight: 500;
    color: #414141;
    margin: 0;
    max-width: 30%;
    z-index: 100;
}

.dual-left-subtitle {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #414141;
    margin: 0;
    max-width: 35%;
    text-transform: uppercase;
    z-index: 100;
    background-color: #56F28B;
}

.dual-left-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #414141;
    color: #F7F7F7;
    font-family: "Helvetica Neue";
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
    margin-top: 30px;
    z-index: 100;
}

.dual-left-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.dual-left-image {
    position: absolute;
    top: -25px;
    right: 0;
    height: 100%;
    object-fit: contain;
}

.dual-left-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse 100% 60% at bottom, rgba(86, 242, 138, 0.726) 0%, rgba(86, 242, 138, 0.664) 30%, rgba(86, 242, 139, 0.1) 50%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

/* Sección derecha - Fondo negro */
.dual-right {
    background: #000000;
    border-radius: 40px;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.dual-right-bubble {
    position: absolute;
    top: 5px;
    left: 0;
    background: #56F28B;
    color: #2a2a2a;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
    white-space: nowrap;
    font-family: "Helvetica Neue";
    position: relative;
}

.dual-right-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: #56F28B;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transform: rotate(15deg);
}

.dual-right-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    line-height: 36px;
    font-weight: 4  00;
    color: #D1D1D1;
    margin: 0;
    position: relative;
    z-index: 2;
    max-width: 175px;
}

.dual-right-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #D1D1D1;
    margin: 0;
    max-width: 175px;
    position: relative;
    z-index: 2;
}

.dual-right-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #414141;
    color: #D1D1D1;
    padding: 18px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
    margin-top: 10px;
    z-index: 2;
    position: relative;
}

.dual-right-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.dual-right-btn img {
    width: 10px;
    height: auto;
}

/* Decoraciones - Imagen de cajas */
.dual-right-decorations {
    position: absolute;
    top: 10%;
    right: 80px;
    transform: translateY(-50%);
    width: auto;
    height: 80%;
    max-width: 40%;
    object-fit: contain;
    object-position: right center;
    pointer-events: none;
    z-index: 0;
}


/* Sección Nuestro trabajo en acción */
.trabajo-accion-section {
    width: 95%;
    margin: 0 auto;
    margin-top: 100px;
}

.trabajo-accion-container {
    position: relative;
    border-radius: 20px;
    background-image: url('public/background_verde.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 125px 0;
}

.trabajo-accion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding-left: 50px;
}

.trabajo-accion-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trabajo-accion-title {
    font-family: "Helvetica Neue";
    font-size: clamp(24px, 4vw, 38px);
    line-height: clamp(22px, 3.8vw, 36px);
    font-weight: 400;
    color: #F7F7F7;
    max-width: 300px;
    margin: 0;
}

.trabajo-accion-subtitle {
    font-size: clamp(10px, 1.2vw, 12px);
    line-height: clamp(10px, 1.2vw, 12px);
    font-weight: 300;
    color: #BFF7D2;
    margin: 0;
    max-width: 250px;
}

.trabajo-accion-dash {
    display: inline-block;
    color: #BFF7D2;
    font-size: 18px;
    font-weight: 300;
    margin-top: 8px;
    line-height: 1;
}

.trabajo-accion-right {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    height: 100%;
    padding-right: 30px;
    transform-style: preserve-3d;
}

.trabajo-accion-placeholder {
    background: #E5E5E5;
    border-radius: 24px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trabajo-accion-placeholder.item-1 {
    background-image: url('public/IMG_4536.JPG.png');
}

.trabajo-accion-placeholder.item-2 {
    background-image: url('public/IMG_4541.JPG.png');
}

.trabajo-accion-placeholder.item-3 {
    background-image: url('public/IMG_4542.JPG.png');
}

/* Carousel 3D Styles */
.carousel-wrapper {
    position: relative;
    width: 750px;
    height: 500px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.carousel-scene {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: 260px;
    height: 300px;
    left: 50%;
    top: 50%;
    margin-left: -130px;
    margin-top: -150px;
    transform-style: preserve-3d;
    transition: 
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Posición izquierda - visible al costado izquierdo con rotación 3D */
.carousel-item[data-position="left"] {
    transform: translateX(-280px) translateZ(-100px) rotateY(40deg);
    opacity: 0.8;
    z-index: 1;
}

/* Posición centro - al frente, prominente */
.carousel-item[data-position="center"] {
    width: 350px;
    height: 475px;
    margin-left: -175px;
    margin-top: -237px;
    transform: translateX(0) translateZ(100px) rotateY(0deg);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

/* Posición derecha - visible al costado derecho con rotación 3D */
.carousel-item[data-position="right"] {
    transform: translateX(280px) translateZ(-100px) rotateY(-40deg);
    opacity: 0.8;
    z-index: 1;
}

/* Botones de navegación del carousel */
.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-nav-prev {
    margin-right: 10px;
}

.carousel-nav-next {
    margin-left: 10px;
}

/* Sección de Opiniones */
.opiniones-section {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 100px;
    padding: 100px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.opiniones-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.opiniones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opiniones-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.opiniones-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    line-height: 36px;
    font-weight: 500;
    color: #414141;
    margin: 0;
    letter-spacing: -0.95px;
}

.opiniones-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.opiniones-rating-container {
    background: #FFF2CC;
    border-radius: 37px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.opiniones-rating-number {
    font-family: "Helvetica Neue";
    font-size: 29px;
    font-weight: 400;
    color: #414141;
    line-height: 1;
}

.opiniones-stars {
    width: 130px;
    height: auto;
}

.opiniones-count {
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-weight: 400;
    color: #414141;
}

.opiniones-review-card {
    background: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 37px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    position: relative;
}

.review-text,
.review-author {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Animación de salida hacia la derecha (cuando se va al siguiente) */
.review-text.review-exit-next,
.review-author.review-exit-next {
    opacity: 0;
    transform: translateX(-30px);
}

/* Animación de salida hacia la izquierda (cuando se va al anterior) */
.review-text.review-exit-prev,
.review-author.review-exit-prev {
    opacity: 0;
    transform: translateX(30px);
}

/* Animación de entrada desde la derecha (cuando viene del siguiente) */
.review-text.review-enter-next,
.review-author.review-enter-next {
    animation: reviewSlideInFromRight 0.4s ease forwards;
}

/* Animación de entrada desde la izquierda (cuando viene del anterior) */
.review-text.review-enter-prev,
.review-author.review-enter-prev {
    animation: reviewSlideInFromLeft 0.4s ease forwards;
}

@keyframes reviewSlideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reviewSlideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-stars {
    width: 110px;
    height: auto;
}

.review-text {
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #414141;
    margin: 0;
}

.review-author {
    font-family: "Helvetica Neue";
    font-size: 15px;
    font-weight: 500;
    color: #414141;
    letter-spacing: -0.50px;
    margin: 0;
}

.review-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.review-nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.review-nav-btn:hover:not(:disabled) {
    color: #000;
    background: #f5f5f5;
}

.review-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-counter {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    min-width: 40px;
    text-align: center;
}

.opiniones-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.opiniones-google-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.google-circles {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #56F28B;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.google-circle-1 {
    width: 329px;
    height: 329px;
    opacity: 0.7;
}

.google-circle-2 {
    width: 472px;
    height: 472px;
    opacity: 0.4
}

.google-circle-3 {
    width: 606px;
    height: 606px;
    opacity: 0.2;
}

.google-profile {
    position: absolute;
    width: 72px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    z-index: 5;
}

.google-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-profile-1 {
    top: -15px;
    right: -10px;
    width: 50px;
    height: auto;
}

.google-profile-2 {
    width: 96px;
    height: auto;
    right: -60px;
    bottom: 20%;
}

.google-profile-3 {
    bottom: 20px;
    left: -65px;
}

.google-profile-4 {
    left: -50px;
    top: 24%;
}

.google-button {
    background: #000;
    border: none;
    border-radius: 35px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 45%;
    left: 21%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.google-button:hover {
    opacity: 0.8;
}

.google-logo {
    width: 25px;
}

.google-button span {
    font-family: "Helvetica Neue";
    font-size: 15px;
    font-weight: 300;
    color: #F7F7F7;
    white-space: nowrap;
}

.google-subtitle {
    font-size: 10px;
    line-height: 12px;
    font-weight: 300;
    color: #414141;
    margin: 0;
    max-width: 150px;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 32%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Sección de FAQs */
.faqs-section {
    background: #F7F7F7;
    padding: 75px 5%;
    padding-left: 200px;
    width: 95%;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 100px;
}

.faqs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faqs-content {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 60px;
    align-items: start;
}

.faqs-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faqs-label {
    background: #C9F5D8;
    border: none;
    border-radius: 21px;
    padding: 15px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #414141;
    width: fit-content;
}

.faqs-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    line-height: 36px;
    font-weight: 500;
    color: #414141;
    margin: 0;
}

.faqs-intro {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #414141;
    margin: 0;
    max-width: 300px;
}

.faqs-question {
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    margin: 0;
}

.faqs-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.faqs-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #414141;
    color: #F7F7F7;
    font-family: "Helvetica Neue";
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.faqs-contact-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.faqs-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 690px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-number {
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    min-width: 20px;
    line-height: 16px;
}

.faq-question-text {
    font-family: "Helvetica Neue";
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #414141;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
}

.faq-toggle:hover {
    background: #3a3a3a;
    transform: scale(1.1);
}

.faq-item.active .faq-toggle {
    background: #ADADAD;
}

.faq-item.active .faq-toggle svg path:first-child {
    display: none;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 35px 20px 0px;
}

.faq-answer {
    font-size: 12px;
    font-weight: 400;
    color: #414141;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.faq-divider {
    height: 1px;
    background: #ADADAD;
    width: 100%;
    opacity: 0.3;
}

.faq-item:last-child .faq-divider {
    display: none;
}

@media (max-width: 900px) {
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .contact-submit-btn {
        position: absolute;
        bottom: -85px;
        left: 40%;
    }

    .contact-section {
        padding-left: 5% !important;
    }

    .contact-left {
        min-height: auto;
        order: 1;
        width: 100%;
    }

    .contact-map {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 30px;
        max-width: 100%;
        width: 100% !important;
        height: 300px !important;
        align-self: center;
    }

    .contact-right {
        max-width: 100% !important;
        width: 100% !important;
        order: 2;
    }
}

@media (max-width: 1324px) {
    .microsoldadura-content {
        grid-template-columns: 1fr;
    }

    .microsoldadura-right {
        padding: 0 15px 50px 15px;
    }

    .microsoldadura-copyright {
        bottom: 20px;
        right: 10px;
    }
    
    .dual-section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .schedule-btn {
        align-self: center;
    }


    .services-top-row {
        flex-direction: column;
    }

    .services-bottom-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .device-slider-wrapper {
        max-width: 85vw;
    }

    .services-image-wrapper {
        margin: auto;
        padding-top: 0;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .otros-dispositivos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .otros-dispositivos-brands {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding-top: 20px;
    }

    .otros-dispositivos-brand-item {
        padding: 20px;
        position: relative;
    }

    /* Ocultar separadores intercalados en mobile usando display: contents para que no ocupen celdas del grid */
    .otros-dispositivos-brand-separator {
        display: none;
    }

    /* Separadores verticales: items en posiciones 1, 3, 7, 9 (primera y segunda columna de cada fila) */
    .otros-dispositivos-brand-item:nth-child(1),
    .otros-dispositivos-brand-item:nth-child(3),
    .otros-dispositivos-brand-item:nth-child(7),
    .otros-dispositivos-brand-item:nth-child(9) {
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }

    .faqs-section {
        padding-left: 5%;
        padding-right: 5%;
        width: 90%;
    }

    .faqs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faqs-right {
        max-width: 100%;
    }

    .opiniones-content {
        grid-template-columns: 1fr;
        gap: 95px;
    }

    .opiniones-left {
        align-items: center;
    }

    .opiniones-right {
        min-height: 400px;
    }

    .google-circles {
        width: 350px;
        height: 450px;
    }

    .trabajo-accion-container {
        padding: 25px 10px;
    }
    .trabajo-accion-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .trabajo-accion-right {
        position: relative;
        right: auto;
        justify-content: center;
        padding-right: 0;
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .carousel-wrapper {
        width: 637.5px;
        height: 425px;
    }

    .carousel-item {
        width: 221px;
        height: 255px;
        margin-left: -110.5px;
        margin-top: -127.5px;
    }

    .carousel-item[data-position="left"] {
        transform: translateX(-238px) translateZ(-85px) rotateY(40deg);
    }

    .carousel-item[data-position="center"] {
        width: 297.5px;
        height: 403.75px;
        margin-left: -148.75px;
        margin-top: -201.875px;
        transform: translateX(0) translateZ(85px) rotateY(0deg);
    }

    .carousel-item[data-position="right"] {
        transform: translateX(238px) translateZ(-85px) rotateY(-40deg);
    }
}

@media (max-width: 830px) {
    .trabajo-accion-container {
        padding: 25px clamp(10px, 3vw, 20px);
        overflow: hidden;
        box-sizing: border-box;
    }

    .trabajo-accion-content {
        padding: 0;
        box-sizing: border-box;
    }

    .trabajo-accion-title {
        max-width: 200px;
    }

    .trabajo-accion-subtitle {
        max-width: 195px;
    }

    .trabajo-accion-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-nav-btn {
        width: clamp(38px, 9vw, 44px);
        height: clamp(38px, 9vw, 44px);
        min-width: 38px;
        min-height: 38px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .carousel-nav-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .carousel-nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .carousel-nav-prev {
        left: 0;
        margin: 0;
    }

    .carousel-nav-next {
        right: 0;
        margin: 0;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: clamp(240px, 50vw, 425px);
        aspect-ratio: 750 / 500;
        margin: 0;
        box-sizing: border-box;
    }

    .carousel-scene {
        width: 100%;
        height: 100%;
    }

    .carousel-item {
        width: clamp(160px, 25vw, 200px);
        height: clamp(185px, 29vw, 230px);
    }

    .carousel-item[data-position="left"] {
        width: clamp(160px, 25vw, 200px);
        height: clamp(185px, 29vw, 230px);
        margin-left: clamp(-100px, -12.5vw, -100px);
        margin-top: clamp(-92.5px, -14.5vw, -115px);
        transform: translateX(clamp(-140px, -85%, -160px)) translateZ(-40px) rotateY(40deg);
        opacity: 0.6;
    }

    .carousel-item[data-position="center"] {
        width: clamp(220px, 35vw, 250px);
        height: clamp(300px, 48vw, 340px);
        margin-left: clamp(-125px, -17.5vw, -125px);
        margin-top: clamp(-150px, -24vw, -170px);
        transform: translateX(0) translateZ(40px) rotateY(0deg);
        opacity: 1;
    }

    .carousel-item[data-position="right"] {
        width: clamp(160px, 25vw, 200px);
        height: clamp(185px, 29vw, 230px);
        margin-left: clamp(-100px, -12.5vw, -100px);
        margin-top: clamp(-92.5px, -14.5vw, -115px);
        transform: translateX(clamp(140px, 85%, 160px)) translateZ(-40px) rotateY(-40deg);
        opacity: 0.6;
    }
}

@media (max-width: 500px) {
    .trabajo-accion-container {
        padding: 25px 8px;
    }

    .trabajo-accion-right {
        padding: 0 2px;
    }

    .carousel-nav-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .carousel-nav-prev {
        left: 2px;
    }

    .carousel-nav-next {
        right: 8px;
    }

    .carousel-wrapper {
        padding: 0 38px;
    }

    .carousel-scene {
        width: 80%;
    }

    .carousel-item[data-position="center"] {
        left: 50%;
        top: 50%;
        width: clamp(180px, 50vw, 220px);
        height: clamp(245px, 66vw, 300px);
        margin-left: clamp(-110px, -25vw, -110px);
        margin-top: clamp(-122.5px, -33vw, -150px);
        transform: translateX(0) translateZ(30px) rotateY(0deg);
    }
}

@media (max-width: 320px) {
    .trabajo-accion-container {
        padding: 25px 5px;
    }

    .trabajo-accion-right {
        padding: 0;
    }

    .carousel-nav-btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }

    .carousel-nav-prev {
        left: 5px;
    }

    .carousel-nav-next {
        right: 70px;
    }

    .carousel-wrapper {
        padding: 0 36px;
    }

    .carousel-item {
        width: 140px;
        height: 162px;
        left: 50%;
        top: 50%;
    }

    .carousel-item[data-position="left"] {
        width: 140px;
        height: 162px;
        left: 50%;
        top: 50%;
        margin-left: -70px;
        margin-top: -81px;
        transform: translateX(-110px) translateZ(-30px) rotateY(40deg);
        opacity: 0.5;
    }

    .carousel-item[data-position="center"] {
        width: 180px;
        height: 245px;
        left: 50%;
        top: 50%;
        margin-left: -90px;
        margin-top: -122.5px;
        transform: translateX(0) translateZ(30px) rotateY(0deg);
        opacity: 1;
    }

    .carousel-item[data-position="right"] {
        width: 140px;
        height: 162px;
        left: 50%;
        top: 50%;
        margin-left: -70px;
        margin-top: -81px;
        transform: translateX(110px) translateZ(-30px) rotateY(-40deg);
        opacity: 0.5;
    }
}

/* Sección de Contacto */
.contact-section {
    background: #000000;
    padding: 60px 5%;
    padding-left: 12vw;
    width: 95%;
    border-radius: 40px;
    margin: 0 auto;
    margin-top: 30px;
    scroll-margin-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 150px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    min-height: 400px;
}

.contact-title {
    font-family: "Helvetica Neue";
    font-size: 38px;
    line-height: 36px;
    font-weight: 400;
    color: #F7F7F7;
    max-width: 200px;
    margin: 0;
}

.contact-intro {
    font-size: 12px;
    font-weight: 400;
    color: #D1D1D1;
    margin: 0;
    max-width: 300px;
}

.contact-map {
    position: absolute;
    bottom: -35%;
    left: 0;
    z-index: 2;
    width: 390px;
    height: 355px;
    border-radius: 32px;
    overflow: hidden;
    filter: grayscale(100%);
}

.contact-map .leaflet-container {
    width: 100%;
    height: 100%;
    background: #2d2d2d;
}

.contact-right {
    display: flex;
    flex-direction: column;
    max-width: 410px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    font-family: "Helvetica Neue";
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #707070;
    color: #D1D1D1;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #ADADAD;
    opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: #56F28B;
}

.form-field textarea {
    resize: vertical;
    min-height: 10px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #56F28B;
    color: #000000;
    padding: 15px 32px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: #4AE077;
    transform: translateY(-2px);
}

.contact-submit-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        padding-top: 125px;
        min-height: 75vh;
        height: 78vh;
    }

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

    .hero .right {
        order: -1;
        align-self: center;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .hero .right img {
        width: 30px;
        margin-top: 10px;
    }

    .hero .right p {
        font-size: 16px;
    }

    .hero .left {
        width: 100%;
        align-items: center;
    }

    .hero .left h1 {
        font-size: 32px;
        line-height: 38px;
        max-width: 100%;
    }

    .hero .left button {
        display: none;
    }

    .about-text {
        font-size: 17px;
        line-height: 18px;
        max-width: 100%;
        padding: 0 20px;
    }

    .text-slider-wrapper {
        padding: 1rem 0;
        bottom: 20px;
    }

    .slider-item .asterisk {
        font-size: 16px;
    }

    .slider-item .text {
        font-size: 16px;
    }

    .services-title {
        font-size: 48px;
    }

    .device-name {
        font-size: 42px;
    }

    .device-buttons {
        gap: 12px;
    }

    .device-btn {
        min-width: 100px;
        padding: 15px 20px;
    }

    .device-btn img {
        width: 40px;
    }

    .opiniones-section {
        padding: 60px 0;
        margin-top: 60px;
    }

    .opiniones-content {
        gap: 55px;
    }

    .opiniones-title {
        font-size: 32px;
        line-height: 30px;
    }

    .opiniones-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .opiniones-rating-container {
        padding: 12px 20px;
    }

    .opiniones-rating-number {
        font-size: 24px;
    }

    .opiniones-stars {
        width: 110px;
    }

    .opiniones-review-card {
        max-width: 100%;
        padding: 25px;
    }

    .review-stars {
        width: 90px;
    }

    .review-text {
        font-size: 15px;
        line-height: 19px;
    }

    .opiniones-right {
        min-height: 350px;
    }

    .google-circles {
        width: 280px;
        height: 380px;
    }

    .google-circle-1 {
        width: 250px;
        height: 250px;
    }

    .google-circle-2 {
        width: 360px;
        height: 360px;
    }

    .google-circle-3 {
        width: 460px;
        height: 460px;
    }

    .google-profile-1 {
        width: 40px;
        top: -10px;
        right: -5px;
    }

    .google-profile-2 {
        width: 75px;
        right: -45px;
    }

    .google-profile-3 {
        width: 60px;
        left: -50px;
        height: auto;
    }

    .google-profile-4 {
        width: 55px;
        left: -40px;
        height: auto;
    }

    .google-button span {
        font-size: 13px;
    }

    .google-button {
        padding: 15px 20px;
        gap: 5px;
        left: 15%;
        top: 35%;
    }
    
    .google-subtitle {
        top: 53%;
        left: 23%;
    }


    .faqs-section {
        padding: 40px 5%;
        padding-left: 5%;
        padding-right: 5%;
        width: 90%;
        margin-top: 60px;
        border-radius: 20px;
    }

    .faqs-content {
        gap: 30px;
    }

    .faqs-title {
        font-size: 28px;
        line-height: 32px;
    }

    .faqs-intro {
        max-width: 100%;
        font-size: 11px;
    }

    .faqs-contact-wrapper {
        margin-top: 30px;
    }

    .faqs-contact-btn {
        padding: 16px 40px;
        font-size: 14px;
        width: 100%;
    }

    .faq-header {
        padding: 15px 0;
        gap: 10px;
    }

    .faq-number {
        font-size: 14px;
        min-width: 18px;
    }

    .faq-question-text {
        font-size: 14px;
        line-height: 20px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-toggle svg {
        width: 14px;
        height: 14px;
    }

    .faq-item.active .faq-content {
        padding: 0 0 15px 0;
    }

    .faq-answer {
        font-size: 11px;
        line-height: 16px;
    }

    .otros-dispositivos {
        padding: 0;
        border-radius: 20px;
        width: 95%;
        margin-top: 60px;
        background: linear-gradient(180deg, #56F28B 0%, rgba(255, 255, 255, 0) 40%);
    }

    .otros-dispositivos-container {
        display: flex;
        flex-direction: column;
    }

    .otros-dispositivos-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .otros-dispositivos-right {
        order: 1;
        width: 100%;
        padding: 40px 20px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .otros-dispositivos-image {
        max-width: 400px;
        width: 100%;
        height: auto;
    }

    .otros-dispositivos-left {
        order: 2;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 30px 20px 40px;
        background: #FFFFFF;
        gap: 15px;
    }

    .otros-dispositivos-title {
        font-size: 32px;
        line-height: 38px;
        max-width: 100%;
        text-align: center;
        margin: 0;
    }

    .otros-dispositivos-subtitle {
        font-size: 11px;
        line-height: 14px;
        text-align: center;
        margin: 0;
    }

    .otros-dispositivos-btn {
        margin-top: 5px;
        padding: 15px 40px;
        font-size: 13px;
        border-radius: 25px;
    }

    .otros-dispositivos-btn img {
        width: 9px;
    }

    .otros-dispositivos-brands {
        order: 3;
        padding: 10px 15px;
        background: #FFFFFF;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .otros-dispositivos-brand-item {
        padding: 15px 10px;
        position: relative;
    }

    /* Ocultar separadores intercalados en mobile */
    .otros-dispositivos-brand-separator {
        display: none;
    }

    /* Separadores verticales: items en posiciones 1, 3, 7, 9 (primera y segunda columna de cada fila) */
    .otros-dispositivos-brand-item:nth-child(1),
    .otros-dispositivos-brand-item:nth-child(3),
    .otros-dispositivos-brand-item:nth-child(7),
    .otros-dispositivos-brand-item:nth-child(9) {
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }

    .otros-dispositivos-brand-logo {
        max-height: 50px;
    }

    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-content {
        padding: 0.75rem 1.25rem;
        gap: 1rem;
        border-radius: 18px;
    }

    .whatsapp-title {
        font-size: 16px;
        max-width: 160px;
    }

    .whatsapp-subtitle {
        font-size: 11px;
    }

    .whatsapp-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon-wrapper img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 500px) {
    .google-button {
        padding: 15px 20px;
        gap: 5px;
        left: 4%;
        top: 33%;
    }

    .google-logo {
        width: 15px;
    }
    
    .google-subtitle {
        font-size: 9px;
        max-width: 130px;
        top: 53%;
        left: 19%;
    }

    .google-circles {
        width: 200px;
        height: 270px;
    }

    .google-circle-1 {
        width: 170px;
        height: 170px;
    }

    .google-circle-2 {
        width: 245px;
        height: 245px;
    }

    .google-circle-3 {
        width: 303px;
        height: 303px;
    }

    .google-profile-1 {
        width: 30px;
        top: -8px;
        right: -4px;
    }

    .google-profile-2 {
        width: 56px;
        right: -34px;
    }

    .google-profile-3 {
        width: 45px;
        left: -38px;
        height: auto;
    }

    .google-profile-4 {
        width: 41px;
        left: -30px;
        height: auto;
    }

    .services {
        padding: 30px 5%;
    }

    .schedule-btn {
        align-self: center;
    }

    .microsoldadura-btn {
        align-self: center;
    }

    .microsoldadura-image {
        object-fit: cover;
        height: 250px;
        border-radius: 0px;
    }

    .microsoldadura-subtitle-top {
        font-size: 10px;
        margin: auto;
        margin-top: -50px;
    }

    .microsoldadura-title {
        font-size: 30px;
        margin: auto;
        margin-bottom: 25px;
    }

    .microsoldadura-subtitle {
        font-size: 11px;
    }

    .microsoldadura-copyright {
        display: none;
    }

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-content {
        padding: 0.6rem 1rem;
        gap: 0.75rem;
        border-radius: 16px;
    }

    .whatsapp-title {
        font-size: 14px;
        max-width: 140px;
    }

    .whatsapp-subtitle {
        font-size: 10px;
    }

    .whatsapp-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .whatsapp-icon-wrapper img {
        width: 20px;
        height: 20px;
    }

    .faqs-contact-wrapper {
        display: none;
    }

    .dual-right-btn {
        left: 13% !important;
    }
}

/* Footer */
.footer {
    background: #FFFFFF;
    padding: 80px 5% 40px;
    width: 95%;
    margin: 0 auto;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    row-gap: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-social {
    grid-column: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0);
}

.footer-logo-text {
    font-size: 11px;
    font-weight: 400;
    color: #ADADAD;
    font-family: "Helvetica Neue", sans-serif;
}

.footer-copyright {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #414141;
}

.footer-label {
    font-size: 11px;
    font-weight: 400;
    color: #414141;
    margin: 0;
    margin-bottom: 10px;
}

.footer-value {
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    color: #414141;
    margin: 0;
    width: max-content;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #414141;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #000000;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #ADADAD;
    opacity: 0.3;
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: fit-content;
}

.footer-nav-link {
    font-size: 12px;
    font-weight: 500;
    color: #414141;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #000000;
}

.footer-credits {
    text-decoration: none;
    font-family: "Helvetica Neue";
    font-size: 12px;
    font-weight: 400;
    color: #414141;
    margin: 0;
}

/* Footer Mobile */
.footer-mobile {
    display: none;
    background: #FFFFFF;
    width: 100%;
    max-width: 100%;
    margin-top: 100px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-mobile-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-mobile-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    background: #FFFFFF;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-mobile-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-mobile-label {
    font-size: 11px;
    font-weight: 300;
    color: #414141;
    margin: 0;
    text-transform: uppercase;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-mobile-value {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #414141;
    margin: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-mobile-date-value {
    font-size: 13px;
    line-height: 10px;
    font-weight: 300;
    color: #414141;
    margin: 0;
    text-transform: uppercase;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-mobile-social-icon {
    width: 24px;
    height: 24px;
    color: #414141;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.footer-mobile-social-icon:hover {
    color: #000000;
}

.footer-mobile-social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    background: #FFFFFF;
    gap: 20px;
}

.footer-mobile-nav-link {
    font-size: 12px;
    font-weight: 400;
    color: #414141;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-mobile-nav-link:hover {
    color: #000000;
}

.footer-mobile-bottom {
    background: #000000;
    padding: 40px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.footer-mobile-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-mobile-logo-img {
    height: 35px;
    width: auto;
}

.footer-mobile-copyright {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 8px;
    font-weight: 400;
    color: #D3D3D3;
    margin: auto;
    text-align: center;
    width: 35%;
}

.footer-mobile-credits {
    font-family: "Helvetica Neue", sans-serif;
    background: #FFFFFF;
    color: #000000;
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    padding: 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-mobile-credits a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-mobile-credits a:hover {
    color: #414141;
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .dual-left {
        padding: 30px 20px;
        padding-left: 20px;
        align-items: flex-start;
        min-height: auto;
        overflow: hidden;
    }

    .dual-left-title {
        font-size: 28px;
        line-height: 32px;
        max-width: 100%;
        margin-bottom: 8px;
        order: 1;
    }

    .dual-left-subtitle {
        font-size: 11px;
        line-height: 13px;
        max-width: 100%;
        margin-bottom: 20px;
        order: 2;
    }

    .dual-left-btn {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        justify-content: center;
        align-self: stretch;
        order: 4;
    }

    .dual-left-image {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
        margin: 20px auto;
        order: 3;
    }

    .dual-left-image-overlay {
        display: none;
    }

    .dual-right {
        padding: 85px 10px;
        position: relative;
        overflow: visible;
        border-radius: 18px;
    }

    .dual-right-btn {
        position: absolute;
        bottom: -25px;
        left: 35%;
    }

    .dual-right-decorations {
        top: 0;
        right: 10px;
        max-width: 70%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .contact-section {
        padding: 40px 5%;
        border-radius: 30px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-submit-btn {
        left: 23%;
        bottom: -65px;
    }


    .contact-title {
        font-size: 32px;
        line-height: 30px;
        max-width: 100%;
    }

    .contact-intro {
        font-size: 11px;
        max-width: 100%;
    }

    .footer {
        display: none;
    }

    .footer-mobile {
        display: flex;
    }
}

@media (min-width: 769px) {
    .footer-mobile {
        display: none;
    }

    .header-mobile {
        display: none;
    }
}

/* Header Mobile */
.header-mobile {
    display: none;
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    background: #000000;
    padding: 12px 20px;
    border-radius: 12px;
}

.nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.nav-mobile-logo {
    height: 30px;
    width: auto;
}

.nav-mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.nav-mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menú móvil overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.mobile-menu-logo-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-logo {
    height: 30px;
    width: auto;
}

.mobile-menu-tagline {
    font-size: 9px;
    font-weight: 300;
    color: #ADADAD;
    margin: 0;
    font-family: "Helvetica Neue", monospace;
    line-height: 1.2;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
    flex-shrink: 0;
    align-items: flex-start;
}

.mobile-menu-link {
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

.mobile-menu-divider {
    width: 100%;
    height: 1px;
    background: #ADADAD;
    opacity: 0.3;
    margin: 5px 0;
    flex-shrink: 0;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.mobile-menu-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-contact-label {
    font-size: 9px;
    font-weight: 300;
    color: #ADADAD;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.mobile-menu-contact-value {
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.mobile-menu-horarios-value {
    font-size: 12px;
    font-weight: 300 !important;
}

.mobile-menu-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-menu-social-label {
    font-size: 9px;
    font-weight: 300;
    color: #ADADAD;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.mobile-menu-social-icons {
    display: flex;
    gap: 20px;
}

.mobile-menu-social-icon {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-menu-social-icon:hover {
    opacity: 0.7;
}

.mobile-menu-social-icon svg {
    width: 100%;
    height: 100%;
}

.mobile-menu-footer-text {
    font-size: 9px;
    font-weight: 300;
    color: #ADADAD;
    margin: 0;
    font-family: "Helvetica Neue", monospace;
    line-height: 1.2;
}

.mobile-menu-footer-text b {
    font-weight: 400;
    color: #cccbcb;
    font-family: "Helvetica Neue", monospace;
}

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }
}

/* ============================================
   ANIMACIONES DE ENTRADA AL SCROLL
   ============================================ */

/* Clase base para elementos que se animarán */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animación fade-in desde abajo */
[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-up"].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animación fade-in desde la izquierda */
[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"].animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Animación fade-in desde la derecha */
[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate="fade-right"].animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Animación fade-in simple */
[data-animate="fade"] {
    transform: none;
}

[data-animate="fade"].animate-in {
    opacity: 1;
}

/* Animación scale */
[data-animate="scale"] {
    transform: scale(0.9);
}

[data-animate="scale"].animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Delays para animaciones escalonadas */
[data-animate-delay="100"] {
    transition-delay: 0.1s;
}

[data-animate-delay="200"] {
    transition-delay: 0.2s;
}

[data-animate-delay="300"] {
    transition-delay: 0.3s;
}

[data-animate-delay="400"] {
    transition-delay: 0.4s;
}

[data-animate-delay="500"] {
    transition-delay: 0.5s;
}

/* El hero no debe animarse (ya está visible) */
.hero [data-animate] {
    opacity: 1;
    transform: none;
}