@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Cocon'; 
    src: url('fonts/CoconRegularFont.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

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

html, body{
    max-width: 1600px;
    font-size: 16px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

header{
    width: 100%;
}

.header-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.bandeira{
    width: 30%;
    margin-left: 4.5rem;
}

.bandeira-img{
    width: 12.81rem;
    height: 11.68rem;
}

.logo{
    width:80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4.5rem;
    gap: 12rem;
}

.logo-img{
    width: 50%;
    height: auto;
}

.botao{
    margin-top: 10rem;
    margin-bottom: -3rem;
    text-decoration: none;
    background-color: #FE0000;
    color: #FCD53A;
    padding: 0.5rem 1.5rem;
    border-radius: 1.2rem;
    box-shadow: 4px 6px 0 #4EB9EC;
    border:  2px solid #4EB9EC;
    font-family: 'Roboto';
    font-weight: 500;
}

.carrossel{
    width: 100%;
    padding: 6rem 1rem;
}

.carrossel-img{
    width: 97vw;
    height: 90vh;
}

.produtos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .carrossel-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid red;
    border-radius: 1rem;
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  
  /* Botões laterais */
  .btn-nav {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: #FE0000;
  }
  
  .btn-nav:hover {
    color: #4EB9EC;
  }
  
  /* Card fixo */
  .card-item {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
  }
  
  /* Todas as imagens empilhadas uma sobre a outra */
  .slide-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 0.8rem;
  }
  
  .card-img.active {
    opacity: 1;
  }

  .opiniao{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem;
    text-align: center;
  }

  .titulo-h2{
    font-family: 'Cocon';
    font-size: 3rem;
    font-weight: 800;
    color: #FE0000;
    margin-bottom: 5rem;
  }

  .cards-feedback {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }

  .card-feedback {
    width: 260px;
    min-height: 320px;
    background-color: #FFFFF4;
    border: 4px solid #FE0000;
    border-radius: 1rem;
    box-shadow: 8px 8px 0 #4EB9EC;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .card-feedback:hover {
    transform: translateY(-6px);
    box-shadow: 4px 4px 0 #4EB9EC;
  }

  .estrelas {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
  }
  
  .img-estrela {
    width: 1.4rem;
    height: 1.4rem;
  }

  .texto-feedback,
  .card-feedback p {
    width: 100%;
    color: #7A7A7A;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .franqueado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: auto;
  }
  
  .img-franqueado {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
  }
  
  .franqueado h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #4EB9EC; 
    font-size: 1rem;
  }

  .influencers{
    width: 100%;
  }

  .influencers-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12rem
  }

  .influencer-left{
    width: 50%;
  }

  .influencer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
  }
  
  .titulo-influencer{
    font-family: 'Cocon';
    font-size: 3.12rem;
    font-weight: 600;
    color: #FE0000;
    margin-bottom: 2rem;
  }

  .texto-influencers{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #7A7A7A;
  }

  .carousel-influencers {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
  }

  .cards-influencers {
    border: 6px solid #FE0000;
    box-shadow: 8px 8px 0 #4EB9EC;
    border-radius: 1rem;
    background-color: white;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
  }

  .influencer-slides-container {
    display: flex;
    gap: 0.5rem;
    flex: 1;
  }

  .influencer-slide {
    flex: 0 0 calc(33.333% - 0.33rem);
    height: 200px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .influencer-slide.active {
    opacity: 1;
  }


  .influencer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot.active {
    background-color: #333;
  }

  .dot:hover {
    background-color: #666;
  }

  .quem-somos{
    width: 100%;
    margin-top: -2rem;
  }

  .quem-somos-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12rem
  }

  .quem-somos-left{
    width: 50%;
    margin-right: 2rem;
  }

  .quem-somos-right{
    width: 50%;
    padding-top: 10rem;
  }
  
  .titulo-quem-somos{
    font-family: 'Cocon';
    font-size: 4rem;
    font-weight: 600;
    color: #FE0000;
    margin-bottom: 2rem;
  }
  
  .img-quem-somos{
    width: 110%;
    height: 110%;
    object-fit: cover;
    border-radius: 1rem;
    padding-right: 5rem;
  }

  .texto-quem-somos{
    margin-top: 2rem;
    color: #7A7A7A;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .recursos-section{
    width: 100%;
    padding: 5rem 2rem;
    margin-top: 3rem;
    background-color: white;
  }

  .recursos-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .recursos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .recursos-item{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }

  .recursos-item svg{
    width: 40px;
    height: 40px;
    fill: #FE0000;
    flex-shrink: 0;
  }

  .recursos-item h2{
    font-family: 'Cocon';
    font-size: 1.8rem;
    font-weight: 700;
    color: #FE0000;
    margin: 0;
    line-height: 1.3;
  }

  .recursos > p{
    color: #7A7A7A;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }
  
  @media (max-width: 390px) {

    html,
    body {
      font-size: 14px;
    }
  
    .header-container {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
  
    .bandeira,
    .bandeira-img {
      display: none;
    }
  
    .logo {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      gap: 0;
    }
  
    .logo-img {
      width: 100%;
      max-width: 300px;
    }
  
    .botao {
      margin-top: 2rem;
      margin-bottom: 1rem;
      padding: 0.8rem 2rem;
      font-size: 1.5rem;
    }
  
    .carrossel {
      padding: 2rem 0.5rem;
    }
  
    .carrossel-img {
      width: 83%;
      height: auto;
    }
  
     .produtos {
       flex-direction: row;
       flex-wrap: wrap;
       gap: 0.5rem;
       justify-content: center;
     }
   
     .carrossel-cards {
       width: calc(50% - 0.25rem);
       max-width: 150px;
       padding: 0.3rem;
     }
  
    .card-item {
      width: 150px;
      height: 150px;
    }
  
    .btn-nav {
      font-size: 1.5rem;
    }
  
    .opiniao {
      padding: 4rem 0.5rem;
    }
  
    .titulo-h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
  
    .cards-feedback {
      gap: 1rem;
      padding: 1rem;
    }
  
    .card-feedback {
      width: 100%;
      max-width: 250px;
      min-height: 200px;
      padding: 1rem;
      gap: 1rem;
    }
  
    .img-estrela {
      width: 1.2rem;
      height: 1.2rem;
    }
  
    .texto-feedback,
    .card-feedback p {
      font-size: 1rem;
    }
  
    .img-franqueado {
      width: 2.5rem;
      height: 2.5rem;
    }
  
    .franqueado h3 {
      font-size: 0.9rem;
    }
  
    .influencers-container {
      flex-direction: column;
      padding: 0 1rem;
      gap: 2rem;
    }
  
    .influencer-left {
      width: 100%;
    }
  
    .influencer-right {
      width: 100%;
      margin-left: 0;
    }
  
    .titulo-influencer {
      font-size: 2rem;
      text-align: center;
    }
  
    .texto-influencers {
      font-size: 1rem;
      text-align: center;
    }
  
    .carousel-influencers {
      max-width: 100%;
    }
  
    .cards-influencers {
      max-width: 100%;
      padding: 0.3rem;
    }
  
     .influencer-slide {
       height: 200px;
       opacity: 0;
       transition: opacity 0.2s ease-in-out;
     }

     .influencer-slide.active {
       opacity: 1;
     }

     .influencer-img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       border-radius: 0.5rem;
     }
  
    .quem-somos-container {
      flex-direction: column-reverse;
      padding: 0 1rem;
      gap: 2rem;
    }
  
    .quem-somos-left {
      width: 100%;
      margin-right: 0;
      order: 2;
    }
  
    .quem-somos-right {
      width: 100%;
      padding-top: 0;
      order: 1;
    }
  
    .titulo-quem-somos {
      font-size: 2.5rem;
      text-align: center;
    }
  
    .img-quem-somos {
      width: 100%;
      height: auto;
      padding-right: 0;
    }
  
    .texto-quem-somos {
      font-size: 1rem;
      text-align: center;
    }
  
    .recursos-section {
      padding: 3rem 1rem;
    }
  
    .recursos-container {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .recursos-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
  
    .recursos-item svg {
      width: 35px;
      height: 35px;
    }
  
    .recursos-item h2 {
      font-size: 1.5rem;
    }
  
    .recursos>p {
      font-size: 0.9rem;
    }
  }

/* Tablet - até 768px */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }

  .header-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .bandeira, .bandeira-img {
    display: none;
  }

  .logo {
    width: 100%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .logo-img {
    width: 100%;
    max-width: 300px;
  }

  .botao {
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
  }

  .carrossel {
    padding: 1rem 1rem;
  }

  .carrossel-img {
    width: 85%;
    height: auto;
  }

  .produtos {
    padding: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .carrossel-cards {
    width: calc(50% - 0.5rem);
    max-width: 150px;
    padding: 0.4rem;
  }

  .card-item {
    width: 130px;
    height: 130px;
  }

  .btn-nav {
    font-size: 1.8rem;
  }

  .opiniao {
    padding: 4rem 1rem;
  }

  .titulo-h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .cards-feedback {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .card-feedback {
    width: 100%;
    max-width: 320px;
    min-height: 300px;
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .img-estrela {
    width: 1.3rem;
    height: 1.3rem;
  }

  .texto-feedback,
  .card-feedback p {
    font-size: 1.1rem;
  }

  .img-franqueado {
    width: 2.8rem;
    height: 2.8rem;
  }

  .franqueado h3 {
    font-size: 1rem;
  }

  .influencers-container {
    flex-direction: column;
    padding: 0 2rem;
  }

  .influencer-left {
    width: 100%;
  }

  .influencer-right {
    width: 100%;
    margin-left: 0;
  }

  .titulo-influencer {
    font-size: 2.5rem;
    text-align: center;
  }

  .texto-influencers {
    font-size: 1.1rem;
    text-align: center;
  }

  .carousel-influencers {
    max-width: 100%;
  }

  .cards-influencers {
    max-width: 100%;
    padding: 0.4rem;
  }

  .influencer-slides-container {
    position: relative;
    width: 100%;
    height: 250px;
  }

  .influencer-slide {
    height: 200px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }

  .influencer-slide.active {
    opacity: 1;
  }

  .influencer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }

  .quem-somos-container {
    flex-direction: column-reverse;
    padding: 0 2rem;
    gap: 2.5rem;
  }

  .quem-somos-left {
    width: 100%;
    margin-right: 0;
    order: 2;
  }

  .quem-somos-right {
    width: 100%;
    padding-top: 0;
    order: 1;
  }

  .titulo-quem-somos {
    font-size: 3rem;
    text-align: center;
  }

  .img-quem-somos {
    width: 100%;
    height: auto;
    padding-right: 0;
  }

  .texto-quem-somos {
    font-size: 1.1rem;
    text-align: center;
  }

  .recursos-section {
    padding: 4rem 1.5rem;
  }

  .recursos-container {
    flex-direction: column;
    gap: 2rem;
  }

  .recursos-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .recursos-item svg {
    width: 40px;
    height: 40px;
  }

  .recursos-item h2 {
    font-size: 1.7rem;
  }

  .recursos > p {
    font-size: 1rem;
  }
}

/* Desktop médio - até 1440px */
@media (max-width: 1440px) {
  .influencer-slides-container {
    display: flex;
    gap: 0.5rem;
    flex: 1;
  }

  .influencer-slide {
    flex: 0 0 calc(33.333% - 0.33rem);
    height: 200px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .influencer-slide.active {
    opacity: 1;
  }

  .influencer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }
}

/* Desktop grande - min-width: 1600px */
@media (min-width: 1600px) {
  html, body {
    max-width: 1600px;
    margin: 0 auto;
  }

  .header-container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .carrossel {
    max-width: 1600px;
    margin: 0 auto;
  }

  .opiniao {
    max-width: 1600px;
    margin: 0 auto;
  }

  .influencers-container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .quem-somos-container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .recursos-section {
    max-width: 1600px;
    margin: 0 auto;
  }
}

