@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top:  2rem;
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
  font-family: "Poppins", sans-serif;
}
*::selection{

  color: #fff;
  background: var(--main-color);

   
  
}
:root{

  --main-color:#008148;
  --second-color:#1e392f;
  
  
  }


img{

    width: 100%;

}


/*Estilos para el Menu*/

header{

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 4px 41px rgb(14, 55, 54 / 14%);
    transition: 0.2s; 

}

.navbar{

display: flex;


}

.navbar a{

font-size: 1rem;
padding: 11px 20px;
color: var(--second-color);
font-weight: 600;
text-transform: uppercase;

}

.navbar a:hover{

color: var(--main-color);

}

/*Icono Hamburger Menu*/

#menu-icon{

    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: none;

}



/*Tamaño del Logo*/

.logo img{

    width: 115px;

}
body {
    display:flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0 0 0 / .8),rgba(0 0 0 / .8)),url(img/shop1.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.container {
    display:grid;
    grid-template-columns: repeat(2,50%);
    padding:20px;
    gap:10px;
    width: 1000px;
}

.box-info {
    color:#fff;
    display:flex;
    flex-direction: column;
    gap:50px;
}

.box-info > h1 {
    text-align: left;
    letter-spacing: 5px;
}

.data {
    display: flex;
    flex-direction: column;
    gap:25px
}

.data > p {
    font-size: 1rem;
}

.data > p > i {
    color:rgb(255, 255, 255);
    margin-right: 10px;
    font-size:25px;
}



.links {
    display:flex;
    gap:15px;
}

.links > a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: rgb(0, 0, 0);
    text-align: center;
    transition: .1s;
}

.links > a > i {
    color:#fff;
    line-height: 40px;
    font-size: 20px;
}

form {
    display:flex;
    flex-direction: column;
    text-align: center;
    gap:15px;
}

.input-box {
    position:relative;
}

.input-box > input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    outline:none;
    background: rgba(255 255 255 / .1);
    border:3px solid transparent;
    letter-spacing: 1px;
    transition:.3s;
    color:#fff;
    
}

.input-box > input::placeholder,
.input-box > textarea::placeholder {
    color:#a3a3a3;
    
}

.input-box > input:focus::placeholder,
.input-box > textarea:focus::placeholder {
    color:transparent;
}

.input-box > input:focus,
.input-box > textarea:focus {
    border-bottom:3px solid rgb(16, 138, 22);
    animation: shake .2s;
}

.input-box > textarea {
    width: 100%;
    height: 130px;
    padding: 10px;
    background: rgba(255 255 255 / .1);
    border:3px solid transparent;
    letter-spacing: 1px;
    outline: none;
    transition:.3s;
    color:#fff;
    letter-spacing: 1.5px;
}


.input-box > i {
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right: 10px;
    color:rgba(255 255 255 / .3);
    transition: .3s;
}

.input-box > input:focus ~ i {
    color:rgb(65, 48, 52);
}

form > button {
    width: 100%;
    padding: 10px;
    outline: none;
    background: rgb(8, 8, 8);
    color:#fff;
    border:none;
    transition: .1s;
    cursor: pointer;
    font-size: 1rem;
}

form > button:hover,
.links > a:hover {
    background: rgb(81, 68, 71);
}


@keyframes shake { 
    0%, 100% {transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 
    20%, 40%, 60%, 80% {transform: translateX(10px);} 
 }


 /*Boton wpp*/
  
/* Botón de WhatsApp */
/* Botón de WhatsApp */
.btn-wsp {
    position: fixed;
    display: flex; /* Activamos Flexbox */
    justify-content: center; /* Centramos horizontalmente */
    align-items: center; /* Centramos verticalmente */
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #FFF;
    border-radius: 50%; /* Forma circular */
    font-size: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Sombra */
    border: 3px solid #fff; /* Borde blanco */
    z-index: 100;
    transition: all 300ms ease;
}

.btn-wsp:hover {
    background: #20ba5a;
    transform: scale(1.1); /* Efecto hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}


  @media only screen and (min-width:320px) and (max-width:768px){
        .btn-wsp{
            width:63px;
            height:63px;
            line-height: 66px;
    }
    }


@media screen and (max-width:600px) {
    .container {
        width: 95%;
        display: flex;
        flex-direction: column;
        gap:20px;
    }

    .box-info {
        gap:15px;
    }

    .box-info > h1 {
        font-size: 1.5rem;
    }
}


@media (max-width: 768px) {
  
    header{
  
      padding: 11px 4%;
    }
  
    #menu-icon{
  
      display: initial;
    }
   
    header .navbar{
  
      position: absolute;
      top: -500px;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      background-color: #fff;
      box-shadow: 0 4px 41px rgb(14, 55, 54 / 14%);
      border-radius: 2px solid var(--main-color);
      transition: 0.2s;
      text-align: left;
      
  
    }
    .navbar.active{
  
      top: 100%;
    }
  
    .navbar a{
  
      padding: 1.5rem;
      display: block;
      color: var(--second-color);
    }
    
    .home-text span{
  
      font-size: 0.9rem;
    }
    
    .home-text h1{
  
      font-size: 2.4rem;
  
    }
  
     .home-text h2{
  
      font-size: 1.2rem;
  
     }
  } 
  
   @media screen and (max-width: 852px) {
        
        header {
            padding: 5px 5%;
        }

        .container {

            margin-top: 100px;
        }
    
        /* Asegurar que el menú desplegable se vea bien */
        .navbar {
            text-align: center;
        }
    
        .navbar a {
            font-size: 0.9rem;
            padding: 25px;
        }
    }
  
  