*{
    box-sizing: border-box;
    color: white;
    margin: 0;
    font-family: sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100vw;
    height: auto;
    align-items: start;
    justify-content: center;
    background-color: black;

}
header {
 width: 100vw;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;

}
.menu {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
  
  
  
   z-index: +5;
}
.menu .registro {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    width: auto;
    height: auto;  
    transition: 0.5s ease;
   
}
.menu .registro span {
    text-decoration: none;
   
    background-color: black;
    border-radius: 10px;
   
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    box-shadow: 1px 1px  #ea00ff, 2px 2px #ffff00, -1px -1px  #00ffff;
    transition: 0.5s ease;
}
.menu .registro span:hover {
    transform: scale(1.05);
    box-shadow: -2px -2px 8px #00ffff, 1px 1px 8px #ea00ff, 2px 2px  8px#ffff00 ;
}
.menu .registro a {
 width: 45px;   
 height: 45px;
 
}

.menu .registro a img {
    width: 80%;
    height: auto;
    box-shadow: 0px 0px 3px #ea00ff, 0px 0px 6px #ea00ff, 0px 0px 9px  #ea00ff;
    border-radius: 50%;
    transition: 0.5s ease;
}
.menu .registro a img:hover {
    transform: scale(1.05);
}
.menu  ul {
    width: 100vw;
    height: 35px;
    display: flex;
    justify-content: end;
    align-items: end;
    list-style: none;
    margin-right: 15px;
   
    
}
main {
    z-index: +1;
}
.menu ul li {
  margin-left: 20px;
}
.menu ul li a {
    text-decoration: none;
   
    background-color: black;
    border-radius: 10px;
   
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    box-shadow: 1px 1px  #ea00ff, 2px 2px #ffff00, -1px -1px  #00ffff;
    transition: 0.5s ease;
   
}
.menu ul li a:hover {
    transform: scale(1.05);
    box-shadow: -2px -2px 8px #00ffff, 1px 1px 8px #ea00ff, 2px 2px  8px#ffff00 ;
}

.menu ul li a img {
    width: 25px;
    height: 25px;
 
}
.fondo {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    
}
.fondo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
   
}
.fondo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
   
}
.portada {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: +1;
    margin-top: 70px;
    position: relative;
   
   
}
.portada img {
    width: 30%;
    height: auto;
 
}
@font-face {
    font-family: "BookmanOldStyle";
    src: url("font/bookmanoldstyle.ttf") format("truetype");
}
.portada h1 {
    font-family: "BookmanOldStyle", serif;
    text-transform: uppercase;
    mix-blend-mode:lighten;
}
h1 {
    margin: 20px;
}
.productos {
    display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 10px; /* Espacio entre los elementos */
    position: relative;
   width: 95vw;
   max-width: 95vw ;
   height: auto;
   padding: 20px;
   transition: 0.5s ease;

  
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 100vw;
    height: auto;
    z-index: +1;
}
.productos .articulo {
 position: relative;
 display: flex;
 border-radius: 15px;
 width: 250px;
 height: 300px;
 overflow: hidden;
 z-index: +2;
 box-shadow: 2px 2px  #00ffff, 4px 4px  #ea00ff, 6px 6px #ffff00 ;
 margin: 50px;
 transition: all 0.4s ease; /* Suaviza la transformación */

}

.productos .articulo:hover {
    border-radius: 25px;
   
    box-shadow: 2px 2px 8px #00ffff, 2px 2px 16px #ea00ff, 6px 6px  27px#ffff00 ;
    
   }
#articulo1 {
  transform: rotate(3deg);
}
#articulo2 {
    transform: rotate(-3deg);
  }

  #articulo3 {
    transform: rotate(3deg);
  }

  #articulo4 {
    transform: rotate(-5deg);
  }

  #articulo5 {
    transform: rotate(5deg);
  }

  #articulo6 {
    transform: rotate(-4deg);
  }
  
.productos .articulo:hover {
    animation: oscilacion 1.5s infinite ease-in-out;
}
@keyframes oscilacion {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
    75% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.productos .articulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productos .articulo span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    border-radius: 15px;
    width: 90%;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-weight: bold;
    border-top: 1px solid #ffff00;
    border-left: 1px solid #ea00ff;
    border-bottom:1px solid #00ffff;
    border-right:1px solid black;
}
.productos .articulo p {
    position: absolute;
    top: 40px;
    right: -80px;
    transform: rotate(45deg);
    background-color: black;
    
    width: 90%;
    text-align: center;
    padding: 15px;
    width: 100%;
    height: 10%;
    text-transform: capitalize;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    
}
.bodylogin {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
.login-container {
    min-width: 50%;
    height: 50%;
    z-index: +4;
    background-color: #ff2d76;
    border-radius: 15px;
    border: 1px solid white;
    box-shadow: 0px 0px 10px #ff2d76,0px 0px 15px #ff2d76 ;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

}
.login2 {
    min-width: 50%;
    height: 50%;
    z-index: +3;
   
    border-radius: 15px;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: 0.5s ease;

}
#login2 {
    background-color: #00ffff;
}
#login3 {
    background-color: #ffff00;
    transition: 0.5s ease;
    z-index: +2;
}
.login-container:hover ~ #login3 {
    transform: translate(-50%, -45%) rotate(4deg);
    box-shadow: 0px 0px 10px #ffff00,0px 0px 15px #ffff00 ;
}
.login-container:hover ~ #login2 {
    transform: translate(-50%, -45%) rotate(1deg);
    box-shadow: 0px 0px 10px #00ffff,0px 0px 15px #00ffff ;
}
.login-container form {
    display: flex;
    flex-direction: column;
    width: 70%;
    justify-content: center;
    align-items: center;

}
.login-container form div{
    display: flex;
    flex-direction: row;
    width: 100%;
  
    margin: 5px;

}
.login-container form div label{
    padding: 6px;
    
    white-space: nowrap;
     
}
.login-container form div input{
    padding: 6px;
    flex-grow: 1;
    color: black;

}
.login-container form small {
    font-size: 9px;
    width: 100%;
    text-align: end;
}
.login-container form button{
    padding: 6px;
    width: 50%;
    color: black;
    margin-top: 15px;
}
.personalizarproducto {
    margin-top: 80px;
}
.personalizarproducto h1 {
    width:90%;
    text-align: start;
}
.diseño {
    width: 90vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: start;
    padding: 10px;
    

}
.diseño .visordiseño {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}
.diseño .visordiseño div {
    width: 80%;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    display: flex;
}
.diseño .visordiseño div img {
    max-height:  100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 1px 2px gray;
}
.diseño .visordiseño div video {
    max-height:  100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 1px 2px gray;
}
.diseño .diseñadorpersonalizada {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 10px;
    
}



.diseño .diseñadorpersonalizada .minigaleria {
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: row;
    
    overflow: hidden;
    align-items: center;
    justify-content: start;
}
.diseño .diseñadorpersonalizada .minigaleria .carril {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    align-items: center;
    justify-content: start;
   
    
}
.diseño .diseñadorpersonalizada .minigaleria .carril .articulodise {
    width: 90px;
    height: 90px;
    margin: 5px;
    background-color:  white;
    padding: 1px;
    border-radius: 10px;
    box-shadow: 1px 2px gray;
    transition: 0.5s ease;
    overflow: hidden;
}
.diseño .diseñadorpersonalizada .minigaleria .carril .articulodise:hover {
   transform: scale(1.05);
   
}
.diseño .diseñadorpersonalizada .minigaleria .carril .articulodise img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.diseño .diseñadorpersonalizada .minigaleria .carril .articulodise video {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.diseño .diseñadorpersonalizada .pedirdiseño {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
   
}
.diseño .diseñadorpersonalizada .pedirdiseño form  {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
  
    
}
.diseño .diseñadorpersonalizada .pedirdiseño form .formadiseño {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
   
    
}
.diseño .diseñadorpersonalizada .pedirdiseño form .formadiseño .persoprecio{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 50%;
    
    
}
.diseño .diseñadorpersonalizada .pedirdiseño form .formadiseño .persoprecio input{
 color: black;
 margin-left: 15px;   
    
}
.diseño .diseñadorpersonalizada .pedirdiseño form .formadiseño .persoprecio div{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    margin-top: 5px;
    margin-bottom: 5px;
}
.diseño .diseñadorpersonalizada .pedirdiseño form .formadiseño .persodise{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 50%;
   
    margin: 10px;
}
.diseño .diseñadorpersonalizada .pedirdiseño form .formadiseño .persodise button {
   
   
    background-color: rgb(195, 191, 191);
    padding: 5px 8px;
    color: black;
    margin: 5px;

    
}
.diseño .diseñadorpersonalizada  form  .botonañadircarrito {
   
    text-decoration: none;
   
    background-color: black;
    border-radius: 10px;
   
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    box-shadow: 1px 1px  #ea00ff, 2px 2px #ffff00, -1px -1px  #00ffff;
    transition: 0.5s ease;
    margin-top: 20px;
    margin-right: 20px;
    
}
.diseño .diseñadorpersonalizada  form  .botonañadircarrito:hover {
    transform: scale(1.05);
    box-shadow: -2px -2px 8px #00ffff, 1px 1px 8px #ea00ff, 2px 2px  8px#ffff00 ;
}
.diseño .diseñadorpersonalizada  form  .botonañadircarrito img{ 
    width: 25px;
    height: 25px;
    margin: 5px;
}
.diseño .diseñadorpersonalizada form .botoncarrito {
    display: flex;
    flex-direction: row;
}
.modal {
     display: none;
      position: fixed; 
      top: 0; 
      left: 0;
     width: 100%; 
     height: 100%; 
     background: rgba(0, 0, 0, 0.5);
      justify-content: center; 
      align-items: center; 
      z-index: +3;
    }

.modal-contenido { 
    background-color: black;
    padding: 20px;
     border-radius: 10px; 
    text-align: center;
    color: black;
    border: 1px solid white;
    width: 600px;
    }
.modal-contenido form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

}
.modal-contenido form div{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 100%;
}
.modal-contenido form div label{

    width: 25%;
    text-align: start;
}
.modal-contenido form div input{
    color: black;
    width: 40%;
}
.modal-contenido form div small{
    color: red;

}
#modalPago .modal-contenido  {
    width: 80%;
}
#modalPago .modal-contenido form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}
#modalPago .modal-contenido  h2 {
    margin: 10px;
    font-size: 20px;

}
#modalPago .modal-contenido  p {
    margin: 10px;
    font-size: 15px;

}
#modalPago .modal-contenido form button {
    margin: 10px;

}
footer {
    width: 100vw;
    height: 50vh;
    background-image: url(img/subliartlogoblanco.webp);
    background-attachment: fixed;
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: right;
    background-position: bottom right;
    
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    margin: 0;
}
footer .fondofooter {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000000ac;
    z-index: +1;
}

footer .footerinfo {
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 100%;
    padding: 10px;
    margin-bottom: 50px;
   
   
}
footer .footerinfo .footerinfop {
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 60%;
    height: 100%;
    padding: 10px; 
   
}
footer .footerinfo .map {
    width: 40%;
    height: 100%;
    z-index: +3;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
footer .footerinfo .map iframe{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: 0.5s ease;
}
footer .footerinfo .map iframe:hover{
    width: 105%;
    height: 105%;
    border-radius: 0px;
    
}
footer .footerinfo p{
    width: 100%;
   text-align: start;
   font-size: 15px;
   margin: 10px;
}
footer .footerredes .redes {
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: start;
    width: 100%;
    
   
    padding: 0;
   
}
footer .footerredes .redes a{
    width: 50px;
    height: auto;
    margin-right: 5px;
    transition: 0.5s ease;
  
    
}
footer .footerredes .redes a:hover{
    transform: scale(1.05);
    
}
footer .footerredes .redes a img {
    width: 100%;
    height: 100%;
}
.menucell {
    display: none;
}

.footer .declaimer {
    width: 100%;
  
   
    z-index: +3;
   
    padding: 0;
    margin: 0;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: end;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 13px;
    text-align: center;
}
.quienessomos {
    z-index: +3;
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-direction: column;
    padding: 20px;
    margin: 20px;
}
.quienessomos p {
    margin: 10px;
    line-height: 1.5;
    font-size: 18px;
}
.bodyquienes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.volveriniciocarro {
    z-index: +2;
    margin: 20px;
}
.iconophone {
    display: none;
    flex-direction: row-reverse;
    width: 100vw;
    height: 50px;
    position: fixed;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    z-index: +2;
    background-color: rgba(0, 0, 0, 0.635);
}
.iconophone div{
    display: none;
 
    width: 50%;
    justify-content: center;
    align-items: center;
    
}
.iconophone div img {
    width: 40px;
    aspect-ratio: 1/1;
    transition: 0.5s ease;
}
.iconophone div img:hover {
    width: 45px;
   
}
@media(max-width: 800px){
    .iconophone {
        display: flex;
      
    }
    .iconophone div{
        display: flex;
   
        
    }
    h1 {
    font-size: 24px;
   }
    .login-container form div label{
        font-size: 14px;
         
    }
    .login-container form div input{
      font-size: 14px;
    
    }
    .menu {
    height: 5vh;
    width: 100vw;
    z-index: +5;
  
}
.menu .registro {
    position: absolute;
    top: 32px;
    left: 15px;
    width: auto;
    height: auto;  
    transition: 0.5s ease;
   
}
.menu ul {
    display: none;
    width: 50vw;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    height: 100%;
    
    justify-content: start;
    margin-top: 60px;
}
.menu ul li {
    margin-left: 0;
    margin-right: 0px;
    margin-top: 15px;
    transform: translateX(200%);
    transition: all 0.5s ease;
    opacity: 0;
}
.menucell {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    width: 40px;
    aspect-ratio: 1/1;
    padding: 10px;
    background-color: black;
    box-shadow: 1px 1px  #ea00ff, 2px 2px #ffff00, -1px -1px  #00ffff;
    z-index: +7;
    border-radius: 50%;
    transition: 0.5s ease;
}
.menucell:hover {
    transform: scale(1.05);
}
.menucell img {
    width: 100%;
    height: 100%;
}

.portada img {
    width: 60%;
    height: auto;
 
}
.portada h1 {
  font-size: 20px;
}
.productos {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(155px, 1fr));
    gap: 5px; /* Espacio entre los elementos */
    position: relative;
   width: 98vw;
   max-width: 98vw ;
   height: auto;
   padding: 10px;
   transition: 0.5s ease;
   margin-top: 25px;
  
   place-items: center;

  
}
.productos .articulo {
    position: relative;
    display: flex;
    border-radius: 15px;
    width: 150px;
    height: 200px;
    overflow: hidden;
    z-index: +2;
    box-shadow: 2px 2px  #00ffff, 4px 4px  #ea00ff, 6px 6px #ffff00 ;
    margin: 10px;
    transition: all 0.4s ease; /* Suaviza la transformación */
   
   }
   .productos .articulo p {
    top: 30px;
    right: -50px;
    font-size: 14px;
    
}
.productos .articulo span {
font-size: 13px;
}
footer {
    width: 100vw;
    height: 100vh;
    background-image: url(img/subliartlogoblanco.webp);
    background-attachment: fixed;
    background-size: 200px;
    background-repeat: no-repeat;

    background-position: right 0 top 5vh; /* Corrección */
    
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px;
}
footer .footerinfo {
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
   
   
}
footer .footerinfo .footerinfop {
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 50%;
    padding: 10px; 
   
}
footer .footerinfo .map {
    width: 90%;
    height: 50%;
    z-index: +3;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
footer .footerredes {
    z-index: +2;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
    width: 100%;
    margin-top: 20px;
    padding: 0;
}
.login-container {
    min-width: 90%;
    height: auto;
    z-index: +4;
    background-color: #ff2d76;
    border-radius: 15px;
    border: 1px solid white;
    box-shadow: 0px 0px 10px #ff2d76,0px 0px 15px #ff2d76 ;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

}
.login2 {
    min-width: 90%;
    
    z-index: +3;
   
    border-radius: 15px;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: 0.5s ease;

}
.login-container form {
    display: flex;
    flex-direction: column;
    width: 95%;
    justify-content: center;
    align-items: center;
    margin: 15px;

}
.diseño {
    width: 95vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 10px;
    

}
.diseño .visordiseño {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: start;
}
.diseño .visordiseño div {
    width: 80%;
    aspect-ratio: 1/1;

}
.diseño .visordiseño div img {


}
.diseño .visordiseño div video {

    

}
.diseño .diseñadorpersonalizada {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 10px;
    
}

}

