:root {

  /* FONTES TAMANHO */
  --font-Title-hero: 61px;
  --font-Title: 42px;
  --font-SubTitle: 20px;
  --font-normal: 16px;
  --font-menor: 14px;

  /* FONTES EXCLUSIVAS DA POPUP */
  --font-popup-title: 22px;
  --font-popup-descricao: 15px;

  /* FONT WEIGHT */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 800;


  /* CORES */
  --cor-black: #000000;
  --cor-blue: #003966;
  --cor-blue-light: #005EA7;
  --cor-grey: #404040;

}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}


a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

b {
  font-weight: var(--semi-bold);
}

.container {
  max-width: 1400px;
  width: 90vw;
  margin: 0 auto;
}

@media (max-width: 768px) {
  :root {

    /* FONTES TAMANHO */
    --font-Title-hero: 51px;
    --font-Title: 40px;
    --font-SubTitle: 18px;
    --font-normal: 16px;
    --font-menor: 14px;

    /* FONTES EXCLUSIVAS DA POPUP */
    --font-popup-title: 22px;
    --font-popup-descricao: 15px;
  }
}

@media (max-width: 550px) {
  :root {
    /* FONTES TAMANHO */
    --font-Title-hero: 40px;
    --font-Title: 36px;
    --font-SubTitle: 16px;
    --font-normal: 15px;
    --font-menor: 14px;

    /* FONTES EXCLUSIVAS DA POPUP */
    --font-popup-title: 22px;
    --font-popup-descricao: 14px;
  }
 }
 @media (max-width: 430px) {

 }

/* ===== BANNER DE COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 85%;
  max-width: 800px;
  background: var(--cor-blue);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(120%) translate(-50%) ;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.cookie-banner.show {
  transform: translateY(0) translate(-50%);
}

.cookie-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: var(--semi-bold);
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: var(--medium);
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: #7aad00;
  color: black;
  font-size: 16px;
}


.cookie-btn-accept:hover {
  background: #6b9a00;
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-policy {
  background: transparent;
  color: white;
  text-decoration: underline;
}

.cookie-btn-policy:hover {
  color: #ccc;
}

/* ===== PÁGINA POLÍTICA DE PRIVACIDADE ===== */
.politica-container {
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  line-height: 1.6;
  padding-top: 50px;
  padding-bottom: 200px;
}

.politica-header {
  text-align: center;
  margin-bottom: 40px;
}

.politica-header h1 {
  font-size: var(--font-Title);
  color: var(--cor-blue);
  margin-bottom: 10px;
}

.politica-header p {
  color: var(--cor-grey);
  font-size: var(--font-SubTitle);
}

.politica-section {
  margin-bottom: 30px;
}

.politica-section h2 {
  font-size: 24px;
  color: var(--cor-blue);
  margin-bottom: 15px;
  font-weight: var(--semi-bold);
}

.politica-section h3 {
  font-size: 20px;
  color: var(--cor-blue);
  margin: 20px 0 10px 0;
  font-weight: var(--medium);
}

.politica-section p {
  margin-bottom: 15px;
  color: var(--cor-grey);
}

.politica-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.politica-section li {
  margin-bottom: 8px;
  color: var(--cor-grey);
}

.politica-section strong {
  color: var(--cor-blue);
}

.politica-contact {
  background: #f5f5f5;
  padding: 30px 10px;
  border-radius: 10px;
  margin: 30px 0;
}

.politica-contact h3 {
  color: var(--cor-blue);
  margin-bottom: 15px;
}

.politica-contact p {
  margin-bottom: 10px;
}

.politica-contact a {
  color: var(--cor-blue-light);
  text-decoration: underline;
}

.politica-contact a:hover {
  color: var(--cor-blue);
}

.politica-back-btn {
  display: inline-block;
  background: var(--cor-blue);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: var(--medium);
  margin-top: 30px;
  transition: background 0.3s ease;
}

.politica-back-btn:hover {
  background: var(--cor-blue-light);
}
.cookie-buttons-btns {
  display: flex;
  gap: 6px;
}

/* Responsividade */
@media (max-width: 886px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    min-width: auto;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
    
  .politica-header h1 {
    font-size: 32px;
  }
  
  .politica-section h2 {
    font-size: 22px;
  }
  
  .politica-section h3 {
    font-size: 18px;
  }
  .cookie-banner {
    max-width: 560px;
  }
}

@media (max-width: 550px) {
  .cookie-banner {
    padding: 15px;
  }
  
  .cookie-text h3 {
    font-size: 14px;
  }
  
  .cookie-text p {
    font-size: 12px;
  }
  
  .cookie-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
  .cookie-btn-accept {
    font-size: 13px;
  }
  
  .politica-header h1 {
    font-size: 28px;
  }
  
  .cookie-buttons {
    gap: 6px;
  }
  
}

