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

body {
  background-color: white;
  font-family: sans-serif;

  #headerup {
    background-color: rgb(227, 227, 239);
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;

    & div:nth-of-type(1) {
        width: 20%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & p:nth-of-type(1) {
        font-size: 35px;
        font-weight: bold;
        }

        & p:nth-of-type(2) {
        font-size: 8px;
        color: orange;
        letter-spacing: 5px; 
        /* margin-bottom: 15px;  */
        
        }
    }
    

    & nav {
      width: 70%;
      height: 100%; 
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-evenly;

      & span {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 20px; 
        transition: all 0.8s ease;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }
      & a {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 20px; 
        transition: all 0.8s ease;
        text-decoration: none;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }


      & span {
        color: orange;
        & a{
          color: black;
        }
        & div{
          color: black;
        }
        & a:nth-of-type(2){
          color: orange;
        }
      }

     & .dropdown {
        position: relative;
        display: inline-block;
        align-items: center;
          justify-content: center;

        & .dropdown-menu {
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          /* top: calc(100% + 180px);  */
          margin-top: 15px;
          left: 0;
          background-color: white;
          padding: 12px;
          gap: 8px;
          /* z-index: 100; */
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
          min-width: 140px;
          min-height: 400px;
          width: 100%; 
          transition: opacity 0.3s ease;
          opacity: 1;

          & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            white-space: nowrap;
            width: 100%;
            height: 100%;
            font-size: 14px;
            transition: background-color 0.2s ease;

            &:hover {
              background-color: rgba(255, 100, 100, 0.1);
              font-weight: bold;
              cursor: pointer;
            }
          }
        }

        &.open .dropdown-menu {
          display: flex;
        }
      }
    }
  }
      

  .hamburger-panel {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 250px;
  height: 500px;
  padding: 20px;
  background-color: #fff;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;

    & p {
      margin-bottom: 20px;
      color: grey;
      font-size: 14px;
    }

    & p:nth-of-type(1) {
      font-weight: bold;
      color: black;
      font-size: 35px;
      margin-bottom: 0px;
    }

    & p:nth-of-type(2) {
      font-size: 10px;
      color: orange;
      letter-spacing: 2px;
      
    }
    & p:nth-of-type(4) {
      font-size: 25px;
      color: black;
      font-weight: bold;
      margin-top: 30px;
    }
    & p:nth-last-of-type(1) {
      font-size: 20px;
      color: orange;
      font-weight: bold;
      margin-top: 40px;
    }
  }


  .search-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 250px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    & input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
    }
  }

  #ourReviews{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    flex-direction: column;

    & >div:nth-of-type(1){
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 50%;
        font-size: 60px;
        text-align: center;
        justify-content: center;
        font-weight: bold;
        
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 20%;
        font-size: 16px;
        text-align: center;
        justify-content: center;
        color: rgb(172, 172, 172);
        

        & span{
          color: orange;
          margin-right: 17px;
          margin-left: 12px;
          font-weight: bold;
        }
       
      }
      
    }

  }

  #headerdown{
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
    /* border: 2px solid rgba(0, 0, 0, 0.15); */

    & div:nth-of-type(1){

      width: 10%;
      height: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
      

    }

    & >p:nth-of-type(1){
      width: 80%;
      height: 60%;
      font-size: 40px;
      font-weight: bold;
      text-align: center;
      justify-content: center;
      margin-top: 30px;
    }
    & >p:nth-of-type(2){
      width: 80%;
      height: 20%;
      font-size: 20px;
      font-weight: bold;
      text-align: center;
      justify-content: center;
      margin-bottom: 30px;
    }


    /* Estilo contenedor, si quieres centrar o alinear */
  #comment-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  /* Estilo común para todos los círculos */
  .circle {
    width: 20px;            /* Tamaño fijo en ancho */
    height: 20px;           /* Tamaño fijo en alto para círculo perfecto */
    background-color: #a9a9a9; /* Color de fondo */
    border-radius: 50%;     /* Hace la forma redonda */
    margin: 0 8px;          /* Espaciado entre círculos */
    cursor: pointer;        /* Cursor de puntero */
    display: inline-block;  /* Para que sean en línea y tengan tamaño fijo */
    transition: background-color 0.3s;
  }

  /* Si quieres que el primer círculo tenga un estilo diferente, usa :first-child */
  #comment-controls .circle:first-child {
    width: 20px;            /* Tamaño fijo en ancho */
    height: 20px; 
  }

  /* Estilo para el círculo activo (opcional) */
  .circle.active {
    background-color: rgb(36, 36, 36);
  }





    
  }

  #making{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 15%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: orange;
        /* font-weight: bold; */
        margin-top: 20px;
        letter-spacing: 5px;
       
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 50%;
        font-size: 50px;
        text-align: center;
        justify-content: center;
        color: black;
        margin-top: 20px;
       
    }
}


  }

  #testimonials{
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;

    & article{
      width: 45%;
      height: 45%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 30px 30px;

      &:nth-of-type(2){
        & p:nth-of-type(3){
            background-image: url(../Reviews/img/2.png);
        }
      }


      &:nth-of-type(3){
        margin-top: 100px;
        border: 2px solid rgba(0, 0, 0, 0.15);
        & p:nth-of-type(3){
            background-image: url(../Reviews/img/3.png);
        }
      }
      &:nth-of-type(4){
        margin-top: 100px;  
        & p:nth-of-type(3){
            background-image: url(../Reviews/img/4.png);
        }
      }

      & p:nth-of-type(1){
        width: 100%;
        height: 20%;
        font-size: 35px;
        text-align: start;
        justify-content: center;
        color: orange;    
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 35%;
        font-size: 25px;
        text-align: start;
        justify-content: center;
        color: black; 
        margin-bottom: 15px;
        /* padding-right: 150px;  */  
      }
      & p:nth-of-type(3){
        width: 100%;
        height: 30%;
        font-size: 20px;
        text-align: start;
        justify-content: center;
        color: grey;
        background-image: url(../Reviews/img/1.png);
        background-size: contain;
        background-position: start;
        background-repeat: no-repeat;
        /* padding-top: 20px; */
        margin-right: 30px;
        

        & span{
          width: 35%;
          height: 30%;
          display: flex;
          justify-content: start;
          align-items: center;
          padding-left:100px;
          padding-top: 15px;
          flex-wrap: wrap;
        }
      }

    }
  }

  #ourContact{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 15%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: orange;
        /* font-weight: bold; */
        margin-top: 20px;
        letter-spacing: 5px;
       
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 50%;
        font-size: 70px;
        text-align: center;
        justify-content: center;
        color: black;
        margin-top: 20px;
       
        }
    }


  }

   #formulari{

        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-top: 50px; */
        
        

        & div:nth-of-type(1){
            width: 100%;
            height: 80%;
            display: flex;
            align-items: center;           
            justify-content: center;
            flex-wrap: wrap;
            /* border: 2px solid black; */
            margin: 0px 20px;

            & form{
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;           
                justify-content: center;
                flex-wrap: wrap;

                & input{
                width: 45%;
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 10px 20px;
                /* padding-left: 50px; */
                background-color: rgb(235, 235, 235);
                font-size: 20px;

                   
                }
                & input::placeholder {
                padding-left: 20px;
                }  
                
                & .underline-input{
                    border: 2px solid rgb(229, 229, 229);
                    /* border-bottom: 2px solid gray; */
                    background: transparent;
                    outline: none;
                    padding: 10px 0;    
                    
                }  
                & input:nth-of-type(3){
                    width: 92%;
                    height: 40px;
                    display: flex;
                    justify-content: center;
                    align-items: center; 
                    margin: 10px 20px;

                }   

                & input:nth-of-type(4){
                    width: 92%;
                    height: 150px;
                    display: flex;
                    justify-content: center;
                    align-items: center; 
                    margin: 10px 20px;
                    padding-bottom: 100px;

                }

                & div{
                    width: 92%;
                    height: 100px;
                    display: flex;
                    justify-content: space-around;
                    align-items: center;
                    
                    & input{
                    width: 50%;
                    height: 40px;
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    padding-top: 5px;
                    padding-left: 10px;
                    }

                    & button{
                    width: 200px;
                    height: 50px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: orange;
                    color: white;    
                    font-weight: bold;
                    font-size: 20px;
                    border: none;
                    cursor: pointer;
                    margin-top: 10px;
                    }
                    
                }

                /* & input:nth-of-type(5){
                    width: 50%;
                    height: 40px;
                    display: flex;
                    justify-content: start;
                    align-items: center; 
                } */

               
                
                
                

                /* Estilo para el contenedor de estrellas */
                .stars-container {
                width: 600px;
                height: 50px;
                display: flex;
                flex-direction: row-reverse; /* para que el primero sea la estrella 5 y así hacia abajo */
                justify-content: center;
                /* padding-bottom: 250px; */
                /* margin-left: 690px; */
                /* margin-bottom: 350px; */
                    & p{
                        margin: 0 15px;
                        font-size: 35px;
                        color: indianred;
                        font-weight: bold;
                    }
                }

                /* Ocultar los radio buttons */
                .stars-container input[type="radio"] {
                display: none;
                }

                /* Estilo para las estrellas (labels) */
                .star {
                font-size: 30px;
                color: gray;
                cursor: pointer;
                transition: color 0.2s;
                margin: 0 5px;
                }

                /* Cuando la estrella está seleccionada o en hover, cambiar color */
                .stars-container input[type="radio"]:checked ~ .star,
                .stars-container input[type="radio"]:hover ~ .star,
                .star:hover,
                .star:hover ~ .star {
                color: gold;
                }

                
            }                        
        }
      
    }


    #ourComents{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 15%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: orange;
        /* font-weight: bold; */
        margin-top: 20px;
        letter-spacing: 5px;
       
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 50%;
        font-size: 70px;
        text-align: center;
        justify-content: center;
        color: black;
        margin-top: 20px;
       
        }
    }


  }

  #comentarios{
      width: 100%;
      height: 600px; /* tamaño fijo con scrollbar */
      overflow-y: auto; /* barra de desplazamiento en vertical */
      display: flex;
      justify-content: center;
      align-items: flex-start; /* para apilar desde arriba */
      flex-direction: column;
      margin-top: 20px;
      padding: 10px; /* si quieres un margen interior */

      
      & >div{
          width: 100%;
          height: 95%;
          display: flex;
          align-items: center;           
          justify-content: center;
          background-color: rgb(255, 255, 255);
          border:2px solid rgb(255, 255, 255);
          flex-direction: column;
          text-align: center;

      } 

      #comentariosContainer {
      display: flex;
      flex-wrap: wrap; /* Hace que las cajas envuelvan en varias filas */
      gap: 15px;        /* Separación entre cajas */
      justify-content: center; /* Opcional: centra las cajas en la fila */
      width: 100%; /* Asegura que ocupe todo el ancho disponible */
      padding: 10px; /* Opcional: para margen interior */
    }

    #enviarComentario {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center; /* Opcional */
      width: 100%;
      padding: 10px;
    }
    #enviarDatos {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      width: 100%;
      padding: 10px;
    }


      .comentario-caja {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f9f9f9;
        max-width: 600px;
        box-sizing: border-box;
      }

      .comentario-titulo {
        font-size: 25px;
        font-weight: bold;
        margin-bottom: 8px;
      }

      .foto-comentario {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
      }

      .foto-comentario img {
        max-width: 200px;
        height: auto;
        display: block;
        margin-bottom: 10px;
      }


      .comentario-caja p {
        white-space: pre-wrap;        /* Permite saltos de línea y envuelve texto */
        word-wrap: break-word;        /* Rompe palabras largas si es necesario */
        overflow-wrap: break-word;    /* Alternativa moderna para break-word */
        margin: 0;
        width: 100%;  
        text-align: start;                /* Asegura que ocupe todo el ancho del div */
      }

      



    

      .comentario-titulo {
          font-size: 25px;
          font-weight: bold;
          text-decoration: underline;
          margin-right: 10px;
          margin-top: 30px;
      }

      button.borrarComentario {
        margin-top: 10px;
      }

      /* Estilo básico para el botón de borrar */
      .borrarComentario {
          background-color: orange;  /* color rojo */
          color: #fff;               /* texto blanco */
          border: none;
          padding: 8px 12px;
          margin-top: 8px;
          cursor: pointer;
          border-radius: 0px;
          font-size: 16px;
          transition: background-color 0.3s ease;
      }

      /* Cambio de color al pasar el ratón por encima */
      .borrarComentario:hover {
          background-color: #c0392b;
      }



      
  }

  #subscribe{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background-image: url(../img/22.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 70%;
      height: 70%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding-top: 30px;
      /* margin-top: 50px; */

      & p:nth-of-type(1){
        width: 100%;
        height: 12%;
        font-size: 25px;
        text-align: center;
        justify-content: center;
        color: white;
        margin-top: 30px;
        letter-spacing: 5px;
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 27%;
        font-size: 80px;
        text-align: center;
        justify-content: center;
        color: white;
      }
      & p:nth-of-type(3){
        width: 60%;
        height: 20%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        padding-top: 10px;
      }
      
    }

    & div:nth-of-type(2){
      width: 70%;
      height: 30%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 130px;
      
      & input{
        width: 600px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        background-color: transparent;
        border: white solid 1px;
        cursor: pointer;
        text-align: start;
        padding-left: 30px;
      }

      input::placeholder {
        color: white;
      }

      & button{
        width: 200px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        background-color: orange;
        border: none;
        cursor: pointer;
        margin-left: 10px;
        /* margin-right: 500px; */
      }
    }

  }

  #footerEnd{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
    background-color: rgb(54, 52, 58);
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 100%;
      height: 85%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding-top: 30px;

      

      
      & article{
        width: 22%;
        height: 60%;
        flex-direction: column;
        justify-content: start;
        align-items: center;

        &:nth-of-type(1) {
          p:nth-of-type(4){ 
            font-style: italic; /* Hace que el texto sea cursiva */
            word-spacing: 10px; /* Ajusta la separación entre palabras */
            /* font-weight: bold; */
            font-size: 20px;
          }
        }

        &:nth-of-type(2) {
          p:nth-of-type(2){   
            height: 17%;       
            font-size: 18px;
            margin-top: 30px;
            color: white;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 17%;       
            padding-bottom: 20px;          
          }

          p:nth-of-type(4){  
            height: 17%;         
            color: white;          
            font-size: 18px;
          }
          p:nth-of-type(5){  
            height: 17%;         
          }
          
        }
        &:nth-of-type(3) {
          p:nth-of-type(2){   
            height: 17%;       
            font-size: 18px;
            margin-top: 30px;
            color: white;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 17%;       
            padding-bottom: 20px;          
          }

          p:nth-of-type(4){  
            height: 17%;         
            color: white;          
            font-size: 18px;
          }
          p:nth-of-type(5){  
            height: 17%;         
          }
          p:nth-of-type(6){  
            height: 17%;         
          }
        }
        &:nth-of-type(4) {
          p:nth-of-type(2){   
            height: 14%;       
            font-size: 18px;
            margin-top: 30px;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 14%;       
            padding-bottom: 0px;          
          }

          p:nth-of-type(4){  
            height: 14%;         
            color: white;          
            font-size: 18px;
            color:orange;
          }
          p:nth-of-type(5){  
            height: 14%;         
          }
          p:nth-of-type(6){  
            height: 14%; 
            color: orange;        
          }
          p:nth-of-type(7){  
            height: 14%;         
          }
        }

        & p{
          width: 100%;
          height: 15%;
          font-size: 18px;
          color:white;
          text-align: start;
          justify-content: center;
        }

        & p:nth-of-type(1){
          width: 100%;
          height: 20%;
          font-size: 45px;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 15%;
          font-size: 10px;
          letter-spacing: 5px;
          color: orange;  
          margin-left: 2px;   
        }
        & p:nth-of-type(3){
          width: 90%;
          height: 35%;
          font-size: 18px;
          
        }
        & p:nth-of-type(4){
          width: 100%;
          height: 35%;
          font-size: 30px;
          color: orange; 
          /* padding-bottom: 20px; */
          /* margin-bottom: 40px;  */   
        }



      }
    }

    & div:nth-of-type(2){
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      flex-wrap: wrap;
      padding-top: 45px;


      & p:nth-of-type(1){
        width: 80%;
        height: 3%;
        background-color: grey;
        
      }

      & p:nth-of-type(2){
        width: 100%;
        height: 97%;
        color: white;
        font-size: 15px;
        text-align: center;
        justify-content: center;
        text-align: center;
        padding-top: 17px;
      }
    }

  }
}

@media (max-width: 431px) and (orientation: portrait){

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

  body {
    background-color: white;
    font-family: sans-serif;

    #headerup {
    background-color: rgb(227, 227, 239);
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    flex-direction: column;

    & div:nth-of-type(1) {
        width: 100%;
        height: 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & p:nth-of-type(1) {
        font-size: 60px;
        font-weight: bold;
        }

        & p:nth-of-type(2) {
        font-size: 15px;
        color: orange;
        letter-spacing: 5px; 
        /* margin-bottom: 15px;  */
        
        }
    }
    

    & nav {
      width: 100%;
      height: 75%; 
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-evenly;
      flex-direction: column;

      & span {
        font-size: 35px;

        
      }

      .dropdown-menu > a:nth-of-type(2) { color: orange; }
        


        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }
      & a {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 30px; 
        transition: all 0.8s ease;
        text-decoration: none;
        font-size: 35px;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }


      & a:nth-of-type(1) {
        color: black;
      }

      & a:nth-of-type(2) {
        color: black;
      }

      & a:nth-of-type(3) {
        color: black;
      }

      & a:nth-of-type(4) {
        color: black;
      }

     & .dropdown {
        position: relative;
        display: inline-block;
        align-items: center;
        justify-content: center;
        

        & .dropdown-menu {
          width: 400px;
          height: 500px;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          /* top: calc(100% + 80px);  */
          top:60px;
          bottom: 80px;
          /* margin-top: 55px; */
          left: 0;
          background-color: white;
          padding: 22px;
          gap: 8px;
          /* z-index: 100; */
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
          min-width: 180px;
          min-height: 800px;
          width: 100%; 
          transition: opacity 0.3s ease;
          opacity: 1;

          & a {
          color: black;
        }

          & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            white-space: nowrap;
            width: 100%;
            height: 100%;
            font-size: 35px;
            transition: background-color 0.2s ease;



            &:hover {
              background-color: rgba(255, 100, 100, 0.1);
              font-weight: bold;
              cursor: pointer;
            }
          }
        }

        &.open .dropdown-menu {
          display: flex;
        }
      }
  }   

  .search-icon, .hamburger-toggle {
    padding: 10px 30px;
  }

  .hamburger-panel {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 300px;
  height: 600px;
  padding: 20px;
  background-color: #fff;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
  /* z-index: 999; */

    & p {
      margin-bottom: 20px;
      color: grey;
      font-size: 20px;
    }

    & p:nth-of-type(1) {
      font-weight: bold;
      color: black;
      font-size: 45px;
      margin-bottom: 0px;
    }

    & p:nth-of-type(2) {
      font-size: 20px;
      color: orange;
      letter-spacing: 2px;
      
    }
    & p:nth-of-type(4) {
      font-size: 35px;
      color: black;
      font-weight: bold;
      margin-top: 30px;
    }
    & p:nth-last-of-type(1) {
      font-size: 20px;
      color: orange;
      font-weight: bold;
      margin-top: 40px;
    }
  }

  .search-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 220px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    & input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
    }
  }

    #ourReviews{
      width: 100%;
      height: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 50px;
      flex-direction: column;

      & >div:nth-of-type(1){
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 59%;
          font-size: 60px;
          text-align: center;
          justify-content: center;
          font-weight: bold;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 20%;
          font-size: 16px;
          text-align: center;
          justify-content: center;
          color: rgb(172, 172, 172);
          

          & span{
            color: orange;
            margin-right: 17px;
            margin-left: 12px;
            font-weight: bold;
          }
        
        }
        
      }

    }

    #headerdown{
      width: 100%;
      height: 550px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-top: 0px;
      /* border: 2px solid rgba(0, 0, 0, 0.15); */

      & div:nth-of-type(1){

        width: 100%;
        height: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        

      }

      & >p:nth-of-type(1){
        width: 100%;
        height: 50%;
        font-size: 35px;
        font-weight: bold;
        text-align: center;
        justify-content: center;
        margin-top: 30px;
        margin-left: 1%;
        margin-right: 1%;
      }
      & >p:nth-of-type(2){
        width: 80%;
        height: 10%;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        justify-content: center;
        margin-bottom: 25px;
      }


      /* Estilo contenedor, si quieres centrar o alinear */
    #comment-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    /* Estilo común para todos los círculos */
    .circle {
      width: 20px;            /* Tamaño fijo en ancho */
      height: 20px;           /* Tamaño fijo en alto para círculo perfecto */
      background-color: #a9a9a9; /* Color de fondo */
      border-radius: 50%;     /* Hace la forma redonda */
      margin: 0 8px;          /* Espaciado entre círculos */
      cursor: pointer;        /* Cursor de puntero */
      display: inline-block;  /* Para que sean en línea y tengan tamaño fijo */
      transition: background-color 0.3s;
    }

    /* Si quieres que el primer círculo tenga un estilo diferente, usa :first-child */
    #comment-controls .circle:first-child {
      width: 20px;            /* Tamaño fijo en ancho */
      height: 20px; 
    }

    /* Estilo para el círculo activo (opcional) */
    .circle.active {
      background-color: rgb(36, 36, 36);
    }





      
    }

    #making{
      width: 100%;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 0px;
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 10%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: orange;
          /* font-weight: bold; */
          margin-top: 20px;
          letter-spacing: 5px;
        
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 40%;
          font-size: 50px;
          text-align: center;
          justify-content: center;
          color: black;
          margin-top: 20px;
        
      }
  }


    }

    #testimonials{
      width: 100%;
      height: 1800px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 45px;
      flex-wrap: wrap;

      & article{
        width: 100%;
        height: 24%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 30px 30px;

        &:nth-of-type(2){
          & p:nth-of-type(3){
              background-image: url(../Reviews/img/2.png);
          }
        }


        &:nth-of-type(3){
          margin-left: 1%;
          margin-right: 1%;
          margin-top: 20px;
          border: 2px solid rgba(0, 0, 0, 0.15);
          & p:nth-of-type(3){
              background-image: url(../Reviews/img/3.png);
          }
        }
        &:nth-of-type(4){
          margin-top: 20px;  
          & p:nth-of-type(3){
              background-image: url(../Reviews/img/4.png);
          }
        }

        & p:nth-of-type(1){
          width: 100%;
          height: 10%;
          font-size: 35px;
          text-align: start;
          justify-content: center;
          color: orange;    
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 50%;
          font-size: 23px;
          text-align: start;
          justify-content: center;
          color: black; 
          margin-bottom: 15px;
          /* padding-right: 150px;  */  
        }
        & p:nth-of-type(3){
          width: 100%;
          height: 20%;
          font-size: 20px;
          text-align: start;
          justify-content: center;
          color: grey;
          background-image: url(../Reviews/img/1.png);
          background-size: contain;
          background-position: start;
          background-repeat: no-repeat;
          padding-bottom: 20px;
          margin-right: 30px;
          /* padding-top:60px; */
          

          & span{
            width: 100%;
            height: 40%;
            display: flex;
            justify-content: start;
            align-items: center;
            padding-left:130px;
            padding-top: 15px;
            flex-wrap: wrap;
          }
        }

      }
    }

    #ourContact{
      width: 100%;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 20%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: orange;
          /* font-weight: bold; */
          margin-top: 20px;
          letter-spacing: 5px;
        
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 50%;
          font-size: 45px;
          text-align: center;
          justify-content: center;
          color: black;
          margin-top: 0px;
        
          }
      }


    }

    #formulari{

          width: 100%;
          height: 350px;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 20px;
          flex-wrap: wrap;
          
          

          & div:nth-of-type(1){
              width: 100%;
              height: 100%;
              display: flex;
              align-items: center;           
              justify-content: center;
              flex-wrap: wrap;
              /* border: 2px solid black; */
              margin: 0px 20px;

              & form{
                  width: 100%;
                  height: 80%;
                  display: flex;
                  align-items: center;           
                  justify-content: center;
                  flex-wrap: wrap;

                  & input{
                  width: 92%;
                  height: 40px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  margin: 10px 20px;
                  /* padding-left: 50px; */
                  background-color: rgb(235, 235, 235);
                  font-size: 20px;

                    
                  }
                  & input::placeholder {
                  padding-left: 20px;
                  }  
                  
                  & .underline-input{
                      border: 2px solid rgb(229, 229, 229);
                      /* border-bottom: 2px solid gray; */
                      background: transparent;
                      outline: none;
                      padding: 10px 0;    
                      
                  }  
                  & input:nth-of-type(3){
                      width: 92%;
                      height: 40px;
                      display: flex;
                      justify-content: center;
                      align-items: center; 
                      margin: 10px 20px;

                  }   

                  & input:nth-of-type(4){
                      width: 92%;
                      height: 150px;
                      display: flex;
                      justify-content: center;
                      align-items: center; 
                      margin: 10px 20px;
                      padding-bottom: 100px;

                  }

                  & div{
                      width: 92%;
                      height: 100px;
                      display: flex;
                      justify-content: space-around;
                      align-items: center;
                      
                      & input{
                      width: 100%;
                      height: 50px;
                      display: flex;
                      justify-content: start;
                      align-items: center;
                      padding-top: 9px;
                      padding-left: 10px;
                      }

                      & button{
                      width: 200px;
                      height: 50px;
                      display: flex;
                      justify-content: center;
                      align-items: center;
                      background-color: orange;
                      color: white;    
                      font-weight: bold;
                      font-size: 20px;
                      border: none;
                      cursor: pointer;
                      margin-top: 50px;
                      }
                      
                  }

                  /* & input:nth-of-type(5){
                      width: 50%;
                      height: 40px;
                      display: flex;
                      justify-content: start;
                      align-items: center; 
                  } */

                
                  
                  
                  

                  /* Estilo para el contenedor de estrellas */
                  .stars-container {
                  width: 300px;
                  height: 50px;
                  display: flex;
                  flex-direction: row-reverse; /* para que el primero sea la estrella 5 y así hacia abajo */
                  justify-content: center;
                  /* padding-bottom: 250px; */
                  /* margin-left: 690px; */
                  /* margin-bottom: 350px; */
                      & p{
                          margin: 0 15px;
                          font-size: 35px;
                          color: indianred;
                          font-weight: bold;
                      }
                  }

                  /* Ocultar los radio buttons */
                  .stars-container input[type="radio"] {
                  display: none;
                  }

                  /* Estilo para las estrellas (labels) */
                  .star {
                  font-size: 30px;
                  color: gray;
                  cursor: pointer;
                  transition: color 0.2s;
                  margin: 0 5px;
                  }

                  /* Cuando la estrella está seleccionada o en hover, cambiar color */
                  .stars-container input[type="radio"]:checked ~ .star,
                  .stars-container input[type="radio"]:hover ~ .star,
                  .star:hover,
                  .star:hover ~ .star {
                  color: gold;
                  }

                  
              }                        
          }
        
      }


      #ourComents{
      width: 100%;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 330px;
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 18%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: orange;
          /* font-weight: bold; */
          margin-top: 20px;
          letter-spacing: 5px;
        
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 50%;
          font-size: 45px;
          text-align: center;
          justify-content: center;
          color: black;
          margin-top: 20px;
        
          }
      }


    }

    #comentarios{
        width: 100%;
        height: 150px; /* tamaño fijo con scrollbar */
        overflow-y: auto; /* barra de desplazamiento en vertical */
        display: flex;
        justify-content: center;
        align-items: flex-start; /* para apilar desde arriba */
        flex-direction: column;
        margin-top: 20px;
        padding: 10px; /* si quieres un margen interior */

        
        & >div{
            width: 100%;
            height: 95%;
            display: flex;
            align-items: center;           
            justify-content: center;
            background-color: rgb(255, 255, 255);
            border:2px solid rgb(255, 255, 255);
            flex-direction: column;
            text-align: center;

        } 

        #comentariosContainer {
        display: flex;
        flex-wrap: wrap; /* Hace que las cajas envuelvan en varias filas */
        gap: 15px;        /* Separación entre cajas */
        justify-content: center; /* Opcional: centra las cajas en la fila */
        width: 100%; /* Asegura que ocupe todo el ancho disponible */
        padding: 10px; /* Opcional: para margen interior */
      }

      #enviarComentario {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center; /* Opcional */
        width: 100%;
        padding: 10px;
      }
      #enviarDatos {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        width: 100%;
        padding: 10px;
      }


        .comentario-caja {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          padding: 10px;
          border: 1px solid #ccc;
          border-radius: 8px;
          background-color: #f9f9f9;
          max-width: 600px;
          box-sizing: border-box;
        }

        .comentario-titulo {
          font-size: 25px;
          font-weight: bold;
          margin-bottom: 8px;
        }

        .foto-comentario {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-top: 10px;
        }

        .foto-comentario img {
          max-width: 200px;
          height: auto;
          display: block;
          margin-bottom: 10px;
        }


        .comentario-caja p {
          white-space: pre-wrap;        /* Permite saltos de línea y envuelve texto */
          word-wrap: break-word;        /* Rompe palabras largas si es necesario */
          overflow-wrap: break-word;    /* Alternativa moderna para break-word */
          margin: 0;
          width: 100%;  
          text-align: start;                /* Asegura que ocupe todo el ancho del div */
        }

        



      

        .comentario-titulo {
            font-size: 25px;
            font-weight: bold;
            text-decoration: underline;
            margin-right: 10px;
            margin-top: 30px;
        }

        button.borrarComentario {
          margin-top: 10px;
        }

        /* Estilo básico para el botón de borrar */
        .borrarComentario {
            background-color: orange;  /* color rojo */
            color: #fff;               /* texto blanco */
            border: none;
            padding: 8px 12px;
            margin-top: 8px;
            cursor: pointer;
            border-radius: 0px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        /* Cambio de color al pasar el ratón por encima */
        .borrarComentario:hover {
            background-color: #c0392b;
        }



        
    }

    #subscribe{
      width: 100%;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 60px;
      background-image: url(../img/22.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 65%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 20px;
        /* margin-top: 50px; */

        & p:nth-of-type(1){
          width: 100%;
          height: 12%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          margin-top: 30px;
          letter-spacing: 5px;
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 35%;
          font-size: 50px;
          text-align: center;
          justify-content: center;
          color: white;
        }
        & p:nth-of-type(3){
          width: 100%;
          height: 20%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          padding-top: 10px;
        }
        
      }

      & div:nth-of-type(2){
        width: 100%;
        height: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        flex-direction: column;
        
        & input{
          width: 95%;
          height: 50px;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          background-color: transparent;
          border: white solid 1px;
          cursor: pointer;
          text-align: start;
          padding-left: 30px;
        }

        input::placeholder {
          color: white;
        }

        & button{
          width: 250px;
          height: 50px;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          background-color: orange;
          border: none;
          cursor: pointer;
          margin-left: 10px;
          margin-top: 20px;
          /* margin-right: 500px; */
        }
      }

    }

    #footerEnd{
      width: 100%;
      height: 1350px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* margin-top: 50px; */
      background-color: rgb(54, 52, 58);
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 93%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 30px;
        flex-wrap: wrap;

        & article:nth-of-type(4){
          width: 100%;
          height: 26%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          margin-top: 30px;
          padding-bottom: 20px;
        }

        & article:nth-of-type(3){
          width: 100%;
          height: 19%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        & article:nth-of-type(2){
          width: 100%;
          height: 19%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        & article:nth-of-type(1){
          width: 100%;
          height: 18%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        
        & article{
          width: 100%;
          height: 21%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          margin-left: 1%;
          margin-right: 1%;
          /* flex-wrap: wrap; */

          &:nth-of-type(1) {
            p:nth-of-type(4){ 
              font-style: italic; /* Hace que el texto sea cursiva */
              word-spacing: 10px; /* Ajusta la separación entre palabras */
              /* font-weight: bold; */
              font-size: 20px;
            }
          }

          &:nth-of-type(2) {
            p:nth-of-type(2){   
              height: 17%;       
              font-size: 22px;
              margin-top: 30px;
              color: white;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 17%;       
              padding-bottom: 20px;          
            }

            p:nth-of-type(4){  
              height: 17%;         
              color: white;          
              font-size: 22px;
            }
            p:nth-of-type(5){  
              height: 17%;         
            }
            
          }
          &:nth-of-type(3) {
            p:nth-of-type(2){   
              height: 17%;       
              font-size: 22px;
              margin-top: 30px;
              color: white;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 17%;       
              padding-bottom: 20px;          
            }

            p:nth-of-type(4){  
              height: 17%;         
              color: white;          
              font-size: 22px;
            }
            p:nth-of-type(5){  
              height: 17%;         
            }
            p:nth-of-type(6){  
              height: 17%;         
            }
          }
          &:nth-of-type(4) {
            p:nth-of-type(2){   
              height: 11%;       
              font-size: 22px;
              margin-top: 20px;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 20%;       
              padding-bottom: 0px;          
            }
            p:nth-of-type(1){    
              height: 14%;       
              padding-bottom: 0px;          
            }

            p:nth-of-type(4){  
              height: 12%;         
              color: white;          
              font-size: 22px;
              color:orange;
            }
            p:nth-of-type(5){  
              height: 20%;         
            }
            p:nth-of-type(6){  
              height: 11%; 
              color: orange;        
            }
            p:nth-of-type(7){  
              height: 18%;         
            }
          }

          & p{
            width: 100%;
            height: 15%;
            font-size: 22px;
            color:white;
            text-align: start;
            justify-content: center;
          }

          & p:nth-of-type(1){
            width: 100%;
            height: 20%;
            font-size: 45px;
            
          }
          & p:nth-of-type(2){
            width: 100%;
            height: 15%;
            font-size: 15px;
            letter-spacing: 5px;
            color: orange;  
            margin-left: 2px;   
          }
          & p:nth-of-type(3){
            width: 90%;
            height: 35%;
            font-size: 22px;
            
          }
          & p:nth-of-type(4){
            width: 100%;
            height: 35%;
            font-size: 30px;
            color: orange; 
            /* padding-bottom: 20px; */
            /* margin-bottom: 40px;  */   
          }



        }
      }

      & div:nth-of-type(2){
        width: 100%;
        height: 7%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        padding-top: 45px;


        & p:nth-of-type(1){
          width: 80%;
          height: 3%;
          background-color: grey;
          
        }

        & p:nth-of-type(2){
          width: 100%;
          height: 97%;
          color: white;
          font-size: 15px;
          text-align: center;
          justify-content: center;
          text-align: center;
          padding-top: 17px;
        }
      }

    }
  }

}