:root {
    --duracion: 4s;
    --transicion: 1s;
    --azul: #219BEF;
    --negroHover: #333333;
}

:root {
    --azul: #219BEF;
    --azul-oscuro: #176BAA;
    --azul-claro: #61B7F1;
    --azul-hover: #1a7cc0;
    --azul-extra-claro: #EBF6FF;
    --negro: #000000;
    --gris-claro: #f5f5f5;
    --gris-oscuro: #333333;
    --blanco: #ffffff;
    --sombra-suave: 0 2px 10px rgba(0, 0, 0, 0.1);
    --sombra-media: 0 4px 12px rgba(0, 0, 0, 0.15);
    --transicion: all 0.3s ease;
}

.login-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.submenu-login-btn, .submenu-registration-btn {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transicion);
}

.submenu-login-btn {
    background-color: transparent;
    border: 2px solid var(--azul);
    color: var(--azul);
}

.submenu-login-btn:hover {
    background-color: var(--azul-extra-claro);
    transform: translateY(-2px);
}

.submenu-registration-btn {
    background-color: var(--azul);
    border: none;
    color: white;
}

.submenu-registration-btn:hover {
    background-color: var(--azul-hover);
    transform: translateY(-2px);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.user-name {
    font-weight: 500;
    color: var(--azul);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logout-btn {
    padding: 8px 16px;
    background-color: var(--azul);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transicion);
}

.logout-btn:hover {
    background-color: var(--azul-oscuro);
    transform: translateY(-2px);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--azul);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0.9;
}

.carousel-button:hover {
    background: #176BAA;
    opacity: 1;
}

.carousel-container2 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide2 {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.carousel-slide2 img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev2 {
    left: 20px;
}

.next2 {
    right: 20px;
}

.carousel-dots2 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots2 .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots2 .dot.active {
    background: var(--azul);
}

.prev {
    left: 20px;
    border-radius: 0 8px 8px 0;
}

.next {
    right: 20px;
    border-radius: 8px 0 0 8px;
}



.projects-showcase {
    width: 100%;
    background: #000;
    color: var(--blanco);
}

.showcase-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.diagonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.9) 50%);
    z-index: 1;
}

.diagonal-overlay.reverse {
    background: linear-gradient(-45deg, transparent 50%, rgba(0, 0, 0, 0.9) 50%);
}

.diagonal-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 255) 50%);
    z-index: 1;
}

.showcase-content {
    position: relative;
    width: 45%;
    z-index: 2;
    padding: 0 40px;
}

.showcase-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.showcase-content2 {
    position: relative;
    width: 45%;
    z-index: 2;
    padding: 0 40px;
}

.showcase-content2 h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-content2 p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--negro);
}

.showcase-media {
    position: relative;
    width: 45%;
    z-index: 2;
}

.showcase-media2 {
    margin-right: -130px;
    width: 45%;
    z-index: 2;
}

.feature-video {
    margin-top: -10%;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, var(--azul), var(--azul-oscuro));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.showcase-section:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .showcase-section {
        flex-direction: column !important;
        text-align: center;
        padding: 60px 20px;
    }

    .showcase-content,
    .showcase-media {
        width: 100%;
        padding: 20px 0;
    }

    .showcase-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .showcase-content h2 {
        font-size: 2.5rem;
    }
}


.login-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.submenu-login-btn, .submenu-registration-btn {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transicion);
}

.submenu-login-btn {
    background-color: transparent;
    border: 2px solid var(--azul);
    color: var(--azul);
}

.submenu-login-btn:hover {
    background-color: var(--azul-extra-claro);
    transform: translateY(-2px);
}

.submenu-registration-btn {
    background-color: var(--azul);
    border: none;
    color: white;
}

.submenu-registration-btn:hover {
    background-color: var(--azul-hover);
    transform: translateY(-2px);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.user-name {
    font-weight: 500;
    color: var(--azul);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logout-btn {
    padding: 8px 16px;
    background-color: var(--azul);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transicion);
}

.logout-btn:hover {
    background-color: var(--azul-oscuro);
    transform: translateY(-2px);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--azul);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0.9;
}

.carousel-button:hover {
    background: #176BAA;
    opacity: 1;
}

.carousel-container2 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide2 {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.carousel-slide2 img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev2 {
    left: 20px;
}

.next2 {
    right: 20px;
}

.carousel-dots2 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots2 .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots2 .dot.active {
    background: var(--azul);
}

.prev {
    left: 20px;
    border-radius: 0 8px 8px 0;
}

.next {
    right: 20px;
    border-radius: 8px 0 0 8px;
}

.projects-showcase {
    width: 100%;
    background: #000;
    color: var(--blanco);
}

.showcase-section {
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.showcase-content {
    width: 50%;
    padding-right: 40px;
}

.showcase-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.showcase-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, var(--azul), var(--azul-oscuro));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.showcase-media {
    width: 50%;
    position: relative;
}

.feature-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--azul-claro);
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.showcase-carousel {
    width: 100%;
    padding: 40px 0;
}

.showcase-carousel .carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.showcase-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.showcase-carousel .carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

.showcase-carousel .carousel-slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.showcase-carousel .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.showcase-carousel .carousel-btn.prev {
    left: 20px;
}

.showcase-carousel .carousel-btn.next {
    right: 20px;
}

.showcase-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.showcase-carousel .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.showcase-carousel .dot.active {
    background: var(--azul);
}

.specs-section {
    position: relative;
    overflow: hidden;
    padding: 100px 40px;
    background: #0A192F; 
}

.specs-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; 
    height: 500px;
    background: radial-gradient(circle at center,
        #8E2DE2 0%,
        #4A00E0 30%,
        #FF8008 60%,
        #219BEF 100%
    );
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(60px);
    z-index: 1;
}

.showcase-specs {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.showcase-specs h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.spec-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.spec-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.spec-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.spec-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.spec-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .specs-section {
        padding: 60px 20px;
    }

    .specs-section::before {
        width: 300px;
        height: 300px;
    }

    .showcase-specs h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .showcase-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .showcase-content, .showcase-media {
        width: 100%;
        padding: 0;
    }

    .showcase-content {
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

.VEX-APP{
    background-color: aliceblue;
    height: 500px;
}

.submenu-registration-btn{
    margin-left: 10px;
    background-color: #000000;
}

.submenu-login-btn, .submenu-registration-btn, .logout-btn {
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 155, 239, 0.2);
}
  
.submenu-login-btn, .logout-btn{
    background-color: var(--azul);
}

.submenu-login-btn::before, .submenu-registration-btn::before, .logout-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
  
.submenu-login-btn:hover, .submenu-registration-btn:hover, .logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 155, 239, 0.3);
    background: linear-gradient(45deg, var(--azul), #1a7ac0);
}
  
.submenu-login-btn:hover::before, .submenu-registration-btn:hover::before, .logout-btn:hover::before {
    width: 300px;
    height: 300px;
}
  
.submenu-login-btn:active, .submenu-registration-btn:active, .logout-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(33, 155, 239, 0.2);
}
  
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 155, 239, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(33, 155, 239, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 155, 239, 0);
    }
}
  
.submenu-login-btn, .submenu-registration-btn, .logout-btn {
    animation: pulse 1s infinite;
}
  
.fixed-button {
    position: fixed;
    right: 0px;  
    top: 50%; 
    transform: translateY(-50%); 
    background-color: #007bff;
    color: white; 
    padding: 10px;
    border-radius: 10px 0 0 10px; 
    text-decoration: none; 
    font-weight: bold;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; 
    font-size: 14px;
    width: 40px; 
}

.container2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.item {
    width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    background: var(--azul);
    height: 550px;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.item:hover {
    transform: translateY(-8px);
}

.imagen-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease-in-out, opacity 0.5s ease-in-out;
}

.imagen1 {
    animation: cascadeFade var(--duracion) infinite;
    z-index: 2;
}

.imagen2 {
    z-index: 1;
}

@keyframes cascadeFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.item p {
    margin: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--azul);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    margin: 0.5rem 0 1rem;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.button:hover {
    background-color: #2563eb;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto; 
    width: 100%;
    height: 100%;
    line-height: 1.5;
    min-height: 100vh;
}

.encabezado-wrapper {
    width: 100%;
    gap: 800px;
    height: 130px;
    overflow: hidden;
    background: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.banner {
    width: 100%;
    height: 130px;
    background: var(--azul);
    overflow: hidden;
    position: relative;
}

.banner-content {
    position: absolute;
    display: flex;
    animation: scroll 10s linear infinite;
    white-space: nowrap;
}

.banner-item {
    display: inline-flex;
    flex-direction: column;
    padding: 20px 40px;
    min-width: 100%;
}

.banner-item h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #ffffff;
}

.banner-item p {
    color: #000000;
    font-size: 1em;
    margin-bottom: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.banner-content > * {
    flex-shrink: 0;
}  

header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    transition: background-color 0.5s ease, opacity 0.5s ease;
}

.nav-list a, .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 10px;
    display: block;
    position: relative; 
}

.nav-list a::after, .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--azul);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-list a:hover::after, .nav-links a:hover::after {
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid #000;
    border-radius: 4px;
    padding: 0.5rem;
    margin-left: 1050px;
}
  
.compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -15px;
    height: 40px;
}

.compraVex h3 {
    padding: 20px;
}

.search-bar input {
    background: none;
    border: none;
    color: var(--black);
    padding: 0.25rem 0.5rem;
    outline: none;
}
  
.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.5rem;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.button {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.button::before {
    font-size: 12px;
    margin-right: 5px;
}  

.container {
    min-height: 100vh;
    background: linear-gradient(to bottom, #44337a, #1a202c);
    color: white;
}
  
.notice-banner {
    background-color: #44337a;
    padding: 1rem;
    text-align: center;
}
  
.notice-banner p {
    max-width: 1024px;
    margin: 0 auto;
    font-size: 0.875rem;
}
  
.main-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 4rem 1rem;
}
  
h2 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 4rem;
}
  
.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 6rem;
}
  
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
  
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.contact-item svg {
    margin-bottom: 1rem;
}
  
.contact-item .label {
    font-weight: 300;
    margin-bottom: 0.5rem;
}
  
.contact-item .value {
    font-size: 1.125rem;
}
  
.contact-item .description {
    font-size: 0.875rem;
    opacity: 0.8;
}
  
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
  
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
  
.footer-column h3 {
    font-weight: 500;
    margin-bottom: 1rem;
}
  
.footer-column ul {
    list-style: none;
}
  
.footer-column li {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
  
.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 4rem;
}
  
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
  
.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}
  
.footer-links a:hover {
    text-decoration: underline;
}
  
.region-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 1rem 0;
}
  
.region-selector button {
    background: none;
    border: none;
    color: white;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 0.875rem;
}
  
.copyright {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 2rem;
}


.nav-container {
    display: flex;
    gap: 20%;
    align-items: center;
}

.logo {
    width: 150px;
    height: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    margin-left: 15px;
}

.nav-list li {
    margin-right: 15px;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 20px;
    margin-top: 20px;
}

.nav-links li {
    margin-right: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.encabezado {
    width: 130%;
    margin-left: -220px;
    height: 80px;
    background-color: var(--azul);
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.encabezado h3 {
    margin-bottom: 10px;
}

.encabezado p {
    color: #000000;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.user-name {
    font-weight: 500;
    color: var(--azul);
    display: flex;
    align-items: center;
    gap: 5px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: -15px;
}

.carousel {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 33.333%;
    height: 600px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--azul);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0.9;
}

.carousel-button:hover {
    background: #176BAA;
    opacity: 1;
}

.prev {
    left: 20px;
    border-radius: 0 8px 8px 0;
}

.next {
    right: 20px;
    border-radius: 8px 0 0 8px;
}
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}

.carousel-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    max-width: 500px;
    z-index: 2;
}

.carousel-title {
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-text {
    font-size: 16px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.envios {
    background-color: #000000;
    height: 190px;
    width: 100%;
    margin-top: -10px; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
}

.envios div {
    padding: 20px;
    height: 120px;
    width: 290px;
    background-color: #ffffff;
    margin-left: 80px;
    transition: transform 0.3s ease; 
    border-radius: 5px;
}

.envios div:hover {
    transform: translateY(-10px); 
}

.enviostitulo {
    color: #ffffff;
    margin-left: 70px;
}

.productos {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-left: 180px;
    height: 320px;
    display: flex;
    gap: 70px;
}

.base1 {
    margin-top: 24px;
}

.base2 {
    margin-top: 30px;
}

.base {
    margin-top: 135px;
}

.basegris {
    margin-top: 5px;
}

.hero2 {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-top: 40px;
}

.hero2 img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-content2 {
    position: absolute;
    top: 30%; 
    left: 20%;
    transform: translate(-50%, -50%); 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    width: 80%; 
}

.overlay-title2 {
    color: white;
    font-size: 90px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px; 
}

.overlay-subtitle2 {
    margin-top: 15px;
    color: white;
    font-size: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.comprar {
    background-color: var(--azul); 
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px; 
    text-shadow: none;
    transition: background-color 0.3s ease;
    height: 80px;
    border-radius: 15px;
}

.comprar:hover {
    background-color: #176BAA; 
}

.comprar1 {
    background-color: var(--azul); 
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px; 
    text-shadow: none;
    transition: background-color 0.3s ease;
    height: 60px;
    border-radius: 15px;
}

.comprar1:hover {
    background-color: #176BAA; 
}

.conoce1 {
    height: 60px;
    background-color: #000000; 
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 15px; 
    text-shadow: none;
    transition: background-color 0.3s ease;
    border-radius: 15px;
}

.conoce:hover1 {
    background-color: var(--negroHover);
}

.conoce {
    height: 80px;
    background-color: #000000; 
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 15px; 
    text-shadow: none;
    transition: background-color 0.3s ease;
    border-radius: 15px;
}

.conoce:hover {
    background-color: var(--negroHover);
}

@media screen and (max-width: 1024px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-list, .nav-links {
        flex-direction: column;
        padding: 10px 0;
        align-items: center;
    }

    .nav-list li, .nav-links li {
        margin-bottom: 10px;
    }

    .carousel-content {
        right: 5%;
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .carousel-content {
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
    }

    .carousel-title {
        font-size: 36px;
    }

    .carousel-subtitle {
        font-size: 20px;
    }

    .carousel-text {
        font-size: 14px;
    }

    .productos {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
    }

    .envios {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .envios div {
        width: 90%;
        margin-bottom: 10px;
    }
}


@media screen and (max-device-width: 480px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-list li {
        margin: 0;
    }

    .login-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .submenu a {
        font-size: 2.5vw;
    }

    .submenu-login-btn, .submenu-registration-btn{
        font-size: 2.5vw;
    }

    .banner-item h3{
        font-size: 3vw;
    }

    .banner-item p{
        font-size: 2.5vw;
    }
    
    .banner{
        height: 12%;
    }

    .carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: -15px;
    }

    .carousel {
        display: flex;
        width: 300%;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
        width: 33.333%;
        height: 600px;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--azul);
        color: white;
        width: 40px;
        height: 40px;
        border: none;
        cursor: pointer;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 2;
        opacity: 0.9;
    }

    .carousel-button:hover {
        background: #176BAA;
        opacity: 1;
    }

    .prev {
        left: 20px;
        border-radius: 0 8px 8px 0;
    }

    .next {
        right: 20px;
        border-radius: 8px 0 0 8px;
    }
    .carousel-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .dot.active {
        background: white;
    }

    .carousel-content {
        position: absolute;
        top: 15%;
        right: 5%;
        transform: translateY(-50%);
        text-align: center;
        color: white;
        max-width: 500px;
        z-index: 2;
    }

    .carousel-title {
        font-size: 3vw;
        margin-bottom: 2%;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .carousel-subtitle {
        font-size: 2.5vw;
        margin-bottom: 2%;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .carousel-text {
        font-size: 2vw;
        margin-bottom: 2%;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .carousel-buttons {
        display: flex;
        justify-content: center;
        gap: 2%;
    }

    .comprar1 {
        background-color: var(--azul); 
        color: white;
        border: none;
        padding: 2.5vw 5vw; 
        font-size: 2.5vw;
        font-weight: bold;
        cursor: pointer;
        text-shadow: none;
        transition: background-color 0.3s ease;
        height: auto;
        border-radius: 3vw;
    }

    .conoce1 {
        background-color: #000000; 
        color: white;
        border: none;
        padding: 2.5vw 5vw;
        font-size: 2.5vw;
        font-weight: bold;
        cursor: pointer;

        margin-left: 3vw;
        text-shadow: none;
        transition: background-color 0.3s ease;
        height: auto;
        border-radius: 3vw;
    }

    .compraVex {
        color: white;
        background-color: #000000;
        text-align: center;
        margin-top: -110%;
        height: 40px;
        font-size: 2.5vw;
    }

    .envios {
        background-color: #000000;
        height: 15%;
        width: 100%;
        margin-top: -10px; 
        display: flex;
        justify-content: center; 
        align-items: center; 
        gap: 5%; 
    }

    .envios div {
        padding: 6px;
        height: 81px;
        width: 91px;
        margin-left: 10px;
        background-color: #ffffff;
        transition: transform 0.3s ease; 
        border-radius: 5px;
    }

    .envios div:hover {
        transform: translateY(-10px); 
    }

    .enviostitulo {
        color: #ffffff;
        margin-left: 2.5vw;
    }

    .envios div h3{
        font-size: 2vw;
    }

    .envios div img{
        width: 15px;
    }

    .envios div p{
        font-size: 1.5vw;
    }

    .fixed-button{
        font-size: 2vw;
        height: 15%; 
    }
    .base1 img{
        width: 20px;
        margin-top: 3px;
    }

    .base2 img{
        width: 20px;
        margin-top: -15px;
    }

    .base3 img{
        width: 15px;
        margin-top: 25px;
    }

    .base img{
        width: 15px;
    }

    .base{
        margin-top: 30px;
    }

    .basegris img{
        width: 20px;
        margin-top: 22px;
    }

    .base1 p{
        font-size: 2.5vw;
    }

    .base2 p{
        font-size: 2.5vw;
    }

    .base3 p{
        font-size: 2.5vw;
    }

    .base p{
    font-size: 2.5vw;
    }

    .basegris p{
    font-size: 2.5vw;
    }

    .productos {
        display: flex;
        justify-content: center;
        margin-top: 0px;
        margin-left: -15px;
        height: 5%;
        display: flex;
        gap: 15px;
    }

    .overlay-title2{
        font-size: 5vw;
        margin-top: 25%;
        margin-bottom: 0px;
    }

    .overlay-subtitle2{
        font-size: 3vw;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .comprar{
        font-size: 2.5vw;
        height: 50px;
        width: 100px;
        margin-left: 1%;
    }

    .conoce{
        font-size: 2.5vw;
        height: 50px;
        width: 100px;
        margin-left: 1%;

    }

    .container2{
        gap: 3px;
        height: 200px;
        margin-top: 0px;
    }

    .item {
        width: 120px;
        height: 180px;
        border-radius: 0.75rem;
        box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .item p{
        font-size: 1vw;
    }

    .imagen-container {
        position: relative;
        width: 100%;
        height: 141px;
        overflow: hidden;
    }

    .button{
        font-size: 1vw;
    }

    .imagen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .item:hover {
        transform: translateY(-4px); 
    }

        .showcase-section {
        flex-direction: column; 
        padding: 40px 20px;
        min-height: auto;
        gap: 20px;
    }

    .showcase-content,
    .showcase-content2,
    .showcase-media,
    .showcase-media2 {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .showcase-media2 {
        margin-right: 0;
    }

    .showcase-content h2,
    .showcase-content2 h2 {
        font-size: 6.5vw; 
        text-align: center;
    }

    .showcase-content p,
    .showcase-content2 p {
        font-size: 4.5vw;
        line-height: 1.5;
        text-align: center;
    }

    .showcase-btn {
        font-size: 4.5vw;
        padding: 10px 20px;
        display: block;
        margin: 20px auto 0;
        width: 80%;
        max-width: 300px;
    }

    .feature-video {
        margin-top: 0;
        width: 100%;
        border-radius: 15px;
    }

    .diagonal-overlay,
    .diagonal-overlay.reverse,
    .diagonal-overlay2 {
        display: none; 
    }

    .specs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 20px auto;
        padding: 0 8px;
        max-width: 100%;
    }

    .spec-item {
        padding: 3vw;
        border-radius: 2.5vw;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }

    .spec-item img {
        width: 14vw;
        height: 14vw;
        margin-bottom: 1vw;
    }

    .spec-item h3 {
        font-size: 2.6vw;
        margin-bottom: 0.5vw;
        text-align: center;
    }

    .spec-item p {
        font-size: 2.3vw;
        line-height: 1.3;
        text-align: center;
    }

    .showcase-specs h2 {
        font-size: 5.5vw;
        text-align: center;
        margin-bottom: 1rem;
    }

    .avotex{
        width:200px;
    }

}

@media screen and (min-device-height: 600px) and (max-device-height: 700px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -135%;
    height: 50px;
    }
}

@media screen and (min-device-height: 700px) and (max-device-height: 750px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -140%;
    height: 50px;
    }
}

@media screen and (min-device-height: 850px) and (max-device-height:900px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -115%;
    }
}

@media screen and (min-device-height: 800px) and (max-device-height:825px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -140%;
    }
}

@media screen and (min-device-height: 830px) and (max-device-height:850px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -125%;
    }
}

@media screen and (min-device-height: 850px) and (max-device-height:899px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -13%;
    }
}

@media screen and (min-device-height: 900px) and (max-device-height:920px) and (pointer: coarse) {
    .compraVex {
    color: white;
    background-color: #000000;
    text-align: center;
    margin-top: -115%;
    }
}

@media screen and (max-device-width: 420px) and (pointer: coarse){
    .item {
    width: 100px;
    height: 170px;
    border-radius: 0.75rem;
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    }

    .item p{
        font-size: 1vw;
    }

    .imagen-container {
        position: relative;
        width: 100%;
        height: 141px;
        overflow: hidden;
    }

    .button{
        font-size: 1vw;
    }

    .imagen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .item:hover {
        transform: translateY(-4px); 
    }

}

@media screen and (max-device-width: 365px) and (pointer: coarse){
    .item {
    width: 90px;
    height: 160px;
    border-radius: 0.75rem;
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    }

    .item p{
        font-size: 1vw;
    }

    .imagen-container {
        position: relative;
        width: 100%;
        height: 141px;
        overflow: hidden;
    }

    .button{
        font-size: 1vw;
    }

    .imagen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .item:hover {
        transform: translateY(-4px); 
    }

}


