/* Variáveis de cor */
:root {
    --primary-color: #2045e6dc; /* Cor principal (laranja) */
    --secondary-color: #333; /* Cor secundária (preto) */
    --accent-color: #fff; /* Cor de destaque (branco) */
    --background-color: #f9f9f9; /* Fundo claro */
    --button-color: #2045e6dc; /* Cor dos botões */
    --text-color: #333; /* Cor do texto */
    --text-color-menu-hover:#eeda05;/*Cor do hover menu*/
  }
  
  /* Reset básico */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
  }
  
  header {
    background: var(--primary-color);
    color: var(--accent-color);
    /*padding: 1rem 0;*/
    padding-top: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .logo img {
    width: 150px;
    height: auto;
  }
  
  .menu {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .menu a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
  }

  .menu a:hover {
    color: var(--text-color-menu-hover);
    
  }
  
  .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background-color: #ffffff;
    border-color: var(--primary-color);
  }
  
  .social-icons a {
    color: var(--accent-color);
    margin-left: 1rem;
    font-size: 1.2rem;
  }
  
  /* Responsividade do Menu */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      background: var(--primary-color);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem;
    }
  
    .menu.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }

  }

  /*Marquee letreiro*/
  .marquee {
    
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
    /*border: 1px solid rgba(0, 0, 0, .15);*/
    color: #ffffff;
    background-color:transparent ;/*var(--primary-color);*/
    overflow: hidden;
    position: relative;
    height: 50px;
    width: 100%;
    /* Full width of its parent */
    white-space: nowrap;
    
  }

  .marquee p {
      display: flex;
      align-items: center;
      gap: 0.5rem; 

    
      position: absolute;
      width: auto;
      height: 100%;
      margin: 0;
      line-height: 50px;
      text-align: center;
      /* Start off the right edge */
      transform: translateX(100%);
      /* Animate to the left */
      animation: scroll-left 30s linear infinite;
  }
  .marquee img {
    width: auto;
    height: 50%;
}

  @keyframes scroll-left {
      0% {
          transform: translateX(100%);
      }

      100% {
          transform: translateX(-100%);
      }
  }
  
  .carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide img {
    width: 100%;
    height: auto;
  }
 
  .slide.active {
    opacity: 1;
  }
  
  .carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .carousel-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--accent-color);
    /*box-shadow:#959494;*/
  }

  /*.hero-text h2, p {
    text-shadow: 0px 0px 6px #000;
    /*color: #e0db72;*/
  /*}*/

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 18px;
  }


  /* Responsividade do Carrossel */
  @media (max-width: 768px) {
    .carousel {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
      }
    .slide {
        width: 100%;
        height: 400px;
      }

    .slide img {
        width: 100%;
        height: auto;
        
      }

      

      .carousel-controls {
        
        top: 30%;
        width: 100%;
        /*transform: translateY(-50%);*/
      }
      .hero-text {
        top: 30%;
        left: 50%;
        
      }

  }

  @media (max-width: 524px) {
    
    .slide {
        width: 100%;
        height: 280px;
      }

    .carousel {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
      }

  }

  .buttonAgenda {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
  }

  .horario {
    border-radius: 6px;
    width: 11rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button-color);
    margin-top: 1rem;
    margin-bottom: 5px;
    
  }

  .horario:hover {
    cursor: pointer;
    background-color: var(--primary-color);
  }

  .horario a {
    text-decoration: none;
    color: var(--accent-color);
    
  }

  .buttonHorario {
    display: flex;
    text-align: end;
  }

  /*Pilares*/
  .linePilares {
    margin-top: 10px;
  }

  #pilares {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0rem 1rem 0rem;
    flex-wrap: wrap;
  }

  .imgPilares {
    margin: 0px 15px 0px 0px;
  }

  #pilaresText {
    letter-spacing:0.1em;
    font-weight:normal;
  }

  .spanPilares {
    font-size:25px;
  }

  .pilares-left {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pilares-right {
    padding-top: 5px;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    justify-content:space-between;
    font-size:14px;
    flex-wrap: wrap;
    margin: 0px 15px 0px 15px;

  }

  .text-Pilares {
    margin: 0px 15px 0px 15px;
  }
 
  /*Carrossel testemunhos*/

  
  
  #servicos, #depoimentos, #contato {
    padding: 1rem 1rem;
    text-align: center;
    background: var(--background-color);
  }

  .h2Service {
    margin-bottom: 10px;
  }
  
  .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .service-item {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    /*border-radius: 10px;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  .service-item img {
    width: 100%;
    border-radius: 8px;
  }

  @media (max-width: 450px){
    .service-item {
      width: 260px;
    }
  }

  /*Etapas do banho*/
  #etapas {
    align-items: center;
    text-align: center;
    padding: 30px;
  }

  #etapas h2 {
    padding-bottom: 30px;
  }

  .etapas-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-around;
    gap: 10px;
    flex-wrap: wrap;
  }

  .etapas-item {
    width: 8rem;
    height: 8rem;
    display: block;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }

  .etapas-item h3 {
    font-size: 15px;
  }

  .etapas-item img {
    width: 3rem;
    height: 3rem;
    margin-top: 10px;
  }




  
  /* Depoimentos Carrossel */
  #depoimentos {
    padding-top: 40px;
  }

  .testimonials-carousel {
    display: flex;
    overflow: hidden;
    gap: 1rem;
    scroll-behavior: smooth;
  }

  .testimonial-item{
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 100%;
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .testimonial-item img {
    width: 4rem; 
    height: 4rem; 
    border-radius: 50%;
  }
  /*
  .testimonial-item {
    min-width: 100%;
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }*/
  
  /* Depoimentos Carrossel */

.depoimentos-container {
    margin-top: 10px;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.testimonials-carousel {
   
    display: flex;
    flex-direction: column;
    animation: scroll 90s linear infinite;
}

.testimonial-item {
    
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3000px); /* Altura total dos itens */
    }
}

  

  /* Formulário Responsivo */
  #appointment-form {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #appointment-form input,
  #appointment-form select,
  #appointment-form textarea {
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
  }
  
  #appointment-form button {
    background: var(--button-color);
    color: var(--accent-color);
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #appointment-form button:hover {
    background: darken(var(--button-color), 10%);
    color: var(--primary-color);
    font-weight: bolder;
    border: solid 1px var(--primary-color);
  }

  @media (max-width: 768px){
     /* Formulário Responsivo */
  #appointment-form {
    max-width: 85%;
   
    gap: 1rem;
  }
  }
  
  /* Footer */
  footer {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 1rem 0;
    text-align: center;
  }

  .rota {
    width: 100%;
    height: 30px;
    
  }
  .btn-default {
    text-decoration: none;
    padding: 5px 50px 5px 50px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--button-color);
    color: var(--accent-color); 
    font-weight: bold;
    border: none;   
  }

  .rota .btn-default:hover {
    background-color: transparent;
    border: solid 1px var(--accent-color); 
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;  
  }

  /*inforRodape*/

  .infoRodape {
    display: flex;
    text-align: center;
    justify-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 2rem 0rem 2rem 0rem;
  }

  .logoRodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .whatsRodape {
    display:flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }

  .whatsRodape a {
    text-decoration: none;
    color: var(--accent-color);
  }

  .enderecoRodape {
    text-align: left;
    margin-top: 5px;
  }

  .socialRodape {
    display: flex;
    gap: 1rem;
  }

  .socialRodape i {
    color: var(--accent-color);
    font-size: 2em;
  }

  .horarioRodape {
    text-align: left;
  }

  .horarioRodape li {
    list-style: none;
  }

  .sobreRodape,
  .sobreRodape p {
    text-align: left;
  }

  .inFooter {
    width: 300px;
    /*border: 1px solid #fff;*/
  }
  
  
  footer .credits a {
    padding: 5rem 0rem 5rem 0rem;
    color: var(--accent-color);
    text-decoration: none;
  }

  footer .credits{
    padding: 2rem 0rem 2rem 0rem;
   
  }

  @media (max-width: 990px) {
    .contatoRodape {
      gap: 3rem;
      
    }
  }

    @media (max-width: 660px) {
    .inFooter {
      /*border: 1px solid #fff;*/
      padding: 2rem 0rem 2rem 0rem;
    }

    .modal .horario {
      display: none;
    }

  }
