@import url('https://fonts.googleapis.com/css2?family=Arsenal+SC:ital,wght@0,400;0,700;1,400;1,700&family=PT+Sans+Nflecha:wght@400;700&family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;

    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;

    --cursor-size: 28px;
}

#cursor {
    position: fixed;
    top: calc(var(--cursor-size) * -0.5);
    left:  calc(var(--cursor-size) * -0.5);
    pointer-events: none;
    mix-blend-mode: color-dodge;
    filter: url(#goo);
    z-index: 1;
}

.cursor-circulo {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border-radius: var(--cursor-size);
    background: #2f98f5;
    transform-origin: center center;
    transition: background 0.3s ease;
}

.goo {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: #002233 !important;
    background-attachment: fixed;
}

.estrellas {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #fff;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

.menubar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 2;
}

.menubar div {
    display: flex;
}

.menubar .bar {
    text-align: left;
    margin-left: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menubar h1 {
    color: rgba(255, 255, 255, 0.212);
    font-size: 9px;
    text-align: center;
    margin-left: 8%;
    position: relative;
    bottom: 10px;
}

.menubar .nombre {
    position: relative;
    margin-left: 5%;
    font-weight: 400;
    font-family: "Teko", sans-serif;
    font-style: normal;
    transition: text-shadow 0.5s ease;
}

.menubar .nombre:hover {
    text-shadow: 0 0 5px #88fafd, 0 0 25px #88fafd;
}

.menubar .nombre span {
    position: absolute;
    color: #fff;
    font-size: 38px;
    letter-spacing: 5px;
}

.menubar .nombre span:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 0.3px #88fafd;
}

.menubar .nombre span:nth-child(2) {
    color: #88fafd;
    -webkit-text-stroke: 1px #88fafd;
    animation: movimiento 3s ease-in-out infinite;
}

@keyframes movimiento {
  0%, 100% {
    clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 
     54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }

  50% {
    clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 
     51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}

.menubar .nombre a,
.menubar .bar li a {
    text-decoration: none;
    color: inherit;
}

.menubar .bar li {
    margin-top: 2px;
    margin-left: 1%;
    color: white;
    display: inline-block;
    font-family: "PT Sans Nflecha", sans-serif;
    font-size: 13px;
    justify-content: center;
    margin-right: 20px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menubar .bar li:hover {
    color: #88fafd;
}

.menubar .bar li::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #88fafd;
    transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1), left 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menubar .bar li:hover::after {
    width: 100%;
    left: 0%;
}

.menubar .bar .animhover1 a {
    text-transform: uppercase;
    color: inherit;
    text-decoration: none;
    line-height: 46px;
}

.menubar .bar #selec {
    color: #88fafd;
}

.menubar .bar #selec:hover {
    color: white;
}

body {
    font-family: "PT Sans Nflecha", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.inicio {
    background-color: #002233;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-bottom: 0; /* Asegurar que no tenga margen inferior */
}

.js-slick-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.js-slide {
    position: relative;
    height: 100vh !important;
    min-height: 600px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.5s ease;
}

.bg-image.active {
    opacity: 0.3;
}

.slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 4rem;
    height: 100%;
}

.text-section {
    flex: 1;
    text-align: left;
    position: relative;
    max-width: 600px;
}

.image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 500px;
}

.side-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    object-fit: contain;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.side-image.animate {
    transform: translateX(0);
    opacity: 1;
}

.side-image:hover {
    transform: translateX(0) scale(1.05);
}

.text-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.425), 0 0 25px rgba(255, 255, 255, 0.336);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    transition: all 0.6s ease;
}

.text-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.612);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    transition: all 0.6s ease;
}

.verMas {
    position: relative;
    border: 0;
    transition: all 0.5s ease;
    min-width: 160px;
    padding: 16px 32px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px 15px;
    text-transform: uppercase;
    background: #000000;
    color: white;
    display: inline-block;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
}

.verMas:hover {
    background: aqua;
    box-shadow: 0 0 5px aqua, 0 0 25px aqua;
    color: #000000;
}

.text-section h2.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.text-section p.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.verMas.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.wave-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
    margin: 0;
    padding: 0;
    line-height: 0; /* Elimina cualquier altura de línea */
}

.wave-overlay svg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom; /* Esto elimina el espacio de línea base */
}

.js-slick-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.js-slick-carousel .slick-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.js-slick-carousel .slick-prev {
    left: 30px;
}

.js-slick-carousel .slick-next {
    right: 30px;
}

.js-slick-carousel .slick-arrow:before {
    content: none;
}

.js-slick-carousel .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.js-slick-carousel .slick-dots li {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.js-slick-carousel .slick-dots li.slick-active {
    background: rgba(255, 255, 255, 0.8);
}

.js-slick-carousel .slick-dots li button {
    display: none;
}

.servicios {
    background-image: url(../img/fondoservicios.svg);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: -10px; /* Solapar hacia arriba */
    position: relative;
    z-index: 6; /* Mayor que la onda */
}

.servicios .partes {
    margin-top: 15%;
    margin-left: 15%;
    z-index: 2;
}

.nombre {
    font-size: clamp(32px, 5vw, 128px);
}

.servicios .partes .cajaservicios {
    margin-top: 7%;
    display: flex;
}

.servicios .partes .stipos-container {
    flex: 1;
}

.servicios .partes .stipos2-container {
    flex: 1;
}

.servicios .partes .stipos, 
.servicios .partes .stipos2 {
    color: white;
    font-size: 30px;
    transition: margin 0.3s ease-in-out;
    font-weight: 600;
    cursor: pointer;
}

.servicios .partes .stipos.mostrar, 
.servicios .partes .stipos2.mostrar {
    margin-bottom: 10px; 
}

.servicios .partes #esconderbtntienda,
.servicios .partes #esconderbtngestion,
.servicios .partes #esconderbtnweb,
.servicios .partes #esconderbtnsis {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.1s, opacity 0.3s ease-in-out;
}

.servicios .partes #esconderbtntienda.visible,
.servicios .partes #esconderbtngestion.visible,
.servicios .partes #esconderbtnweb.visible,
.servicios .partes #esconderbtnsis.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.servicios .partes .desctienda, 
.servicios .partes .descgestion,
.servicios .partes .descweb, 
.servicios .partes .descsis {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
    max-width: 80%;
    color: rgba(255, 255, 255, 0.6);;
    margin-bottom: 5px
}

.servicios .partes .desctienda, 
.servicios .partes .descgestion,
.servicios .partes .descweb, 
.servicios .partes .descsis {
    font-weight: 550;
}

.servicios .partes .desctienda.visible, 
.servicios .partes .descgestion.visible,
.servicios .partes .descweb.visible, 
.servicios .partes .descsis.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    max-width: 80%;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    font-weight: 550;
}

.servicios .partes button {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.servicios .partes button.ver-planes {
    width: 192px;
    height: auto;
}

.servicios .partes button.ver-planes .circulo {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 48px;
    height: 48px;
    background: aqua;
    border-radius: 26px;
}

.servicios .partes button.ver-planes .circulo .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.servicios .partes button.ver-planes .circulo .icon.flecha {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 10px;
    width: 18px;
    height: 2px;
    background: none;
}

.servicios .partes button.ver-planes .circulo .icon.flecha::before {
    position: absolute;
    content: "";
    top: -4.64px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: rotate(45deg);
}

.servicios .partes button.ver-planes .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 0;
    margin: 0 0 0 29.6px;
    color: aqua;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.servicios .partes button:hover .circulo {
    width: 100%;
    box-shadow: 0 0 5px aqua, 0 0 25px aqua;
}

.servicios .partes button:hover .circulo .icon.flecha {
    background: #000000;
    transform: translate(16px, 0);
}

.servicios .partes button:hover .button-text {
    color: #000000;
}

.servicios .partes .mas {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: rgba(229, 229, 229, 0.62);
}

.info {
    background: #002233;
    position: relative;
}

.info .partes {
    margin-top: 15%;
    padding: 0 20px;
}

.steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.progress-line {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 320px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4FACF7, #40c9ff);
    transition: width 2s ease;
    animation: progressAnimation 3s ease forwards;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4FACF7, #40c9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 1px rgba(79, 172, 247, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(79, 172, 247, 0.5);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    filter: drop-shadow(0 0 15px rgba(79, 172, 247, 0.5));
    transform: scale(1.05);
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.step:hover .step-title {
    color: #40c9ff;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 250px;
}

.step-description .highlight {
    color: #40c9ff;
    font-weight: 600;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.step {
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.info .partes .nombre {
    margin-left: 15%;
    margin-bottom: 5%;
}

.circulos-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/mnt/data/circulo-scatter-haikei.png'); 
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1; 
}

.contedorcaracts {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 10%;
}

.caracts {
    color: #ffffff;
    margin-left: 20px;
}

.caracts h2 {
    font-size: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.37), 0 0 25px rgba(255, 255, 255, 0.37);;
}

.imginfo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px rgb(255, 255, 255, 0.37)) drop-shadow(0 0 25px rgb(255, 255, 255, 0.37));
}

.info .partes .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.info .partes .container .caja1 {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.info .partes .container .caja1:hover {
    box-shadow: 0 20px 60px rgba(79, 172, 247, 0.2);
    border-color: rgba(79, 172, 247, 0.3);
    background: rgba(255, 255, 255, 0.12);
}
.info .partes .container .caja1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 247, 0.1), rgba(64, 201, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.info .partes .container .caja1:hover::before {
    opacity: 1;
}

.info .partes .container .caja1 > * {
    position: relative;
    z-index: 2;
}

.info .partes .container .caja1 img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.info .partes .container .caja1:hover img {
    filter: drop-shadow(0 0 15px rgba(79, 172, 247, 0.5));
    transform: scale(1.1);
}

.info .partes .container .caja1 svg {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.info .partes .container .caja1:hover svg {
    filter: drop-shadow(0 0 15px rgba(79, 172, 247, 0.5));
    transform: scale(1.1);
}

.info .partes .container .caja1 .titulo {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.info .partes .container .caja1:hover .titulo {
    color: #40c9ff;
    text-shadow: 0 0 15px rgba(79, 172, 247, 0.4);
}

.info .partes .container .caja1 p.desc {
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 90%;
    font-weight: 400;
    transition: color 0.3s ease;
}

.info .partes .container .caja1:hover p.desc {
    color: rgba(255, 255, 255, 0.95);
}

.info .partes .container .caja1 p .imp {
    font-weight: 600;
    color: #40c9ff;
    position: relative;
    transition: all 0.3s ease;
}

.info .partes .container .caja1:hover p strong {
    color: #4FACF7;
    text-shadow: 0 0 8px rgba(79, 172, 247, 0.3);
}

.info .partes .container .caja1:hover p .imp {
    color: #4FACF7;
    text-shadow: 0 0 8px rgba(79, 172, 247, 0.3);
}

.info .partes .container .caja1 .button-container {
    margin-top: 30px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.info .partes .container .caja1 .button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(79, 172, 247, 0.2), rgba(64, 201, 255, 0.2));
    color: #fff;
    border: 2px solid rgba(79, 172, 247, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info .partes .container .caja1 .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.info .partes .container .caja1 .button:hover::before {
    left: 100%;
}

.info .partes .container .caja1 .button:hover {
    background: linear-gradient(135deg, #4FACF7, #40c9ff);
    color: #000;
    border-color: #40c9ff;
    box-shadow: 0 0 25px rgba(79, 172, 247, 0.4);
    transform: translateY(-2px);
}

.info .partes .subnombre {
    margin-top: 10%;
    text-align: center;
}

.info .partes .subnombre h2 {
    color: #ffffff;
    user-select: none;
}

.info .partes .subnombre .p1 {
    color: aqua;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10%;
}

.info .partes .subnombre .p2 {
    color: aqua;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 1%;
}

.info .partes .subnombre p span {
    color: #fff;
}

.info .partes .faq-general {
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.info .partes .faq-general::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.info .partes .faq-general .faq-contenedor {
    width: 100%;
    max-width: 700px;
    box-shadow: 
        0 0 20px rgba(79, 172, 247, 0.1),
        0 0 40px rgba(79, 172, 247, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 172, 247, 0.1);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info .partes .faq-general .faq-item {
    border-bottom: 1px solid rgba(79, 172, 247, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transition: all 0.3s ease;
}

.info .partes .faq-general .faq-item:nth-child(1) { animation-delay: 0.1s; }
.info .partes .faq-general .faq-item:nth-child(2) { animation-delay: 0.2s; }
.info .partes .faq-general .faq-item:nth-child(3) { animation-delay: 0.3s; }
.info .partes .faq-general .faq-item:nth-child(4) { animation-delay: 0.4s; }
.info .partes .faq-general .faq-item:nth-child(5) { animation-delay: 0.5s; }

.info .partes .faq-general .faq-item:last-child {
    border-bottom: none;
}

.info .partes .faq-general .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 247, 0.15);
}

.info .partes .faq-general .faq-pregunta {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info .partes .faq-general .faq-pregunta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.info .partes .faq-general .faq-pregunta:hover::before {
    left: 100%;
}

.info .partes .faq-general .faq-pregunta h2 {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.info .partes .faq-general .faq-pregunta:hover {
    background-color: rgba(79, 172, 247, 0.1);
    transform: translateX(5px);
}

.info .partes .faq-general .faq-pregunta:hover h2 {
    color: #40c9ff;
}

.info .partes .faq-general .faq-pregunta .flecha {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.info .partes .faq-general .faq-pregunta:hover .flecha {
    transform: rotate(90deg) scale(1.1);
}

.info .partes .faq-general .faq-pregunta .flecha svg path {
    fill: #40c9ff;
    transition: fill 0.3s ease;
}

.info .partes .faq-general .faq-pregunta:hover .flecha svg path {
    fill: #fff;
}

.info .partes .faq-general .faq-item.active .faq-pregunta {
    background-color: rgba(79, 172, 247, 0.15);
}

.info .partes .faq-general .faq-item.active .faq-pregunta h2 {
    color: #40c9ff;
}

.info .partes .faq-general .faq-item.active .faq-pregunta .flecha {
    transform: rotate(90deg);
}

.info .partes .faq-general .faq-respuesta {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    transition: all 0.4s ease;
    position: relative;
}

.info .partes .faq-general .faq-respuesta.open {
    max-height: 300px;
    padding: 20px 25px;
    border-top: 1px solid rgba(79, 172, 247, 0.1);
}

.info .partes .faq-general .faq-respuesta .imp {
    color: #40c9ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(64, 201, 255, 0.3);
    transition: all 0.3s ease;
}

.info .partes .faq-general .faq-respuesta .imp:hover {
    text-shadow: 0 0 15px rgba(64, 201, 255, 0.5);
}

.info .partes .faq-general .faq-item {
    position: relative;
}

.info .partes .faq-general .faq-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4FACF7, #40c9ff);
    transition: width 0.3s ease;
}

.info .partes .faq-general .faq-item:hover::after {
    width: 100%;
}

.contacto  {
    background-image: url(../img/fondocontacto.svg); 
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    overflow: hidden; 
}

.contacto .partes{
    margin-top: 15%;
    margin-left: 15%;
    margin-bottom: 10%;
}

.notification {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #40c9ff;
    color: rgb(0, 0, 0);
    padding: 15px;
    border-radius: 5px;
    font-size: 16px; 
    display: none;
    z-index: 9999;
    width: 90%;
    max-width: 250px; 
    text-align: center;
    box-sizing: border-box;
}

.progress-bar {
    height: 5px;
    width: 100%;
    background-color: #000000;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%; 
    background-color: #4aabc3;
    border-radius: 5px;
    transition: width 3s linear; 
}


.contacto .nombre {
    margin-bottom: 10%;
}

.contacto .partes .contactoinfo {
    position: relative; 
    display: flex; 
    align-items: flex-start; 
    width: 78%;
    background: rgba(255, 255, 255, 0.079);
    padding: 32px 24px;
    font-size: 14px;
    color: white;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    z-index: 1;
}

.contacto .partes .contactoinfo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(145deg, transparent 35%, #4FACF7, #40c9ff);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
}

.contacto .partes .contactoinfo h3 {
    color: #707070;
    font-size: 20px;
    font-weight: 400;
    margin-top: 10%;
    margin-left: 50px;
}

.contacto .partes .contactoinfo .datos .btnwpp {
    margin-top: 20%;
    margin-left: 20%;
    background: aqua;
    color: white;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 900;
    border-radius: 0.9em;
    border: none;
    font-family: "PT Sans Nflecha", sans-serif;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.contacto .partes .contactoinfo .datos .btnwpp .icon {
    background: white;
    color: #212121;
    margin-left: 1em;
    position: absolute;
    font-family: "PT Sans Nflecha", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #4FACF7;
    right: 0.3em;
    transition: all 0.3s;
}

.contacto .partes .contactoinfo .datos .btnwpp .icon #redes2Btn {
    position: relative;
    left: 10px;
}

.contacto .partes .contactoinfo .datos .btnwpp:hover .icon {
    width: calc(100% - 0.6em);
}

.contacto .partes .contactoinfo .datos .btnwpp .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: aqua;
}

.contacto .partes .contactoinfo .datos .btnwpp:hover .icon svg {
     transform: translateX(0.1em);
}

.contacto .partes .contactoinfo .datos .btnwpp:active .icon {
     transform: scale(0.95);
}

.contacto .partes .contactoinfo .contactospan {
    color: aqua;
    font-size: 30px;
    font-weight: 650;
}

.contacto .partes .contactoinfo form {
    flex: 1; 
}

.contacto .partes .contactoinfo .datos {
    flex: 0 1 auto;
    margin-right: 20%;
}

.contacto .partes .contactoinfo form input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.575);
    font-size: 15px;
}

.contacto .partes .contactoinfo form input {
    display: block;
    border: 0;
    width: 70%;
    height: 40px;
    margin-bottom: 15px;
    background: rgba(41, 41, 41, 0);;
    border-bottom: 2px solid rgba(255, 255, 255, 0.575);
    color: #707070;
    padding: 10px;
}

.contacto .partes .contactoinfo form input:hover, textarea:hover{
    border-bottom: 2px solid aqua;
    text-shadow: 0 0 1px aqua, 0 0 2px aqua;
}

.contacto .partes .contactoinfo form input:focus, textarea:focus{
    border-bottom: 2px solid aqua;
    text-shadow: 0 0 1px #707070, 0 0 2px #707070;
    outline: none;
}

.contacto .partes .contactoinfo form textarea {
    resize: none;
    border: 0;
    margin-top: 15px;
    display: block;
    width: 70%;
    height: 160px;
    margin-bottom: 15px;
    background: rgba(41, 41, 41, 0);;
    border-bottom: 2px solid rgba(255, 255, 255, 0.575);
    color: #707070;
    padding: 10px;
}

.contacto .partes .contactoinfo .button {
    position: relative;
    width: 70%;
    border: 0;
    z-index: 1;
    transition: 0.5s;
    min-width: 240px;
    padding: 16px 32px;
    font-size: 14px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px 15px;
    text-transform: uppercase;
    background: #000000; 
    color: white;
}


.contacto .partes .contactoinfo .button::before,
.contacto .partes .contactoinfo .button::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.contacto .partes .contactoinfo .button.--brillo:hover {
    background: aqua;
    box-shadow: 0 0 5px aqua, 0 0 25px aqua;
    color: #000000;
}

.footer {
    justify-content: center;
    text-align: center;
}

.shine {
    font-size: 2em;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    background-image: -webkit-linear-gradient(
      -40deg,
      transparent 0%,
      transparent 40%,
      #fff 50%,
      transparent 60%,
      transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-size: 200px 100%;
    background-size: 200px 100%;
    animation: zezzz 5s infinite;
}

@keyframes zezzz {
    0%, 10% {
      background-position: -200px 0;
    }
    20% {
      background-position: 0 0;
    }
    100% {
      background-position: 200px 0;
    }
}

.footer .redes .social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  border-radius: 5em;
}

.footer .redes .social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10%;
  margin: 0 10px;
  background-color: #fff;
  box-shadow: 0px 0px 4px #00000027;
  transition: 0.3s;
}

.footer .redes .social-button:hover {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 6px 3px #00000027;
}

.footer .redes .social-buttons svg {
  transition: 0.3s;
  height: 20px;
}

.footer .redes .github {
  background-color: #333;
}

.footer .redes .github svg {
  width: 25px;
  height: 25px;
  fill: #f2f2f2;
}

.footer .redes .github:hover svg {
  fill: #333;
}

.footer .redes .linkedin {
  background-color: #0077b5;
}

.footer .redes .linkedin svg {
  fill: #f2f2f2;
}

.footer .redes .linkedin:hover svg {
  fill: #0077b5;
}

.footer .redes .instagram {
  background-color: #c13584;
}

.footer .redes .instagram svg {
  fill: #f2f2f2;
}

.footer .redes .instagram:hover svg {
  fill: #c13584;
}

.footer p {
    color: #303030;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

.zoomIn {
    animation-name: zoomIn;
}


@media (min-width: 1600px) {
    .slide-content {
        max-width: 1400px;
        gap: 6rem;
    }
    
    .text-section h2 {
        font-size: 3rem;
    }
    
    .text-section p {
        font-size: 1.2rem;
    }
    
    .side-image {
        max-height: 500px;
    }
}

@media (max-width: 1360px) {
    .js-slick-carousel .slick-arrow {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .slide-content {
        gap: 2rem;
        padding: 0 30px;
    }
    
    .text-section h2 {
        font-size: 2.2rem;
    }
    
    .text-section p {
        font-size: 1rem;
    }
    
    .side-image {
        max-height: 350px;
    }
}
        
@media (max-width: 1044px) {
    .contacto .partes .contactoinfo {
        flex-direction: column;
        align-items: center;
        margin-left: 10px;
        width: 90%;
    }

    .contacto .partes .contactoinfo form {
        margin-top: 7%;
        flex-direction: column;
        align-items: center;
    }

    .contacto .partes .contactoinfo .datos {
        margin-right: 5%;
    }

    .contacto .partes .contactoinfo form input,
    .contacto .partes .contactoinfo form textarea {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .info .partes .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 50px 20px;
    }
    
    /* OCULTAR DOTS EN TABLETS Y MENORES */
    .js-slick-carousel .slick-dots {
        display: none !important;
    }
    
    .wave-overlay svg {
        position: relative;
    }
    
    .servicios {
        margin-top: -15px; /* Mayor solapamiento */
    }
}

/* Tablets */
@media (max-width: 992px) {
    .js-slick-carousel {
        min-height: 500px;
    }
    
    .js-slide {
        min-height: 500px;
    }
    
    .slide-content {
        flex-direction: row; 
        gap: 2rem;
        padding: 2rem 20px;
        align-items: center;
    }
    
    .text-section {
        flex: 1;
        text-align: left;
        max-width: 50%;
        order: 1;
    }
    
    .text-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .text-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .image-section {
        flex: 1;
        order: 2;
        max-width: 50%;
    }
    
    .side-image {
        max-width: 100%;
        max-height: 280px;
    }
    
    .verMas {
        min-width: 140px;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .js-slick-carousel .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .js-slick-carousel .slick-prev {
        left: 20px;
    }
    
    .js-slick-carousel .slick-next {
        right: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 400px;
        margin: 0 auto;
    }

    .progress-line {
        display: none;
    }

    .step {
        flex-direction: row;
        text-align: left;
        padding: 0;
        background: none;
    }

    .step-number {
        margin-bottom: 0;
        margin-right: 30px;
        flex-shrink: 0;
    }

    .step-content {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        transition: all 0.3s ease;
    }

    .step:hover .step-content {
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(79, 172, 247, 0.2);
    }

    .step-icon {
        display: none;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        max-width: none;
    }
}

@media (max-width: 920px) {
    .contacto .partes .contactoinfo {
        width: 90%;
    }

    #cursor {
        display: none;
    }

    .cursor-circulo {
        display: none;
    }
}

/* Celulares grandes */
@media (max-width: 768px) {
    .js-slick-carousel {
        min-height: 450px;
    }
    
    .js-slide {
        min-height: 450px;
    }
    
    .slide-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 15px;
        justify-content: center;
    }
    
    .text-section {
        text-align: center;
        max-width: 100%;
        order: 2;
    }
    
    .text-section h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .text-section p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .image-section {
        order: 1; 
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .side-image {
        max-height: 300px;
        max-width: 90%;
    }
    
    .verMas {
        min-width: 130px;
        padding: 11px 22px;
        font-size: 12px;
    }
    
    .js-slick-carousel .slick-arrow {
        display: none !important;
    }

    .wave-overlay {
        position: relative;
        bottom: 10px;
    }
    
    .servicios .partes {
        margin-top: 10%; /* Reducir margen superior original */
        padding-top: 30px; /* Añadir padding para compensar */
    }

    .info .partes .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .info .partes .container .caja1 {
        padding: 30px 25px;
        min-height: 400px;
    }
    
    .info .partes .container .caja1 .titulo {
        font-size: 16px;
    }
    
    .info .partes .container .caja1 p.desc {
        font-size: 13px;
        text-align: left;
        max-width: 100%;
    }

    .info .partes .faq-general .faq-contenedor {
        margin: 0 10px;
    }
    
    .info .partes .faq-general .faq-pregunta {
        padding: 20px;
    }
    
    .info .partes .faq-general .faq-pregunta h2 {
        font-size: 16px;
    }
    
    .info .partes .faq-general .faq-respuesta {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .menubar div {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menubar .nombre span { 
        font-size: 20px;
        margin-left: 0px;
    }

    .menubar .bar li {
        margin-top: 20px;
        margin-left: 10px;
        font-size: 12px;
        margin-right: 0;
    }

    #cursor {
        display: none;
    }

    .cursor-circulo {
        display: none;
    }

    .servicios .nombre {
        font-size: 25px;
    }

    .info .nombre {
        font-size: 25px;
    }

    .contacto .nombre {
        font-size: 25px;
    }
    

    .servicios .partes {
        margin-left: 10%;
        margin-right: 10%;
    }

    .servicios .partes .stipos {
        font-size: 20px;
    }

    .servicios .partes .stipos2 {
        font-size: 20px;
    }
    
    .servicios .partes .cajaservicios {
        flex-direction: column;
        align-items: center;
    }

    .servicios .partes .stipos-container, .servicios .partes .stipos2-container {
        min-width: 100%;
    }

    .contedorcaracts {
        display: block;
    }

    .info .partes .nombre {
        margin-left: 10%;
    }

    .info .partes .subnombre .p1 {
        font-size: 15px;
    }

    .info .partes .subnombre .p2 {
        font-size: 15px;
    }

    .info .partes .faq-general .faq-pregunta {
        font-size: 14px;
        padding: 15px;
    }
  
    .info .partes .faq-general .faq-respuesta {
        font-size: 13px;
    }

    .contacto .partes .contactoinfo .contactospan { 
        font-size: 25px;
    }

    .contacto .partes .contactoinfo {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .contacto .partes .contactoinfo form {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* Celulares pequeños */
@media (max-width: 576px) {
    .js-slick-carousel {
        min-height: 420px;
    }
    
    .js-slide {
        min-height: 420px;
    }
    
    .slide-content {
        padding: 1rem 10px;
        gap: 1rem;
    }
    
    .text-section h2 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .text-section p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .side-image {
        max-width: 80%;
        max-height: 200px;
    }
    
    .verMas {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 11px;
    }
}

@media (max-width: 506px) {
    .info .partes .faq-general .faq-pregunta h2 {
        font-size: 3.5vw;
    }

    .info .partes .subnombre h2 {
        font-size: 15px;
    }

    .info .partes .subnombre .p1 {
        font-size: 10px;
    }

    .info .partes .subnombre .p2 {
        font-size: 10px;
    }
}

/* Celulares muy pequeños */
@media (max-width: 480px) {
    .js-slick-carousel {
        min-height: 400px;
    }
    
    .js-slide {
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0.8rem 8px;
        gap: 0.8rem;
    }
    
    .text-section h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .text-section p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .side-image {
        max-width: 85%;
        max-height: 180px;
    }
    
    .verMas {
        min-width: 110px;
        padding: 9px 18px;
        font-size: 11px;
    }

    .nombre {
        font-size: clamp(20px, 10vw, 36px);
    }

    .info .partes .faq-general .faq-contenedor {
        max-width: 90%;
    }

    .steps-grid {
        gap: 30px;
    }

    .step-content {
        padding: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .info .partes .container {
        padding: 30px 10px;
    }
    
    .info .partes .container .caja1 {
        padding: 25px 20px;
        min-height: 350px;
    }
    
    .info .partes .container .caja1 img,
    .info .partes .container .caja1 svg {
        width: 60px;
        height: 60px;
    }
    
    .info .partes .container .caja1 .titulo {
        font-size: 15px;
    }
    
    .info .partes .container .caja1 p.desc {
        font-size: 12px;
    }
    
    .info .partes .container .caja1 .button {
        padding: 12px 24px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .menubar .bar li {
        font-size: 9px;
    }
    .menubar h1 {
        font-size: 7px;
    }
    
    .info .partes .container .caja1 .button-container {
        width: 90%;
        min-width: 140px;
    }

    .info .partes .container .caja1 .button {
        padding: 16px 52px; 
    }
}

@media (max-width: 310px) {
    .menubar h1 {
        font-size: 7px;
    }
}

@media (max-width: 294px) {
    .menubar .bar li {
        font-size: 8px;
    }

    .info .partes .container .caja1 .button {
        padding: 16px 32px; 
    }
}

/* Paisaje en pantallas pequeñas */
@media (max-height: 500px) and (orientation: landscape) {
    .js-slick-carousel {
        min-height: 100vh;
    }
    
    .js-slide {
        min-height: 100vh;
    }
    
    .slide-content {
        flex-direction: row;
        gap: 2rem;
        padding: 1rem 20px;
        align-items: center;
    }
    
    .text-section {
        flex: 1;
        order: 1;
        text-align: left;
        max-width: 60%;
    }
    
    .text-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .text-section p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .image-section {
        flex: 1;
        order: 2;
        max-width: 40%;
    }
    
    .side-image {
        max-width: 100%;
        max-height: 180px;
    }
    
    .verMas {
        min-width: 100px;
        padding: 8px 16px;
        font-size: 10px;
    }
}