@font-face {
    font-family: 'excon';
    src: url('./fonts/Excon-Thin.otf');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'excon';
    src: url('./fonts/Excon-Light.otf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'excon';
    src: url('./fonts/Excon-Regular.otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'excon';
    src: url('./fonts/Excon-Medium.otf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'excon';
    src: url('./fonts/Excon-Bold.otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'excon';
    src: url('./fonts/Excon-Black.otf');
    font-weight: bolder;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'excon';
}

body {
    background: #ffffff;
}

body::-webkit-scrollbar {
    background: none;
    width: 6px;
}

body::-webkit-scrollbar-thumb {
    background: #00AF66;
    border-radius: 50px;
}

body::-moz-scrollbar {
    background: none;
    width: 6px;
}

body::-moz-scrollbar-thumb {
    background: #00AF66;
    border-radius: 50px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

.sec1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 70px;
    box-sizing: border-box;
    position: relative;
}

.sec1 .banner {
    width: 100%;
    position: absolute;
    height: 100%;
    padding: 40px 70px;
    box-sizing: border-box;
}

.sec1 section {
    /* background: url('../themes/images/banner.png') no-repeat; */
    background-size: cover;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 1350px;
    z-index: 1;
    position: relative;
}

.sec1 section img {
    width: 100%;
    max-width: 240px;
}

.sec1 section h1 {
    color: #00AF66;
    font-size: 60px;
    font-weight: 700;
    margin-top: 50px;
    max-width: 595px;
}

.sec1 section p {
    color: #002112;
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    max-width: 555px;
}

.sec1 section form {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-sizing: border-box;
    background: #00211240;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    margin: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sec1 section form label {
    font-size: 20px;
    color: #ffffff;
    font-weight: 350;
    display: inline-block;
    width: 100%;
}

.sec1 section form input {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #42506666;
    padding: 13px;
    font-size: 17px;
    color: #000000;
    font-weight: 350;
    width: 100%;
    box-sizing: border-box;
}

.sec1 section form label span {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.sec1 section form button {
    background: #00AF66;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 15px;
    width: 100%;
    padding: 20px 0px;
    margin-top: 15px;
    cursor: pointer;
    transition: all .5s;
}

.sec1 section form button:hover {
    transform: scale(1.05) translateY(-10px);
    filter: brightness(1.3);
}

.sec1 section form button i {
    margin-left: 10px;
}

.sec2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sec2 h1 {
    color: #00AF66;
    font-size: 60px;
    font-weight: 700;
    margin-top: 50px;
}

.sec2 section {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    margin-top: 30px;
    padding: 0px 90px;
    box-sizing: border-box;
    gap: 150px;
}

.sec2 section img {
    width: 100%;
    max-width: 490px;
    flex: 1;
}

.sec2 section div {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 65px 0px;
    flex: 2;
}

.sec2 section div div {
    max-width: 295px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    text-align: center;
    gap: initial;
    flex: initial;
}

.sec2 section div div h2 {
    margin-top: 20px;
}

.sec2 section div div p {
    font-weight: 350;
    margin-top: 10px;
}

.sec2 section div div img {
    width: 100%;
    max-width: 80px;
}

@media (max-width: 1600px) {
    .sec1 section form {
        margin: 50px;
    }
}

@media (max-width: 1350px) {
    .sec1 section form {
        max-width: 400px;
        margin: 50px;
    }
}

@media (max-width: 1100px) {
    .sec1 .banner {
        display: none;
    }

    .sec1 section {
        display: block;
    }

    .sec1 section form {
        max-width: 500px;
        margin: initial;
        margin-top: 50px;
    }
}

@media (max-width: 550px) {
    .sec1 {
        padding: 40px 30px;
    }

    .sec1 section h1 {
        font-size: 40px;
    }

    .sec2 h1 {
        font-size: 40px;
        padding: 0px 30px;
        text-align: center;
    }

    .sec2 section {
        padding: 0px 30px;
        justify-content: center;
    }

    .sec2 section div {
        justify-content: center;
    }
}

.sec3 {
    width: 100%;
    padding: 60px 70px;
    box-sizing: border-box;
    background: #F5F5F5;
}

.sec3 h1 {
    color: #00AF66;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.sec3 {
    margin-top: 90px;
}

.sec3 section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.sec3 section div {
    max-width: 400px;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 20px #00000010;
    text-align: center;
    align-items: center;
}

.sec3 section h2 {
    font-size: 24px;
    color: #002112;
    margin-bottom: 10px;
}

.sec3 section p,
.sec3 section ul {
    font-size: 18px;
    font-weight: 350;
    color: #333333;
    line-height: 1.5;
}

.sec3 section ul {
    padding-left: 20px;
}

.sec3 section ul li {
    margin-bottom: 10px;
}

.sec6 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.sec6 section {
    background-color: #00AF66;
    border-radius: 25px;
    padding: 60px 40px;
    box-sizing: border-box;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}


.sec6 h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sec6 p {
    font-size: 18px;
    font-weight: 350;
    margin-bottom: 30px;
}

.sec6 a {
    background: #ffffff;
    color: #00AF66;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s ease-in-out;
    display: inline-block;
}

.sec6 a:hover {
    background: #f2f2f2;
    transform: scale(1.05);
}


.faq-accordion {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion h1 {
    color: #00AF66;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: #F0F0F0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #002112;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-item.active .faq-question span {
    content: "−";
}

.faq-question span {
    font-size: 24px;
    color: #00AF66;
    transition: transform 0.3s;
}

.faq-answer p {
    font-weight: 200;
}





.sec-destinos {
    padding: 160px 30px;
    text-align: center;
}

.sec-destinos h1 {
    font-size: 60px;
    font-weight: 700;
    color: #00AF66;
    margin-bottom: 30px;
}

.destino-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.destino-slider::-webkit-scrollbar {
    display: none;
}

.card {
    scroll-snap-align: start;
    min-width: 250px; 
    height: 200px;    
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ddd;
    position: relative;
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 33, 18, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 0 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}


@media (max-width: 550px) {
    .sec3 h1 {
        font-size: 40px;
        padding: 0 20px;
        text-align: center;
        word-break: break-word;
        line-height: 1.3;
    }
}



@media (max-width: 550px) {
    .sec3 section {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Reduz o espaço entre os cards */
    }

    .sec3 section div {
        padding: 30px 20px; /* Diminui o espaço interno */
        margin: 0 auto;
    }

    .sec3 section p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 550px) {
    .sec3 section div {
        width: 100%;
        max-width: 95%; 
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .sec3  {
        padding: 40px 40px;
    }
}

.destino-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    /* NOVO: centraliza e controla largura */
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    justify-content: flex-start;
}

/* FOOTER */
.rodape {
    background: #002112;
    color: #ffffff;
    padding: 40px 70px 20px;
    border-radius: 20px;
    box-sizing: border-box;
    margin: 40px auto 0;
    max-width: 1200px;
    margin-bottom: 70px;
}

.rodape-topo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.rodape-topo .col {
    flex: 1;
    min-width: 200px;
}

.rodape-topo .logo img {
    max-width: 140px;
}

.rodape-topo p {
    font-size: 15px;
    line-height: 1.6;
}

.rodape-baixo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.rodape-baixo a, .rodape-baixo p {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.rodape-baixo a:hover {
    text-decoration: underline;
}

.links-esquerda img {
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.logo-completa {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-completa img {
    width: 50px;
    height: auto;
}

.logo-texto p {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
}


@media (max-width: 768px) {
    .logo-completa {
        justify-content: center;
    }
}

.links-esquerda {
    display: flex;
    align-items: center;
    gap: 12px;
}

.links-esquerda img {
    width: 24px;
    height: 24px;
}

.links-esquerda a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
}

.col p {
    font-weight: 200;
}

/* CSS DO POP-UP */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-form {
   background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  max-width: 500px;
  width: 100%;
  max-height: 90vh; /* IMPORTANTE: limita altura do pop-up */
  overflow-y: auto;  /* Ativa scroll interno */
  padding: 30px;
  position: relative;
  text-align: left;
  box-sizing: border-box;
}

.popup-form h2 {
    color: #00AF66;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

.popup-form input,
.popup-form textarea,
.popup-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.popup-form label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.popup-form button {
    width: 100%;
    padding: 14px;
    background: #00AF66;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-form button:hover {
    background: #008f54;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
}

.entrada-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .entrada-conteudo {
    flex: 1;
    max-width: 500px;
    justify-content: flex-end; /* Alinha a imagem à direita */
  }
  
  .entrada-logo {
    width: 240px;
    margin-bottom: 20px;
  }
  
  .entrada-titulo {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #00AF66;
  }
  
  .destaque-verde {
    color: #00AF66;
  }
  
  .entrada-subtitulo {
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0 30px;
    color: #111;
  }
  
  .bloco-form-r83x {
    background: #00AF66;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .rotulo-r83x {
    font-weight: bold;
    font-size: 14px;
    color: white;
  }
  
  .grupo-nome-r83x {
    display: flex;
    gap: 10px;
  }
  
  .grupo-nome-r83x input {
    flex: 1;
  }
  
  .grupo-tel-r83x {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .ddi-r83x {
    background: white;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 600;
    color: #333;
  }
  
  .campo-r83x {
    padding: 12px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    width: 90%;
  }
  
  .botao-enviar-r83x {
    background: white;
    color: #00AF66;
    font-weight: 700;
    font-size: 14px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .botao-enviar-r83x:hover {
    background: #f3f3f3;
  }
  
  .entrada-imagem {
    flex: 1;
    min-width: 300px;
  }
  
  .entrada-imagem img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 650px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .entrada-wrap {
      flex-direction: column;
      padding: 40px 30px;
    }
  
    .entrada-conteudo {
      max-width: 100%;
    }
  
    .entrada-imagem img {
      border-radius: 12px;
      max-height: 400px;
    }
  }

  /* CSS DO CARROSSEL */
  .entrada-carrossel {
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: 0;
  }
  
  @media (max-width: 768px) {
    .entrada-carrossel {
      width: 100%;
      margin: 30px auto 0;
    }
  }
  

  /* SETAS DO CARROSSEL */
  .seta-esquerda,
.seta-direita {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00AF66;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10;
}

.seta-esquerda {
  left: 10px;
}

.seta-direita {
  right: 10px;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.botao-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
  }
  
  .botao-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
  }
  
  /* SESSÃO DEPOIMENTOS */
  /* === Container da seção === */
.secao-depoimentos {
    padding: 60px 20px;
    text-align: center;
  }
  
  .secao-depoimentos h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00B26F;
  }
  
  .secao-depoimentos h2 span {
    color: #00B26F; /* Verde da marca */
  }
  
  /* === Slider do Tiny === */
  .tns-outer {
    position: relative;
    margin-top: 40px;
  }
  
  .my-slider {
    display: flex;
    gap: 20px;
  }
  
  /* === Card do depoimento === */
  .card-depoimento {
    background-color: #00B26F;
    color: #fff;
    border-radius: 20px;
    padding: 25px;
    min-height: 180px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card-depoimento.dark {
    background-color: #001F13;
  }
  
  .card-depoimento p {
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
  }
  
  .card-depoimento .autor {
    margin-top: 15px;
    font-weight: bold;
  }
  
  /* === Controles personalizados === */
  .tns-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .tns-controls button {
    background-color: #00AEEF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .tns-controls button:hover {
    background-color: #007BA7;
  }
  
  /* === Responsivo === */
  @media (max-width: 768px) {
    .card-depoimento {
      padding: 18px;
    }
  }
  
  @media (max-width: 480px) {
    .secao-depoimentos h2 {
      font-size: 2.4rem;
    }
  
    .card-depoimento {
      font-size: 0.9rem;
    }
  
    .tns-controls button {
      font-size: 1rem;
      padding: 6px 10px;
    }
  }
  
/* CARROSSEL DE CIMA */
.carrossel-imagem-direita {
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    padding: 0 40px; /* Deixe espaço interno para as setas aparecerem */
  }
  
  .my-slider-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .my-slider-img {
    border-radius: 20px;
  }
  
  /* Estilo das setas */
  .tns-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
  }
  
  .tns-controls button {
    background-color: #00AF66;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20; /* Garante que fiquem acima */
  }
  
  .tns-controls button:first-child {
    margin-left: -20px; /* Puxe um pouco para dentro, se estiver fora da borda */
  }
  
  .tns-controls button:last-child {
    margin-right: -20px; /* Mesma coisa para a direita */
  }
  /* Font Awesome ícones */
.tns-controls button i {
    font-size: 16px;
  }
  
  /* Responsivo */
  @media (max-width: 600px) {
    .carrossel-imagem-direita {
      max-width: 100%;
    }
  
    .tns-controls button {
      width: 30px;
      height: 30px;
      font-size: 14px;
    }
  }

  .h1 {
    color: #00AF66;
    font-weight: 700;
    margin-top: 50px;
  }

  .grupo-tel-r83x {
    display: flex;
    gap: 10px;
  }
  
  .ddi-r83x {
    width: 80px;
    height: 50px;
    border: none;
    border-radius: 8px;
    padding: 0 10px;
    font-weight: 600;
    font-family: inherit;
    font-size: 15px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .ddi-r83x:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00AF66;
  }

  @media (max-width: 600px) {
    .sec-destinos h1 {
      font-size: 40px;
    }

    .sec-destinos {
      padding: 90px 30px;
    }

    .faq-accordion h1 {
      font-size: 40px;
    }
  }

footer .rodape-baixo .links-centro a {
    font-family: 'excon';
    font-size: 16px;
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

footer .rodape-baixo .links-centro a:hover {
    color: #FF6009;
}

footer .rodape-baixo .links-centro a i {
    font-size: 16px;
}

/* Estilo base */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background-color: #ffffff;
  color: #333333;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-family: 'productsans', sans-serif;
  font-size: 16px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-popup a {
  color: #FF6009;
  text-decoration: underline;
}

.cookie-popup .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-popup button {
  background-color: #FF6009;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'productsansbold';
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
  background-color: #ffa166;
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
  .cookie-popup {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .cookie-popup p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cookie-popup button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }

  .cookie-popup .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}