@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --color-principal: #0D8BB9;
  --color-secundario: #3399CC; 
  --color-hover: #1976D2; 
  --color-fondo: #000000; 
  --color-texto: #FFFFFF; 

  /*Accesibilidad*/

  --color-principal: #17b6eb; 
  --color-secundario: #00fff2;
  --color-resaltado: #FFD700; 
  --color-banner: #00ff08; 
  --color-opcional: #c8ff00; 
  --color-letra: #0400ff;
  --color-border: #09ff00;
  --color-botton: #ff00ea;

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
}




/* Marquesina ticker */
.marquesina {
    background-color: #0D8BB9;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    letter-spacing: 2px;
  }

/* Estilos para el botón hamburguesa */
.hamburger {
    display: none; /* Oculto en pantallas grandes */
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
 
  .ticker {
    display: inline-block;
    padding: 10px;
    animation: ticker-scroll 30s linear infinite;
    font-size: 14px;
  }
 
  .contact-button{
    background-color: #0D8BB9;
    padding: 10px;
}

   
  @keyframes ticker-scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
 
  /* Navbar */
  .nav-bar {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: relative;
  }
 
  .logo-img {
    width: 7%;
    margin-right: 15px;
  }
 
  .logo {
    font-family: 'Lusitana', serif;
    font-size: 28px;
    color: white;
  }
 
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
  }
 
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-family: 'Jomhuria', cursive;
    font-size: 2em;
    transition: color 0.3s;
  }
 
  
  .carrito {
    font-size: 1em;
    color: white;
    cursor: pointer;
  }
 

/*Banner estilos*/
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    position: relative;
    overflow: hidden; /* Para ocultar el desbordamiento del romboide */
   
}

.banner-content {
    flex: 1;
    color: #FFFFFF;
}

.banner-content h1 {
    font-family: 'Jomhuria', cursive;
    font-size: 7em;
    font-weight: 100;
    margin-bottom: -20px;
}


.banner-content p {
    font-family: 'Lusitana', serif;
    font-size: 2em;
    letter-spacing: 30px;
    text-align: end;

}

.banner-image {
    flex: 1;
    text-align: right;
}

.banner-image img {
    width: 400px;
    height: 500px;
}

/* Franja Azul */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%; /* Ajusta para que el romboide comience fuera de la pantalla */
    width:180%; /* Ajusta para que el romboide cubra todo el banner */
    height: 100%;
    background-color: #0D8BB9;
    transform: skew(-82deg);
    z-index: -1;
}

/* Estilos para los controles de accesibilidad */
.accessibility-controls {
  position: fixed;
  top: 450px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.accessibility-controls button {
  background-color: #17b6eb; /* Verde */
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.accessibility-controls button:hover {
  background-color: #00fff2;
}

/* Estilos para el modo de alto contraste y daltonismo */
body.high-contrast {
  background-color: #ffffff; /* Gris oscuro */
  color: #ffd900; /* Gris claro */
}

body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3 {
  color: #00ff08; /* Azul claro */
}
body.high-contrast .seccion-quienes-somos {
  background-color: rgba(0, 0, 0, 0.49);
}

body.high-contrast .ultimo-moda{
  background-color: rgba(0, 0, 0, 0.49);
}

body.high-contrast a {
  color: #ffd900; /* Verde claro */
}

body.high-contrast button,
body.high-contrast .boton,
body.high-contrast .card button {
  background-color: #c8ff00; /* Azul */
  color: #0400ff;
  border: 1px solid #09ff00;
}

body.high-contrast button:hover,
body.high-contrast .boton:hover,
body.high-contrast .card button:hover {
  background-color: #ff00ea;
}

body.high-contrast .nav-bar,
body.high-contrast .modal-carrito,
body.high-contrast .contactanos-derecha form,
body.high-contrast footer {
  background-color: #137013; /* Gris azulado oscuro */
}

body.high-contrast .banner::before {
  background-color: #137013; /* Azul más intenso */
}

body.high-contrast .carrito {
  color: #00f7ff; /* Verde claro */
}

body.high-contrast .card {
  background-color: rgba(0, 255, 64, 0.7); /* Gris azulado oscuro con transparencia */
}
/*modal carrito*/
/* Estilos del Carrito */
.modal-carrito {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: white;
    color: #333;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(255, 0, 0, 0.1);
    overflow-y: auto;
    font-size: 11px;
  }
  
  .btn-eliminar {
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    padding: 5px;
  }
  
  .btn-eliminar:hover {
    color: #ff0000;
  }
  .contenido-carrito {
    padding: 20px;
  }
  
  .close-btn {
    font-size: 24px;
    cursor: pointer;
    float: right;
  }
  
  .item-carrito {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .info-producto {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 50%;
  }
  
  .info-producto img {
    border-radius: 4px;
  }
  .cantidad-producto {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.cantidad-producto button {
  width: 30px;
  height: 30px;
  background: #0D8BB9;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.cantidad-producto button:hover {
  background: #0a7ba3;
}

.cantidad-producto input {
  width: 50px;
  height: 30px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
  .controles-cantidad {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .controles-cantidad button {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .controles-cantidad button:hover {
    background: #ddd;
  }
  
  .btn-eliminar {
    color: #ff5252;
    margin-left: 10px;
  }
  
  #carrito-resumen {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .btn-finalizar {
    width: 100%;
    padding: 10px;
    background: #0D8BB9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .btn-finalizar:hover {
    background: #0a7ba3;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  /* Notificación */
  .notificacion {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0D8BB9;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }
  
  .notificacion.mostrar {
    opacity: 1;
  }
  /*Ojo detalle producto*/
  


.seccion-quienes-somos {
    background-color: #000000;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    width: 100%;
    height: auto; 
    border-bottom: 1px solid #FFFFFF;
}

.contenido-quienes-somos {
    display: flex;
    text-align: center;
    width: 50%;
    background-image: url('/Assets/images/fondo-metal.png');
    background-color: rgba(0, 0, 0, 0.836);
    padding: 20px;
    box-sizing: border-box;
    background-size: 60% auto; 
    background-repeat: no-repeat; 
    background-position: center; 
    height: 590px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
 
}

.contenido-quienes-somos h2 {
    font-family: 'Bungee Inline', cursive;
    font-weight: normal;
    font-size: 2em;
    margin-bottom: 20px;
}


.contenido-quienes-somos p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Instrument Sans", sans-serif;
    
}

.boton-ver-mas {
    width: 90%;
    height: 60px;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius:5px;
}

.boton-ver-mas:hover {
    transform: scale(1.05);
}

.imagen-quienes-somos {
  
    text-align: center;
}

.imagen-quienes-somos img {
    width: 400px;
    height: 630px;
}
/* ESTILOS PARA EL ULTIMO MODA*/
.ultimo-moda {
    background-color: #000000; /* Color de fondo del banner */
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.contenido-ultimo-moda {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    font-family: 'Buenard'; /* Asegúrate de que esta fuente esté disponible */
    font-family: 'Bungee Inline', cursive;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.paragraph {
    font-family:system-ui;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.image-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.image-box:hover {
  transform: scale(1.05); /* Hace que la tarjeta se amplíe ligeramente */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Sombra suave para dar un efecto de profundidad */
}

/* Fondo oscuro con opacidad para resaltar el texto */
.image-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fondo oscuro con opacidad */
  z-index: 0;
  transition: background 0.3s ease;
}

.image-box {
    position: relative;
    width: 250px; /* Ajusta el ancho según necesites */
    height: 300px; /* Ajusta la altura según necesites */
    overflow: hidden;
}
/* Efecto de "hover" en el fondo oscuro */
.image-box:hover::before {
  background: rgba(0, 0, 0, 0.7); /* Oscurece el fondo al hacer hover */
}
.box-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Buenard';
  color: #fff;
  font-size: 1.5em;
  z-index: 1;
  opacity: 1; /* Inicialmente está oculto */
  transition: opacity 0.3s ease; /* Transición para mostrar el texto */
}

/* Mostrar el título al hacer hover */
.image-box:hover .box-title {
  opacity: 4; /* Hace visible el título al hacer hover */
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.53);
}

.box-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Buenard';
    color: #fff;
    font-size: 1.5em;
    z-index: 1;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.boton{
    width: 30%;
}





/* estilos del card */

.nuestra-comunidad {
    text-align: center;
    padding: 60px 30px;
    margin-bottom: 30px;
    border-bottom: solid 2px rgb(255, 255, 255);
}

.nuestra-comunidad h2 {
    font-family: 'Bungee Inline', cursive;
    font-size: 2em;
    margin-bottom: 30px;
}

.cards-comunidad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 80%;
    margin-left: 94px;
}

/* Efecto hover en las cards */
.card {
  position: relative;
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgb(0 0 0 / 60%);
  transition: opacity 0.3s ease; /* Transición suave para la opacidad */
}

.card:hover {
  opacity: 0.9; /* Cambia la opacidad de la card al pasar el mouse */
}


.card h3 {
    font-family: 'Bungee Inline', cursive;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.card p {
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Estilos del botón "QUIERO VER MÁS" */
.card button {
  font-size: 1em;
  background-color: #FFFFFF; /* Color de fondo inicial */
  color: #000000; /* Color del texto inicial */
  border: none;
  padding: 10px 20px;
  border-radius: 5px; /* Bordes redondeados */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Transición suave para color de fondo y texto */
}

img {
  filter: contrast(120%);
}

body.high-contrast img {
  filter: contrast(150%);
}

.banner::before {
  background-color: #1E88E5;
}
/* Estilo cuando se pasa el mouse (hover) */
.card button:hover {
  background-color: #000000; /* Fondo negro en el hover */
  color: #FFFFFF; /* Texto blanco en el hover */
}

/* Fondos de las tarjetas (reemplaza con tus imágenes) */
.card1 { background-image: url('/Assets/images/model1.png'); }
.card2 { background-image: url('/Assets/images/model2.png'); }
.card3 { background-image: url('/Assets/images/model3.png'); }
.card4 { background-image: url('/Assets/images/model4.png'); }
.card5 { background-image: url('/Assets/images/model5.png'); }
.card6 { background-image: url('/Assets/images/model6.png'); }

/* estilos contactanos formulario */

.contactanos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;

    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.49);
}

.contactanos-izquierda {
    display: flex;
    text-align: center;
    width: 40%;
    background-image: url('/Assets/images/imagen-robot-fondo.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.49);
    height: 650px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.contactanos-izquierda h2 {
    font-family: 'Bungee Inline', cursive;
    font-size: 2em;
    margin-bottom: 30px;
}

.contactanos-izquierda p {
    line-height: 1.6;
}

.contactanos-derecha {
    width: 40%;
}

/* Estilo para el contenedor de los mensajes de error */
.contactanos-derecha .mensaje {
  font-size: 14px;
  color: #075F7C; /* azul para mensajes de error */
  margin-top: 5px;
  padding-left: 10px;
}

/* Estilo para el contenedor de los mensajes de éxito */
.contactanos-derecha .mensaje-exito {
  font-size: 14px;
  color: #4F9DD4; /* Azulpara mensajes de éxito */
  margin-top: 5px;
  padding-left: 10px;
}

/* Estilos previos para el formulario y demás elementos siguen igual */
.contactanos-derecha form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 10px;
  float: right;
  transform: translateY(70px);
  border: 2px  solid #74a3c5;
  box-shadow: 0px 4px 15px rgba(79, 157, 212, 0.3);
}

.contactanos-derecha input, .contactanos-derecha textarea {
  transition: background-color 0.3s ease, border-color 0.3s ease;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #4F9DD4;
  border-radius: 5px;
  background-color: #ffffff;
  color: #333;
  font-size: 16px;
}

.contactanos-derecha input:focus, .contactanos-derecha textarea:focus {
  background-color: #f7faff;
  border-color: #0D8BB9;
}

.contactanos-derecha button {
  background-color: #0D8BB9;
  color: #FFFFFF;
  border: none;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contactanos-derecha button:hover {
  transform: scale(1.05);
  background-color: #075F7C;
}

.input-animado::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0D8BB9;
  transition: width 0.3s ease;
}

.input-animado:focus::after {
  width: 100%;
}

/* creacion de diseños footer*/


footer {
    background-color: #000000;
    border-top: 1px solid #FFFFFF;
    padding: 50px 20px;
    color: #FFFFFF;
    font-family: 'Instrument Sans', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 30px;
    
}
footer .footer-column a {
    color: white; /* Enlaces en color blanco */
    text-decoration: none; /* Eliminar subrayado */
    transition: color 0.3s ease; /* Transición suave (opcional) */
}
.footer-column {
    width: 30%;
}

.footer-column h3 {
    text-align: center;
    font-family: 'Bungee Inline', cursive;
    margin-bottom: 20px;
}

.footer-column p {
    text-align: justify;
    line-height: 1.6;
}


.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 25px;
}

.fab{
    color: white;
    font-size: 45px;
}
.social-icons img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
}
.style{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-logo{
    width:50%;
}
.logo-footer {
    text-align: center;
}

/* Estilos para el menú en mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Oculta el menú en mobile */
        flex-direction: column;
        background-color: #000;
        position: static;
        top: 60px; /* Ajusta según la altura de tu barra de navegación */
        left: 0;
        width: 100%;
        text-align: center;
        flex-grow: 1; /* Permite que el menú crezca para ocupar el espacio disponible */
        z-index: 1000; 
    }


    .nav-links.active {
        display: flex; /* Muestra el menú cuando está activo */
    }
    .nav-links li {
        margin: 15px 0;
    }
    .hamburger {
        display: block; /* Muestra el botón hamburguesa en mobile */
    }
    .logo-img {
        width: 15%; /* Ajusta el tamaño del logo para mobile */
    }
    .nav-bar {
        flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
    }
    
    /* seccion-revoluciona*/
    .seccion-quienes-somos {
        flex-direction: column;
        padding: 20px;
    }

    .contenido-quienes-somos {
        width: 100%;
        height: auto;
        padding: 15px;
        background-size: 80% auto;
    }

    .contenido-quienes-somos h2 {
        font-size: 1.8em;
    }

    .contenido-quienes-somos p {
        font-size: 0.9em;
    }

    .imagen-quienes-somos img {
        width: 90%;
        height: auto;
    }

    /* SECCION QUIENES SOMOS */
    .ultimo-moda {
        padding: 30px 10px;
    }

    .title {
        font-size: 2em;
    }

    .paragraph {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .image-boxes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .image-box {
        width: 80%;
        height: auto;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .boton {
        width: 90%;
    }

    /*SECCION NUESTRA COMUNIDAD */
    .nuestra-comunidad {
        padding: 40px 15px;
    }

    .nuestra-comunidad h2 {
        font-size: 1.8em;
    }

    .cards-comunidad {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 1.3em;
    }

    .card p {
        font-size: 0.9em;
    }

    /* SECCION CONTACTANOS */
    .contactanos {
        flex-direction: column;
        padding: 30px 15px;
    }

    .contactanos-izquierda {
        width: 100%;
        height: auto;
        padding: 20px;
        margin-bottom: 30px;
    }

    .contactanos-izquierda h2 {
        font-size: 1.8em;
    }

    .contactanos-derecha {
        width: 100%;
    }

    .contactanos-derecha form {
        padding: 30px;
        transform: translateY(0);
    }
    /* SECCION FOOTER */
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 90%;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        font-size: 1.3em;
    }

    .footer-column p {
        font-size: 0.9em;
        text-align: center;
    }

    .social-icons {
        gap: 15px;
    }

    .fab {
        font-size: 30px;
    }

    .image-logo {
        width: 80%;
    }
}


/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        padding: 20px;
    }

    .banner-content h1 {
        font-size: 60px;
        margin-bottom: 0;
        text-align: center;
    }

    .banner-content p {
        font-size: 18px;
        letter-spacing: 10px;
        text-align: center;
    }

    .banner-image {
        text-align: center;
        margin-top: 20px;
    }

    .banner-image img {
        width: 80%;
        height: auto;
    }

    .banner::before {
        left: -50%;
        width: 200%;
        transform: skew(-70deg);
    }
}

/* Tablet Styles (min-width: 769px) and (max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .banner {
        padding: 30px;
    }

    .banner-content h1 {
        font-size: 90px;
    }

    .banner-content p {
        font-size: 20px;
        letter-spacing: 20px;
    }

    .banner-image img {
        width: 300px;
        height: 400px;
    }

    .banner::before {
        left: -30%;
        width: 190%;
    }
}
