
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing:border-box;
}

/*Menú*/
nav {
    position: fixed; 
    top: 0;         
    left: 0;       
    width: 100%;
    background: white;
    height: 80px;
    z-index: 1000; 
}

.enlace{
    position: absolute;
    padding: 20px 50px;
}

.logo{
    height: 40px;
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: black;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

li a.active, li a:hover{
    background: #D9D9D9;
    transition: .5s;
}

.checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}



@media (max-width:952px){
    .enlace{
        padding-left: 20px;
    }
        nav ul li a{
            font-size: 14px;
        }
    
}

@media (max-width:780px){
    .checkbtn{
        display: block;
    }
    ul{
        position:fixed;
        width: 100%;
        height: 100vh;
        background: white;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a{
        font-size: 20px;
    }

    li a:hover, li a.active{
        background: none;
        color:#5caf50;
    }

    #check:checked ~ ul{
        left: 0;
    }
}



/*Form*/

.titulocontacto{
    font-family: 'Arial', sans-serif;
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: #000;
    text-align: center;
    margin-top: 30px;
    
}
.margen{
    width:80%;
    margin: 30px auto;
    border: 3px solid  #6CA3D5;
    padding: 20px;
    padding-left: 60px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
  }
  
  .formulario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}
  
.form-group {
    display: flex;
    flex-direction: column;
}
  
  
.form-group label, .form-group legend{
    display:block;
    font-size: 16px;
    margin: 0 0 10px;
    font-family:Arial, Helvetica, sans-serif;
  }
  
  .input-padron{
    display: block;
    margin: 0 0 0;
    padding: 10px 4px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    height: 50px;
  }

  
  .input-padron, textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    margin-top: 5px;
    height: 50px;
    
}
    
textarea {
    resize: vertical;
    
}
  
  
  .enviar{
    width:40%;
    padding:15px 0;
    font-size:18px;
    font-weight:  bold;
    color:white;
    background:  #6ca3d5;
    border:none;
    border-radius: 5px;
    transition: 1s all;
    cursor: pointer;
    margin-left: 35px;
    margin-top: 35px;
  }
  
  .Limpiar:hover{
   background:  #5A5A5A;
   transform:scale(1.2); 
  }
  
  .Limpiar{
    width:40%;
    padding:15px 0;
    font-size:18px;
    margin-right: 30px;
    margin-left: 20px;
    font-weight:  bold;
    color:white;
    background:  #828282;
    border:none;
    border-radius: 5px;
    transition: 1s all;
    cursor: pointer;
    margin-top: 35px;
  }
  
  .enviar:hover{
   background: #050927;
   transform:scale(1.2); 
  }
  @media (max-width: 1024px) {
    .formulario-grid {
        grid-template-columns: 1fr; /* Un solo columna en tablet */
    }
    
    .enviar, .Limpiar {
        width: 100%; 
        margin-left: 0;
        margin-bottom: 0.5px;
        
    }
}

@media (max-width: 768px) {
    .titulocontacto {
        font-size: 35px; 
    }

    .margen {
        width: 90%;
        padding-left: 20px; 
    }

    .formulario-grid {
        gap: 10px; 
    }

    textarea {
        height: 120px;
    }
    .enviar, .Limpiar{
        margin-bottom: 0.5px;
    }
}
/*Footer*/

.Liga {
    background-color: #0d0d0dcb;
    display: flex;
    flex-direction: column; 
    width: 100%;
    
    
}

.infolog {
    padding-left: 25px; 
    padding-top: 40px;
    padding-bottom: 20px;
}

.infolog img {
    height: 60px;
    width: auto;
    padding-left: 20px;
}
.linkLigas{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding-left: 25px;
    
}

.card{
    display: flex; 
    justify-content: left; 
    
    padding-left: 35px;
   
  
}


.linksLigas img {
    width: 30px; 
    height: auto; 
    margin: 0; 
    padding: 0; 
    padding-bottom: 50px;
    gap: 5px;
    
}

footer {
    text-align: center;
    background-color: #0d0d0dd3;
    padding: 15px;
}

.Copyright {
    text-align: left;
    color: #ffffffa0;
    font-size: 15px;
    margin: 15px;
}

.Copyright a {
    color: #ffffffa0;
    font-size: 15px;
    text-decoration: underline;
}

.wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left:30px;
    padding-bottom: 30px;
   
  }
  
  .button {
    width: 140px;
    height: 38px;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-weight: 500;
    color: #000;
    background-color: #ffffff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    
    }
  
  .button:hover {
    background-color: #5caf50;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
  }


@media (max-width: 952px) {
    .Liga {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }

    .info {
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .info img {
        height: 50px;
        width: auto;
    }

    .linksLigas img {
        width: 22px; 
        margin: 4px 0; 
        padding-bottom: 30px;
    }

}

@media (max-width: 780px) {
    .Liga {
        flex-direction: column;
        align-items: left;
        text-align: left;
       
    }

    .info {
        padding-left: 20PX;
        padding-top: 20px;
        padding-bottom: 5px;
    }
   

   
    .linksLigas {
        flex-direction: column;
        align-items: center;
        
        
    }

    .linksLigas img {
        width: 20px; 
        padding-bottom: 20px;
    }

}



/*Catalogo*/

/* Sección del catálogo */
.catalogo {
   
    text-align: center;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px; 
    box-sizing: border-box;
   
    
    
    
   
}

.catalogo-header{
    width: 50%; 
    box-sizing: border-box;
    padding:70px;

   
    
    
    
}

.catalogo-header h2 {
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 60px;
    text-align: left;
    font-weight: bolder;
}

.catalogo-header p {
    font-family: 'Arial', sans-serif;
    font-size: 30px;
    color: gray;
    line-height: 1.6;
    text-align: left;
   
    
}

.catalogo-header button {
    padding: 10px 20px;
    background-color: #e63946;
    color: white;
    border: none;
    cursor: pointer;
}

.imagen-catalogo {
    width: 50%; 
    display: block;
    padding-top: 20px;
    margin-top: 20px;
    
    margin-bottom: 0;
}

.imagen-catalogo img{
    width: 100%;
    height: auto; 
    display: block;
    object-fit: cover; 
    pointer-events: none;
    
}


.buttoncat{
    display: flex;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    width: 160px;
    height: 45px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bolder;
    color: white;
    background-color: gray;
    box-shadow:1px 1px 1px 1px #616161;

    
   
}

    .buttoncat:hover {
background-color: #4CAF50;
box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
color: #fff;
transform: translateY(-7px);
}




.producto {
    padding: 50px;
    background-color: rgb(222, 239, 254);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 20px; 
    box-sizing: border-box;
    padding-top: 70px;
}



.producto-detalles {
    display: flex;
    gap: 40px;
    align-items: center;
}

.imagen-colores {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%; 
    
}

.imagen-tamaños {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%; 
    
}

.imagen-producto {
    width: 70%; 
    display: block;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 20px;

}

.imagen-producto img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: cover; 
    pointer-events: none;

   
    
}

.colores {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

/* Estilos para la información */
.info {
    width: 45%; 
    box-sizing: border-box;
    padding:40px;
    background-color: rgba(255, 255, 255, 0.656);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 15px; 
    justify-content: center;

}


.info h3, h4{
    margin: 0;
    padding: 0;
    
    color: rgb(103, 103, 103);
    font-family: Arial, Helvetica, sans-serif;
}

.info h3{
    font-size: 3.5rem;
    font-weight: bolder;
    padding-bottom: 8px;
    text-align: center;
}

.info h4{
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: center;
}

.info h5{
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    padding-bottom: 10px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.info h6{
    font-size: 1rem;
    text-align: left;
    padding-bottom: 10px;
    padding-top: 30px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.info p{
    font-weight: normal;
    font-size: 1rem;
    text-align: justify;
    padding-bottom: 10px;
    color: black;
    font-family: Arial, Helvetica, sans-serif; 
}

/* Estilos para los tamaños */
.tamaños {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
    
}

.tamaños button {
    padding: 5px ; 
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    font-size: 0.9rem; 
    cursor: pointer;
    transition: background-color 0.3s;
    width: 90px; 
}

.tamaños button:hover {
    background-color: #ddd;
}



@media (max-width: 1024px) {
   
    .catalogo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 30px;
        
    }

    .catalogo-header {
        width: 100%; 
        text-align: center; 
    }
    .catalogo-header h2 {
        font-size: 50px;
        text-align: center;
        width: 100%; 
        margin: 0;
    }

    .catalogo-header p {
        font-size: 18px;
        text-align: center;
        margin: 10px 0;
        
    }

    .buttoncat {
        width: 150px;
        font-size: 14px;
        justify-content: center;
        padding-top:15px;
        text-align: center;
        display: block; 
        margin: 0 auto;
        
    }

    .producto-detalles {
        flex-direction: column;
    }
    .imagen-catalogo{
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }
    .imagen-catalogo img{
        width: 100%;
    }

    .imagen-colores, .imagen-tamaños{
        width: 95%;
    }
    .info {
        width: 90%;
        margin: 0 auto;
    }

    .tamaños {
       
        grid-template-columns: repeat(3, 1fr);
       
    }
    .tamaños button {
        width: 80px;
        font-size: 0.85rem;
        
    }

  
}

@media (max-width: 780px) {
    .catalogo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .catalogo-header {
        width: 100%; 
        text-align: center; 
    }
    .catalogo-header h2 {
        font-size: 40px;
        text-align: center;
        width: 100%; 
        margin: 0;
    }

    .catalogo-header p {
        font-size: 15px;
        text-align: center;
        margin: 10px 0;
        
    }

    .buttoncat {
        width: 150px;
        font-size: 14px;
        justify-content: center;
        padding-top:15px;
        text-align: center;
        display: block; 
        margin: 0 auto;
        
    }
  
    .colores {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 5px; 
    }
    
    .color {
        width: 30px; 
        height: 30px;
        border-radius: 50%; 
    }
    .imagen-catalogo {
       
        padding-top: 0;
        margin-top: 0;
       
    }

    .producto {
        padding: 20px;
    }

    .imagen-colores {
        width: 80%;
    }
    .imagen-colores img {
        width: 90%;
        
    }

    .imagen-tamaños {
        width: 80%;
    }
    .imagen-tamaños img {
        width: 90%;
    }

    .info {
        width: 90%;
        padding: 20px;
    }

    .tamaños button {
        width: 70px;
        font-size: 0.8rem;
    }
   
    .tamaños {
       
        grid-template-columns: repeat(3, 1fr);
       
    }

    .info h3{
        font-size: 30px;
    }
    .info h4{
        font-size: 20px;
    }

    .info p{
        font-size:15px ;
    }
}





/* Formulario de cotización */
.cotiza {
    padding: 40px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

form input, form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px 20px;
    background-color: #e63946;
    color: white;
    border: none;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    .producto-detalles {
        flex-direction: column;
        align-items: center;
    }

    .imagen-producto {
        margin-bottom: 20px;
        width: 100%;
    }

    form input, form textarea {
        width: 95%;
    }
}

  /*WhatsApp*/

  .content {
    padding: 20px;
    height: 2000px; 

}

#whatsapp-button {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    
    transition: transform 0.3s; 
}

#whatsapp-button img {
    width: 50px; 
    height: 50px; 
}

#whatsapp-button:hover {
    transform: scale(1.3); 
}