* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --amarelo: #ffc105;
  --preto: #0d0d0d;
  --preto-2: #1a1a1a;
  --preto-3: #ffffff0d;
  --branco: #ffffff;
  --branco-2: #ffffffcc;
  --branco-3: #ffffffe3;
  --cinza-foreground: #666666;
  --laranja: #ffc1051a;
  --laranja-2: #ffc10533;
  --techno-orange: #e79903;
  --techno-organge-rgb: rgb(231.153.0.3);
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(180deg, var(--branco) 0%, var(--branco-2) 100%);
  font-family: "Poppins", sans-serif;
}
h2 {
  line-height: 1;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--preto-2);
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  max-width: 280px;
}

.nav {
  display: flex;
  align-items: center;

  gap: 32px;
  z-index: 1100;
}

.nav a {
  color: var(--branco-2);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amarelo);
  transition: width 0.3s ease;
}

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

.cta-button {
  background: var(--amarelo);
  color: var(--preto);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1101; /* acima do menu */
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--amarelo);
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* MOBILE */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  .logo img {
    max-width: 180px;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    text-align: right;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    align-items: right;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav a {
    font-size: 24px;
    color: var(--branco);
  }

  .nav.active {
    transform: translateX(0);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url("./assets/banner-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60%;
  overflow: hidden;
}

/* Overlay sombreado */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(255, 193, 5, 0.25) 50%,
    rgba(13, 13, 13, 0.9) 100%
  );
  z-index: 1;
}

/* Garante que o conteúdo fique acima do sombreado */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero .container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 2rem;
  padding-top: 30px;
}
.hero .container h1 {
  font-size: 70px;
  color: var(--branco);
  line-height: 1;
}
.hero h1 strong {
  color: var(--amarelo);
}
.hero p {
  color: var(--branco-2);
  font-size: 22px;
}
.cta-hero {
  display: flex;
  gap: 2rem;
  padding-bottom: 50px;
}

@keyframes svgGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 193, 5, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 193, 5, 0.8))
      drop-shadow(0 0 30px rgba(255, 193, 5, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 193, 5, 0.3));
  }
}

.logo-glow {
  animation: svgGlow 3s infinite ease-in-out;
}

a.cta-button {
  background-color: var(--amarelo);
  padding: 17px;
  max-width: fit-content;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--preto);
  transition: 0.5s;
}
a.cta-button:hover {
  transform: scale(1.06);
}
a.cta-whatsapp {
  background-color: transparent;
  padding: 17px;
  max-width: fit-content;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--amarelo);
  border: 1px solid var(--amarelo);
  transition: 0.5s;
}
a.cta-whatsapp:hover {
  transform: scale(1.06);
}
.about {
  background: var(--branco);
  padding: 100px 20px;
}

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

.about-header {
  max-width: 700px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-header .tag {
  width: fit-content;
  display: inline-block;
  background: var(--preto-2);
  color: var(--branco);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-header h2 {
  font-size: 2.4rem;
  color: var(--preto-2);
  margin-bottom: 16px;
  line-height: 1;
}
.about-header h2 strong {
  color: var(--preto-2);
}
.about-header p {
  color: var(--preto);
  font-size: 1rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.about-card {
  background: var(--preto-2);
  border-radius: 16px;
  border: 1px solid rgba(255, 193, 5, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 193, 5, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--amarelo);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card-text {
  padding: 15px 10px;
}
.about-card .icon img {
  max-width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.about-card h3 {
  color: var(--amarelo);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--branco-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile refinado */
@media (max-width: 768px) {
  .about {
    padding: 80px 16px;
  }

  .about-header h2 {
    font-size: 2rem;
  }
}

.solutions {
  background-color: var(--branco);
  padding-bottom: 50px;
}
.solutions-title {
  text-align: center;
  padding: 50px 0;
}
.solutions-title h2 {
  font-size: 60px;
  color: var(--preto-2);
}
.solutions-title p {
  color: var(--cinza-foreground);
  font-size: 22px;
}
.solutions-title h2 strong {
  color: var(--amarelo);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-img {
  background-color: var(--laranja);
  max-width: fit-content;
  padding: 12px;
  border-radius: 7px;
}
.solution-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.solution-text h3 {
  font-size: 25px;
  line-height: 1;
  color: var(--preto-2);
}
.solution-text p {
  color: var(--cinza-foreground);
  line-height: 1.1;
}
*/ .solutions {
  background: var(--branco-2);
  padding: 100px 20px;
}

.solutions .container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.solutions-header .tag {
  display: inline-block;
  background: var(--preto-2);
  color: var(--branco);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.solutions-header h2 {
  font-size: 36px;
  color: var(--preto-2);
  margin-bottom: 12px;
}

.solutions-header p {
  color: var(--preto-2);
  font-size: 17px;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.solution-card {
  background: var(--preto-2);
  border: 1px solid rgba(255, 193, 5, 0.15);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 193, 5, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--amarelo);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card h3 {
  color: var(--amarelo);
  font-size: 20px;
  margin-bottom: 10px;
}

.solution-card p {
  color: var(--branco-2);
  font-size: 15px;
  line-height: 1.6;
}
.sectors {
  background: var(--preto-2);
  padding: 100px 20px;
}

.sectors .container {
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.sectors-header .tag {
  display: inline-block;
  background: var(--branco);
  color: var(--preto-2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.sectors-header h2 {
  font-size: 36px;
  color: var(--branco);
  margin-bottom: 12px;
}

.sectors-header p {
  color: var(--branco-2);
  font-size: 17px;
  line-height: 1.6;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.sector-card {
  background: var(--preto-3);
  border: 1px solid rgba(255, 193, 5, 0.15);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.sector-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: var(--amarelo);
}

.sector-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.sector-card h3 {
  color: var(--amarelo);
  font-size: 20px;
  margin-bottom: 10px;
}

.sector-card p {
  color: var(--branco-2);
  font-size: 15px;
  line-height: 1.6;
}
.sectors-slider {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.2s ease-in-out;
  overflow: hidden;
}

/* Overlay escuro + amarelo sutil */
.sectors-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.85) 60%,
    rgba(255, 193, 5, 0.15) 100%
  );
  z-index: 1;
}

.sectors-content {
  position: relative;
  z-index: 2;
}

/* melhora leitura dos cards */
.sector-card {
  backdrop-filter: blur(6px);
  background: rgba(13, 13, 13, 0.75);
}
.sectors-slider {
  animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}

.resultados {
  padding: 50px 0;
}
.resultados-title {
  text-align: center;
  padding: 50px 0;
}
.resultados-title h2 {
  font-size: 60px;
  color: var(--preto);
}
.resultados-title p {
  color: var(--preto-2);
  font-size: 22px;
}
.resultados-title h2 strong {
  color: var(--preto-2);
}
.resultados-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
}
.resultado-card {
  background-color: var(--preto-2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 15px;
  width: 300px;
  transition: 0.5s;
}
.resultado-card:hover {
  border: 1px solid var(--amarelo);
}
.resultado-card .resultado-img {
  border-radius: 50%;
  background-color: var(--laranja-2);
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resultado-card .resultado-text span {
  font-size: 48px;
  font-weight: 700;
  color: var(--amarelo);
}
.resultado-text p {
  color: var(--branco-3);
  font-size: 14px;
}
.faq {
  background: linear-gradient(180deg, var(--branco) 0%, var(--branco-2) 100%);
  padding: 100px 20px;
}

.faq .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  max-width: 600px;
  margin-bottom: 50px;
}

.faq-header .tag {
  display: inline-block;
  background: var(--preto-2);
  color: var(--branco);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.faq-header h2 {
  font-size: 36px;
  color: var(--preto-2);
  margin-bottom: 12px;
}

.faq-header p {
  color: var(--cinza-foreground);
  font-size: 17px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 193, 5, 0.15);
  border-radius: 14px;
  background: var(--preto-2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--branco);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.faq-question .icon {
  color: var(--amarelo);
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--branco-2);
  font-size: 15px;
  line-height: 1.6;
}

.cta-final {
  background-color: var(--branco);
}
.cta-final {
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url("./assets/banner-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60%;
  overflow: hidden;
}

/* Overlay sombreado */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(255, 193, 5, 0.25) 50%,
    rgba(13, 13, 13, 0.9) 100%
  );
  z-index: 1;
}

/* Garante que o conteúdo fique acima do sombreado */
.cta-final > * {
  position: relative;
  z-index: 2;
}
.cta-title {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.cta-title h2 {
  font-size: 48px;
  color: var(--branco);
}
.cta-title h2 strong {
  color: var(--amarelo);
}
.cta-title p {
  font-size: 22px;
  color: var(--branco-3);
}
.cta-final .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .cta-final .container {
    padding: 20px;
  }
}
.form-whatsapp {
  max-width: 500px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;

  /* Fundo amarelo transparente */
  background: rgba(255, 193, 5, 0.12); /* amarelo suave */
  padding: 25px;
  border-radius: 12px;

  /* efeito elegante */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  animation: techGlow 3.5s infinite;
}

.form-whatsapp h2 {
  font-size: 25px;
  color: var(--branco-3);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.form-whatsapp input,
.form-whatsapp textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;

  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--amarelo);
  border-radius: 8px;
  resize: vertical;
  font-size: 16px;
  outline: none;
}

.form-whatsapp input:focus,
.form-whatsapp textarea:focus {
  border-color: #e6ac00;
  box-shadow: 0 0 0 2px rgba(255, 193, 5, 0.3);
}

.form-whatsapp button {
  background-color: var(--amarelo);
  color: var(--branco-3);
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.botoes-form {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.botoes-form button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.botoes-form button:first-child {
  background: var(--amarelo);
  color: #fff;
}

.botoes-form button:last-child {
  background: var(--amarelo);
  color: #fff;
}

.form-whatsapp button:hover {
  background-color: #e6ac00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 5, 0.4);
}
footer {
  background-color: var(--preto-2);
}
footer .container {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--branco-2);
  padding: 50px;
  border-top: 1px solid var(--branco-3);
}
.btn-whatsapp {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  cursor: pointer;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: 0.4s;
  animation: zoomImage 2s infinite;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 220px;
  top: 25px;
  left: -228px;
  padding: 2px;
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s;
  background-color: var(--amarelo);
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 193, 5, 0.3);
  }
  50% {
    box-shadow:
      0 0 20px rgba(255, 193, 5, 0.6),
      0 0 40px rgba(255, 193, 5, 0.4);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 193, 5, 0.3);
  }
}
@keyframes techGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 193, 5, 0.2);
  }
  50% {
    box-shadow:
      0 0 25px rgba(255, 193, 5, 0.6),
      0 0 60px rgba(255, 193, 5, 0.4);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 193, 5, 0.2);
  }
}

@media screen and (max-width: 1020px) {
  body {
    width: 100%;
  }

  .container {
    flex-direction: column;
    padding: 10px;
  }
  .hero img {
    max-width: 300px;
  }
  .hero .container h1 {
    font-size: 2rem;
  }
  .hero .container p {
    font-size: 1rem;
    line-height: 1;
  }
  .solutions-title {
    gap: 1rem;
    flex-direction: column;
    display: flex;
  }
  .solutions-title h2 {
    font-size: 1.8rem;
    line-height: 1;
  }
  .solutions-title p {
    font-size: 1rem;
    line-height: 1;
  }
  .solutions-grid {
    flex-wrap: wrap;
    display: flex;
  }
  .resultados-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .resultados-title h2 {
    font-size: 1.8rem;
    line-height: 1;
  }
  .resultados-title p {
    font-size: 1rem;
  }
  .resultados-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .cta-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .cta-title h2 {
    font-size: 1.8rem;
    line-height: 1;
  }
  .cta-title p {
    line-height: 1;
    font-size: 1rem;
  }
  .btn-whatsapp img {
    max-width: 48px;
  }
  .btn-whatsapp .tooltip-text {
    visibility: hidden;
    position: absolute;
    width: 220px;
    top: 10px;
    left: -228px;
    padding: 2px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s;
    background-color: var(--amarelo);
  }
  .footer-container {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
}

/* Footer base */

.footer {
  background: #1a1a1a;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Newsletter */

.footer-newsletter {
  background: #4a4a52;
  padding: 60px 20px;
}

.newsletter-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: #ddd;
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form input {
  padding: 12px;
  border: none;
  outline: none;
  width: 220px;
}

.newsletter-form button {
  background: var(--amarelo);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 18px;
}

/* Conteúdo principal */

.footer-main {
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--amarelo);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--amarelo);
}

/* Social */

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

/* Bottom */

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Mobile */

@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }
  .footer-main {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .footer-container {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
  }
  .cta-contato .container {
    padding: 20px;
  }
  .header-contato {
    text-align: right;
  }
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d0d0d;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  font-size: 14px;
}

#cookie-banner a {
  color: #ffc105;
}

#cookie-banner button {
  background: #ffc105;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}
