@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');




:root {
  --cor-background:rgb(255, 255, 255) ;
  --cor-fonts: rgb(255, 255, 255) ;
  --cor-fonts-home: rgb(0, 0, 0); 
  --cor-principal: rgb(193, 111, 68) ;
  --cor-complementar: rgb(112, 63, 25);
  --cor-design: lab(94.36% 0.49 6.14);
}


body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--cor-background) ;
  min-height: 100vh;
}

.background {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;
  object-fit: cover;

  z-index: -1;
  pointer-events: none;

}

.background::after {
  content: "";
  position: fixed;
  inset: 0;
}


a {
  text-decoration: none;
  color: inherit;
}

header {
  position: relative;
  top: 0;
  width: 100%;

  background: rgba(255, 255, 255, 0.15);
  /* backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    
}

.nav-bar {
    max-width: 100%;
    max-height: 10dvw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.logo img {
  width:100%;
  max-width: 10dvw;
  min-width: 10dvw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  flex-shrink: 0;

}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-right: 2rem;
}

.nav-item {
    margin: 0 15px;
}

.nav-item {
    text-decoration: none;
    color: var(--cor-fonts);

}

.nav-item a {
  text-decoration: none;
  font-size: clamp(0.4rem, 0.5vw + 1rem, 1rem);
  font-weight: 900;
  color: var(--cor-complementar);
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;

}


.nav-item a:hover {
  color: var(--cor-design);
  transition: color 0.3s ease;
  font-style: initial;
  text-decoration-line: underline;

}

.nav-item a.ativo {
  color: var(--cor-design);
  text-decoration-line: underline;
  font-style: initial;
}

.login-button:hover{
  transform: translateY(0.2rem);
}


.login-button {
  max-width: 100%;
  width: 40%;
  background-color: var(--cor-principal);
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem 2rem;
  margin: 2rem;
  margin-left: 20rem;
  border-radius: 1rem;
  font-size: clamp(0.4rem, 0.5vw + 1rem, 1rem);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  

}

.login-button a {
  text-decoration: none;
  color: var(--cor-fonts);
  font-weight: 700;
}

.mobile-menu, .mobile-menu-icon{
  display: none;
}

.mobile-menu.open{
  display:block;
}

/* voltar ao topo */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--cor-principal); /* cor principal da marca */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  display: none; /* escondido até a rolagem */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

/* Hover e foco acessíveis */
.back-to-top:hover,
.back-to-top:focus {
  background-color: var(--cor-principal);
  outline: 2px solid #fff;
  outline-offset: 2px;
  transform: translateY(-3px);
}

/* Mostrar o botão quando o usuário rolar */
.back-to-top.show {
  display: flex;
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fixo:hover,
.whatsapp-fixo:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  outline: none;
}

/* Tooltip animado */
.whatsapp-fixo .tooltip {
  position: absolute;
  right: 70px;
  background-color: #25D366;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Aparece o texto ao passar o mouse */
.whatsapp-fixo:hover .tooltip,
.whatsapp-fixo:focus .tooltip {
  opacity: 1;
  transform: translateX(0);
}


.text-area-main {
  max-width: 1100px;
  padding: 3rem;
  font-family: var(--fonte-principal);
  display: flex;
  flex-direction: column;
  animation: fadeUp 1s ease forwards;
}

.titulo-main {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
  color: var(--cor-principal);
  opacity: 0;
  animation: slideIn 0.8s ease forwards;
  font-family: "Montserrat", sans-serif;
}

.subtitulo-main {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 400;
  margin: 0;
  opacity: 0;
  animation: slideIn 0.9s ease forwards;
  color: var(--cor-complementar);
}

.sobrenome {
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--cor-principal)
}

.text-inicio {
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 1300px;
  opacity: 0;
  animation: fadeUp 1.1s ease forwards;
}

.button-whatsapp {
  max-width: 500px;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;

  color: var(--cor-fonts);
  background: linear-gradient(
    135deg,
    var(--cor-principal),
    var(--cor-complementar)
  );

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.button-whatsapp:focus {
  outline: 3px solid var(--cor-acento);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.image-area-main {
  background-color: transparent;
  max-width: 90vh;
  height: auto;
  bottom: 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}




   
.text-area-contato {
      /* max-width: 500px; */
      text-align: left;
      margin-left: 1rem;
    }

.text-line {
  display: flex;
  flex-direction: column; /* coloca um em cima do outro */
  align-items: center; /* centraliza horizontalmente */
}

  .text-line h2{
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

   .text-line img {
  flex-shrink: 0;
}

/* GALERIA DOS SLIDES  */


.section-textline {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 40vh;
      text-align: center;
      padding: 2rem;
      background-color: var(--cor-principal); /* cor de fundo */
  
}

.titulo-vantagem {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--cor-design);
  font-family: "Montserrat", sans-serif;
}

.gallery {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1700px;
  margin: auto;
  flex-direction: row;
  justify-content: center;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  align-items: center;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s ease;
  will-change: transform;
}



/* CARD */



.card {
  flex: 0 0 auto;
  background: transparent;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  min-height: 260px;
  width: 220px;
}

.card img {
  height: 100px;
  object-fit: contain;
}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.6);
  color: white;
  border: none;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;

  pointer-events: auto;
  z-index: 10;
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-btn:focus {
  outline: 3px solid #fff;
}





   

    

    /* Área da imagem */
    .image-area img {
      max-width: 350px;
      width: 100%;
      height: auto;
      border: none;
      box-shadow: 0 0 20px #f4f2e2 ; /* sombra difusa */
      border-radius: 10px; /* arredonda os cantos */
    }

    /* .section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 40vh;
      text-align: center;
      padding: 2rem;
      background-color:  #B7B7A5 ; /* cor de fundo */
      /* color: #3a432d; cor do texto */
    

   

    .section h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .text-line {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
    } */

  

   /* inicial novo */

.container-block {
  position: relative;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  padding:1rem;
  overflow: hidden; /* para garantir que o background não vaze */
  margin: 0;
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* atrás de todo o conteúdo */
  overflow: hidden;
}

.background-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed; /* fixa no viewport dentro do bloco */
  top: 0;
  left: 0;
  opacity: 0.1; /* deixa o fundo suave */
}

.bloco-contato {
  display:flex;
  margin: 2rem;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  gap: 2rem;
  background-color: var(--cor-complementar); /* bloco branco */
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1; /* acima do background */
}

/* efeito de movimento ao passar o mouse */
.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}



/* CONTAINER */

.titulo-servicos {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;;
  color: var(--cor-principal);

  display: inline-block;
  padding: 0.8rem 2rem;

 background: linear-gradient(
  135deg,
  color-mix(in srgb, var(--cor-principal) 10%, white),
  transparent
);

  border: 1px solid rgba(0,0,0,0.12);
  border-left: 8px solid var(--cor-principal);
  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 10px 25px rgba(0,0,0,0.1);
}


.titulo-servicos-desktop{
  font-size: 3rem;
  margin-bottom: 1.8rem;
  font-family: "Montserrat", sans-serif;
  color: var(--cor-principal);

  display: inline-block;
  padding: 0.8rem 2rem;

 background: linear-gradient(
  135deg,
  color-mix(in srgb, var(--cor-principal) 10%, white),
  transparent
);

  border: 1px solid rgba(0,0,0,0.12);
  border-left: 8px solid var(--cor-principal);
  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 10px 25px rgba(0,0,0,0.1);
}



.servicos {
  padding: 1rem;
  text-align: center;
}

/* BOTÃO (mobile) */
.servicos-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 2rem;
}

/* GRID */
.servicos-grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.title-card {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--cor-complementar);
  font-style: underline;
}

/* CARD */
.item-card {
  max-width: 300px;
  padding: 1.8rem;
  border-radius: 20px;
  background: var(--cor-design);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}


/* animação base */
@keyframes fadeUpCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .item-card {
    opacity: 0;
    animation: fadeUpCard 0.6s ease forwards;
  }

  .item-card:nth-child(1) { animation-delay: 0.1s; }
  .item-card:nth-child(2) { animation-delay: 0.2s; }
  .item-card:nth-child(3) { animation-delay: 0.3s; }
  .item-card:nth-child(4) { animation-delay: 0.4s; }
  .item-card:nth-child(5) { animation-delay: 0.5s; }
  .item-card:nth-child(6) { animation-delay: 0.6s; }
  .item-card:nth-child(7) { animation-delay: 0.7s; }
}

@media (min-width: 1024px) {
  .item-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .item-card:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
  }
}

.item-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
}

.item-card p {
  font-size: 1.3rem;
  line-height: 1.5;
  opacity: 0.9;
}


/* DESKTOP GRID */
@media (min-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* MOBILE COLLAPSE */
@media (max-width: 767px) {
  .servicos-toggle {
    display: inline-block;
  }

  .servicos-grid {
    display: none;
    grid-template-columns: 1fr;
  }

  .servicos.open .servicos-grid {
    display: grid;
  }
}



.cta-proposta {
  padding: 4rem 1.5rem;
  background: var(--cor-principal);
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2.5rem;
}

/* HEADER */
.cta-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  font-size: 1.5rem;
  max-width: 1900px;
  opacity: 0.9;
}

/* BENEFÍCIOS */
.cta-beneficios ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
}

.cta-beneficios li {
  list-style: disc;
  font-size: 1.5rem;
}

/* TEXTO */
.cta-detalhes p {
  max-width: 1900px;
  line-height: 1.6;
  font-size: 1.5rem;
}

/* LISTA DESCRITIVA */
.cta-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  font-size: 1.5rem;
}

.cta-lista dt {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cta-lista dd {
  margin: 0;
  opacity: 0.85;
}


.button-whatsapp-solucao {
  max-width: 500px;
  margin-top: 1.2rem;
  margin: 2.5rem auto 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  

  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;

  color: var(--cor-fonts);
  background: linear-gradient(
    135deg,
    var(--cor-principal),
    var(--cor-complementar)
  );

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button-whatsapp-solucao:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.button-whatsapp-solucao:focus {
  outline: 3px solid var(--cor-acento);
}






.faq {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.faq-item p{
  font-size: 1.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  padding-right: 1.5rem;
}

#faq-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--cor-principal);
}

/* SETA */
.faq-question::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

/* QUANDO ABERTO */
.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  margin-top: 0.5rem;
}

.faq-answer p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #444;
}









 

/* Container centralizado */
.contato-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: var(--cor-principal);
}

/* Informações de contato */

.titulo-contato {
  
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--cor-principal);
}


.image-area-contato {
  max-width: 70vh;
  height: auto;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
    
}

.subheadline {
   color: var(--cor-design);
    font-size: 1.2rem;  
}
/* Ícones */
.contato-info i {
  color: var(--cor-principal);
  font-size: 1.2rem;
}

/* Link do WhatsApp */
.contato-info a {
  text-decoration: none;
  color: var(--cor-principal);
  font-weight: bold;
}

.contato-info a:hover {
  text-decoration: underline;
}

/* Botão WhatsApp */
.btn-whatsapp {
  display: inline-block;
  background-color: var(--cor-complementar);
  color: var(--cor-fonts);
  padding: 12px 24px;
  border-radius: 25px;
  font-family: sans-serif;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  margin-bottom: 20px;
}

.btn-whatsapp:hover {
  background-color: var(--cor-principal);
}




.footer {
  background-color: var(--cor-principal);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column; /* Mantém o copy embaixo */
  align-items: center;
  
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 25vh;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 3rem;
  color: var(--cor-fonts);
  transition: color 0.3s;
}

.footer-social a:hover,
.footer-social a:focus {
  color: var(--cor-fonts-home);
  outline: none;
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--cor-complementar);
  margin-top: 0.5rem;
}

/* pagina sobre */

.section-sobre {
  padding: 4rem 1rem;
  background-color: transparent;
}

.container-sobre {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.sobre-img {
  width: 100%;
  max-width: 500px;
  justify-self: center;
  border-radius: 12px;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sobre-content {
  line-height: 1.7;
  font-size: 1.3rem;
}

.sobre-titulo {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--cor-principal);
  font-family: "Montserrat", sans-serif;
}

.sobre-subtitulo {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: var(--cor-principal);
}

.sobre-texto {
  margin-top: 1.2rem;
  text-align: justify;
  color: var(--cor-fonts-home);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ,sans-serif;
}

.titulo-formacao {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--cor-principal)
}

ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

li {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.container-sobre > div:last-child {
  grid-column: 1 / -1;
  margin-top: 3rem;
  background-color: var(--cor-principal);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.p-contato {
  font-size: 1.5rem;
  color: var(--cor-design);
}

.button-sobre-contratar {
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cor-principal), var(--cor-complementar));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-sobre-contratar:hover,
.button-sobre-contratar:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
  outline: none;
}

@media (max-width: 768px) {
  .container-sobre {
    grid-template-columns: 1fr;
  }

  .sobre-img {
    justify-self: center;
    max-width: 280px;
  }

  .sobre-texto {
    text-align: left;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  max-width: 480px;
  width: calc(100% - 32px);

  background: var(--cor-principal);
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 0.85rem;
  z-index: 9999;
}

.cookie-banner a {
  color: var(--cor-complementar);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
}

#cookie-accept {
  background: var(--cor-complementar);
  color: #fff;
}

#cookie-decline {
  background: var(--cor-principal);
  color: #ccc;
  border: 1px solid #444;
}

/* Mobile */
@media (max-width: 480px) {
  .cookie-actions {
    justify-content: center;
  }
}
