:root {
  --cor-primary: #B10F20;
  --cor-h2: #A50008;
  --cor-white: white;
  --cor-black: black;
  --cor-second: #FFB700;
  --cor-faq: #FCA84B;
  --cor-card: #860000;

  --fonte-title: "Protest Strike", Impact, "Arial Black", sans-serif;
  --fonte-padrao: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
}

.conteudo-principal {
  flex: 1;
}

a {
  text-decoration: none;
  color: var(--cor-white);
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-padrao);
  font-weight: 400;
  color: var(--cor-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

picture img {
  display: block;
}

h2 {
  font-size: 2.875rem;
  font-family: var(--fonte-title);
  color: var(--cor-h2);
}

h4 {
  font-size: 1.75rem;
  font-family: var(--fonte-padrao);
  color: var(--cor-black);
}

.container-w {
  width: 1280px;
  padding: 0 107px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* #region FONT*/
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Protest Strike';
  src: url('../fonts/ProtestStrike-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
/* #endregion */

/* EFEITO */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.8s;
}

.delay-4 {
  transition-delay: 1.0s;
}


/* #region HEADER red-line*/
.red-line {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--cor-primary);
}

.red-line-content {
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.red-line-content p {
  font-weight: 700;
  font-size: clamp(8px, 0.375rem + 1vw, 14px);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--cor-white);
  padding-right: 5px;
  animation: blink 0.8s step-end infinite;
  max-width: 100%;
  box-sizing: border-box;
}

.cliente-area {
  display: flex;
  gap: 5px;
}

.cliente-area a {
  font-size: 0.75rem;
}

.cliente-area a:nth-of-type(1) {
  margin-right: 12px;
}

/* Cursor piscando */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* #endregion fim HEADER red-line */

/* #region MENU */
.menu {
  /* width: 100vw; */
  display: flex;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 9px 0px rgba(0, 0, 0, 0.485);
}

.menu-content {
  height: 60px;
  font-size: 0.813rem;
  background-color: var(--cor-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  width: 138px;
  height: 32px;
}

.menu nav a {
  color: var(--cor-black);
  position: relative;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu nav a::after {
  
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cor-h2), #ff6a8d);
  border-radius: 2px;
  transition: width 0.5s ease;
  box-shadow: 0 0 6px rgba(241, 34, 94, 0.4);
}

.menu nav a:hover {
  font-weight: 700;
  color: #CB0000;
}

.menu nav a:hover::after {
  width: 100%;
}

/* NAV DESKTOP */
nav ul {
  display: flex;
  align-items: center;
  gap: 29px;
}

#btn-assine {
  padding: 8px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--cor-white);
  background: linear-gradient(45deg, #CB0000 20%, #650000 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(203, 0, 0, 0.6);
}

#btn-assine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  z-index: 2;
  transition: left 0.5s ease;
}

#btn-assine:hover::before {
  left: 125%;
}

#btn-assine:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(203, 0, 0, 0.8), 0 0 30px rgba(203, 0, 0, 0.4);
  background: linear-gradient(45deg, #650000, #CB0000);
}

/* #endregion fim MENU*/

/* #region MENU HAMBURGUER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--cor-card);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

/* ANIMAÇÃO BOTÃO HAMBURGUER */
.menu.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1040;
}

.menu.active .overlay {
  opacity: 1;
  visibility: visible;
}

/* #endregion fim MENU HAMBURGUER*/

/* #region HEADER BANNER */
.banner {
  position: relative;
  width: 100%;
  background: linear-gradient(45deg, #f1225e 25%, #591a73 60%, #072154);
  overflow: hidden;
}

.banner-carousel {
  position: relative;
  height: auto;
}

.banner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 0 0 107px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 15vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.banner-container.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.banner-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.left-img {
  object-fit: contain;
}

.right-img {
  object-fit: contain;
  align-self: flex-end;
  margin-left: 2rem;
}

/* Bolinhas de navegação */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: var(--cor-white);
}
/* #endregion fim HEADER BANNER */

/* #region SEÇÃO PLANOS */
.planos-content {
  max-width: 1280px;
  padding: 170px 95px;
  margin: 0 auto;
  text-align: center;
}

.planos-content h4 {
  margin: 4px 0 75px;
}

/* Carrossel  */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 320 / 718;
  margin: 0 auto;
  display: block;
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--cor-white);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  padding: 10px;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.image-wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.click-area {
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}

.click-area.top {
  top: 0;
  height: 68%;
}

.click-area.bottom {
  bottom: 0;
  height: 18%;
}

/* MODAL PLANOS */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5); 
}

.modal-content {
  background-color: var(--cor-white);
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  position: relative;
}

.modal-content img {
  display: block;
  width: 100%;
  height: auto;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--cor-white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.fechar:hover {
  color: var(--cor-black);
}
/* #endregion SEÇÃO PLANOS */


/* #region SEÇÃO APP */
.app-content {
  background-image: url('../images/app-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 718px;
  display: flex;
  align-items: center;
  margin: 0;
}

.app-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}

.app-image {
  flex: 0 1 50%;
}

.app-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.app-text {
  flex: 0 1 50%;
  min-width: 0;
}

.app-text h3 {
  font-weight: 700;
  font-size: clamp(2rem, 2.2vw + 1rem, 4rem);
  line-height: 1.2;
}

.app-text h3 span {
  display: block;
  color: var(--cor-second);
  font-size: clamp(2.4rem, 2.8vw + 1rem, 4.625rem);
}

.app-text p {
  font-size: clamp(1.25rem, 0.8rem + 1vw, 1.625rem);
  margin: 30px 0;
}

.app-text .app-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.app-text .app-links a {
  display: inline-block;
  width: auto;
  max-width: 100%;
}
/* #endregion fim SEÇÃO APP*/


/* #region SEÇÃO FAQ */
.faq {
  max-width: 1280px;
  padding: 170px 20px;
  margin: 0 auto;
  text-align: center;
}

.faq p {
  font-family: var(--fonte-padrao);
}

.faq h4 {
  margin: 4px 0 75px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.faq-card {
  background-color: var(--cor-card);
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 30px 0 30px 0;
  padding: 50px;
  color: var(--cor-faq);
  box-sizing: border-box;
  text-align: left;
  height: 100%;
}

.faq-image-wrapper {
  width: 105px;
  min-width: 105px;
  height: 121px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.faq-title {
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0 0 8px 0;
}

.faq-subtitle {
  font-size: 1.188rem;
  font-weight: 400;
  word-break: break-word;
}
/* #endregion fim FAQ */


/* #region SEÇÃO INDIQUE */
.indique-banner {
  background-image: url('../images/indicacao-bg.webp');
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  margin-bottom: 220px;
  overflow: hidden;
}

.indique-amigo {
  display: flex;
  justify-content: space-evenly;
  max-width: 1280px;
  height: 720px;
  margin: 0 auto;
  padding: clamp(70px, 5vw, 100px) clamp(16px, 6vw, 90px) 0 clamp(16px, 6vw, 90px);
}

.indique-esquerda {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.indique-esquerda h2 {
  font-family: var(--fonte-title);
  color: var(--cor-h2);
  margin-bottom: 20px;
}

.indique-esquerda p {
  font-weight: 700;
  font-size: clamp(1.25rem, 0.5rem + 2vw, 1.625rem);
  color: var(--cor-black);
  margin: 0;
}

.indique-direita {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  
}

.indi-foto {
  width: 576px;
  height: 546px;
  object-fit: cover;
}
/* #endregion fim SEÇÃO INDIQUE */


/* #region FOOTER */
.rodape {
  background-image: url('../images/rodape-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;

  font-family: var(--fonte-padrao);
  box-sizing: border-box;
}

.rodape-conteudo {
  display: flex;
  gap: 60px;
  max-width: 1280px;
  justify-content: center;
  margin: 0 auto;
  padding: 130px 90px 130px 90px;
}

.rodape-coluna h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 20px;
}

.rodape-coluna ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-coluna ul li {
  margin-bottom: 5px;
}

.rodape-coluna ul li a {
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--cor-white);
  text-decoration: none;
}

.rodape-coluna .redes-sociais {
  display: flex;
  gap: 8px;
}

.rodape-coluna .redes-sociais a img {

  width: 39px;
  height: 39px;
}

/* Logo */
.rodape-logo {
  display: flex;
  justify-content: center;
}

.rodape-logo img {
  width: 325px;
  height: 75px;
}

/* Direitos reservados */
.rodape-direitos {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 20px;
}

.rodape-direitos p {
  font-size: clamp(0.20rem, 2vw, 0.875rem);
  ;
  margin: 0;
}
/* #endregion fim FOOTER */


/* #region RESPONSIVO */

/* DESKTOP GRANDE (>1152) */
@media screen and (min-width: 1152px) {
  .carousel-track {
    transform: none !important;
  }

  .carousel-slide {
    min-width: 33.3333%;
  }

  .carousel-btn {
    display: none;
  }
}

/* TABLET GERAL (max-width: 1151px) */
@media (max-width: 1151px) {
  h2 {
    font-size: 2.675rem;
  }

  /* BANNER */
  .banner-container {

    gap: 0;
  }

  .hide-tab {
    display: none;
  }

  .right-img {
    position: static;
    transform: none;
    align-self: center;
    margin-left: 0;
  }

  /* APP */
  .app-container {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .app-image,
  .app-text {
    width: 60%;
    max-width: 100%;
  }

  .app-text {
    margin: 0;
    padding: 0 20px;
    text-align: left;
  }

  .app-text h3 {
    text-align: left;
  }

  /* Carrossel (tablet) */
  .carousel-slide {
    min-width: 50%;
  }

  /* FAQ */
  .faq h4 {
    max-width: 600px;
    margin: 4px auto 75px;
    padding: 0 16px;
  }

  /* INDIQUE */
  .indique-amigo {
    flex-direction: column;
    height: auto;
  }

  .indique-esquerda {

    text-align: center;
    width: 80%;
    margin: 0 auto 80px;
  }

  .indique-esquerda h2 {
    margin-top: 40px;
    text-align: center;
  }

  .indique-direita {
    width: 100%;
    justify-content: center;
    margin-top: auto;
  }

  .indi-foto {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
  }
}

/* TABLET (max-width: 838px) */
@media (max-width: 838px) {
  .container-w {
    text-align: center;
  }

  /* BANNER */
  .banner-container {
    padding: 60px 0 0 0;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .hide-cell {
    display: none;
  }

  .hide-tab {
    display: block;
  }

  /* Menu Mobile */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--cor-white);
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 1050;
  }

  .menu.active nav {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
    gap: 24px;
    display: flex;
  }

  nav ul li a {
    color: var(--cor-white);
    font-size: 1.1rem;
    text-decoration: none;
  }


  #btn-assine {
    background-color: var(--cor-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
  }

  #btn-assine a {
    text-decoration: none;
  }

  .hamburger {
    display: flex;
  }

  /* APP */
  .app-image,
  .app-text {
    width: 80%;
    max-width: 100%;
  }
}

/* TABLET (max-width: 768px) */
@media (max-width: 768px) {
  .container-w {
    padding: 0 50px;
  }

  .carousel-slide {
    min-width: 100%;
  }

  /* PLANOS */
  .planos-content {
    padding: 100px 25px;
  }

  /* FAQ */
  .faq {
    padding: 100px 25px;
  }

  .faq-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .faq-image-wrapper {
    margin: 0 0 20px 0;
    width: 90px;
    height: 90px;
  }

  .faq-title,
  .faq-subtitle {
    text-align: center;
  }

  .faq-content {
    align-items: center;
  }

  /* Footer */
  .rodape {
    text-align: center;
  }

  .rodape-conteudo {
    flex-direction: column;
    gap: 20px;
    padding: 70px 50px;
  }

  .rodape-coluna h3 {
    margin-bottom: 10px;
  }

  .rodape-coluna ul li {
    margin-bottom: 5px;
  }

  .rodape-coluna .redes-sociais {
    justify-content: center;
  }

  .rodape-direitos {
    margin-top: 40px;
  }

  /* APP */
  .app-image,
  .app-text {
    width: 100%;
    max-width: 70%;
  }

  .app-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px !important;
  }

  .app-links a {
    width: 100%;
  }

  .rodape-logo img {
    width: 280px;
    height: auto;
  }
}

/* TABLET (max-width: 600px) */
@media (max-width: 600px) {
  h2 {
    font-size: 2.2rem;
  }

  h4 {
    font-size: 1.3rem;
    max-width: 90%;
    margin: 4px auto 50px;
  }

  .app-text h3,
  p {
    text-align: center;
  }

  .faq-card {
    padding: 20px;
  }

  /* APP */
  .app-image,
  .app-text {
    width: 100%;
    max-width: 100%;
  }
}

/* CELULARES (max-width: 480px) */
@media (max-width: 480px) {
  h2 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  .faq-title {
    font-size: 1.3rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }
}

/* CELULARES (max-width: 390px) */
@media (max-width: 390px) {
  h2 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  .faq-title {
    font-size: 1.2rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-card {
    padding: 16px;
  }

  /* FOOTER */
  .rodape-logo img {
    width: 180px;
    height: auto;
  }
}

/* CELULARES (max-width: 375px) */
@media (max-width: 375px) {
  h2 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 1rem;
  }

  .faq-title {
    font-size: 1.1rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  /* app */
  .app-container {
    padding: 20px 0px;
  }
}

/* CELULARES (max-width: 320px) */
@media (max-width: 320px) {
  h2 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 0.95rem;
  }

  .faq-title {
    font-size: 1rem;
  }

  .faq-subtitle {
    font-size: 0.85rem;
  }

  .faq-card {
    padding: 12px;
  }

  .app-text h3 span {
    font-size: 1.6rem;
  }
}

/* #endregion fim RESPONSIVO */

/* #region COOKIE */
.cookie-banner-aviso {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--cor-card);
  color: var(--cor-white);
  padding: 15px 20px;
  font-family: var(--fonte-padrao);
  font-size: clamp(8px, 0.375rem + 1vw, 14px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
  gap: 20px
}

.cookie-banner-aviso p {
  margin: 0;
  flex: 0 1 auto;
}

.cookie-banner-aviso a {
  color: var(--cor-second);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-aviso button {
  background-color: var(--cor-second);
  color: var(--cor-black);
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.cookie-banner-aviso button:hover {
  background-color: #e0a800;
}


/* COOOKIES AVANÇADOS */
/* .cookie-banner-lgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--cor-card);
  color: var(--cor-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  z-index: 9999;
  font-family: var(--fonte-padrao);
  font-size: 0.95rem;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner-lgpd a {
  color: var(--cor-second);
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  background-color: var(--cor-second);
  color: var(--cor-black);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #e0a800;
}
 */

 /* #endregion fim COOKIE */

