:root {
  --primary-color:#38D39F;   /* Verde Claro Moderno */
  --secundary-color: #007A5E; /* Verde-Esmeralda Profundo */
  --text-color: #FAFAFA;   /* Branco Neve */
  --background-color: #1C1C1E;  /* Cinza Grafite */
  --background-color2: #353538;  /* Cinza Claro */
  --accent-color: #FF0000;  /* Vermelho Puro */
  --cta-hover: #8B0000; /* Vermelho Escuro para Hover */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ======= FONTS: Gotham Family ======= */
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Thin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Ultra.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-UltraItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-XLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-XLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
}

body {
  font-family: 'Gotham', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.logo img {
  height: 40px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--secundary-color);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-from-right {
  opacity: 0;
  transform: translateX(80px);
  animation: 1s ease-out forwards slideInRight;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide {
  opacity: 0;
  transform: translateY(-40px);
  animation: 0.8s ease-out forwards slideDownFade;
}

.animate-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gatilho de Escassez */
.contador {
  background-color: #9b0000;
  text-align: center;
  font-weight: bold;
  padding-bottom: 5px;
}

.contador h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.caixas {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.caixa {
  background-color: #690000;
  padding: 10px;
  border-radius: 6px;
  min-width: 60px;
}

.valor {
  font-size: 24px;
  font-weight: bold;
}

.legenda {
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  background: none;
  box-shadow: none;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Animação de tremor */
@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.whatsapp-float.shake {
  animation: 0.5s ease-in-out shake;
}

/* Header-hero */
header {
  width: 100%;
  padding: 0 6% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, transparent 0%, var(--background-color) 100%);
  flex-wrap: wrap;
}

.header-left {
  max-width: 600px;
  z-index: 3;
  position: relative;
}

.header-left h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

.header-left h1 .highlight {
  font-weight: 700;
  color: var(--primary-color);
}

.highlight {
  color: var(--primary-color);
}

.authority-phrase {
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-color);
  margin: 10px 0 20px;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-color);
  margin: 20px 0;
  line-height: 1.6;
  max-width: 520px;
}

.header-right {
  position: relative;
  width: 500px;
  max-width: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
}

/* Imagens das pessoas em preto e branco no fundo */
.background-people {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-person {
  position: absolute;
  top: -90px;
  width: 48%;
  height: 100%;
  opacity: 0.3;
  filter: grayscale(100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: 0;
}

.bg-person.left {
  left: 0;
  background-image: url('/assets/fla_bw.png');
}

.bg-person.right {
  right: 0;
  background-image: url('/assets/van_bw.png');
}

.top-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--background-color), transparent);
  z-index: 1;
}

/* Imagem principal */
.placeholder-img {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding-bottom: 0;
  padding-top: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.4s ease;
}

.placeholder-img:hover {
  transform: scale(1.05);
}

.logos-carousel-section {
  background-color: var(--background-color);
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.logos-carousel-section h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.logos-carousel-highlight {
  color: var(--secundary-color);
  font-weight: 600;
}

.logos-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-carousel-track {
  display: flex;
  animation: 25s linear infinite logos-carousel-scroll;
  gap: 60px;
}

.logos-carousel-track img {
  height: 60px;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.logos-carousel-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes logos-carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-button {
  background-color: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
  align-self: start;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.cta-button:hover {
  transform: translateY(-5px);
  background-color: var(--cta-hover);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.quem-somos {
  background: radial-gradient(circle at top left, rgba(255, 111, 60, 0.05), transparent 50%), radial-gradient(circle at bottom right, rgba(56, 211, 159, 0.08), transparent 50%),var(--background-color);
  overflow: hidden;
  background-size: 200% 200%;
  animation: 12s ease infinite bg-movimento;
  color: var(--text-color);
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

@keyframes bg-movimento {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.quem-somos .titulo {
  font-size: 36px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 10px;
}

.quem-somos .subtitulo {
  font-size: 20px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.destaques {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.destaque {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: 14px;
  flex: 1 1 calc(25% - 20px); /* 4 colunas */
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.destaque:hover {
  background-color: var(--secundary-color);
  border: 2px solid var(--secundary-color);
  transform: translateY(-6px);
  color: var(--text-color);
}

.destaque:hover h3,
.destaque:hover strong {
  color: white;
}

.destaque h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.destaque p {
  font-size: 14px;
  color: #ddd;
}

.conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.texto {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}

.texto strong {
  color: var(--primary-color);
}

.texto button{
  top: 2rem;
}

.imagem {
  flex: 1;
  text-align: center;
}

.imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 183, 1, 0.3);
}

.fundadores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.fundador {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fundador:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.fundador img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.fundador:hover img {
  transform: scale(1.1);
}

.fundador h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.fundador p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.cta-final {
  text-align: center;
  margin-top: 30px;
}

.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

/* Estilo comum para os botões de navegação em ambos os carrosséis */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

/* Posições genéricas para os botões. Serão sobrescritas quando necessário. */
.nav-left {
  left: -50px;
}

.nav-right {
  right: -50px;
}

/* CARROSSEL DE SERVIÇOS */
.servicos {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 80px 20px;
}

.topo-servico h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.topo-servico p {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
}

/* Corrigido: Adicionado padding ao container para acomodar botões */
.carousel-container-servico {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 0 50px; /* Adiciona padding horizontal para que os botões fiquem visíveis */
  box-sizing: border-box;
}

/* Corrigido: Removido padding horizontal daqui, já que foi para o container pai */
.carousel-servico-wrapper {
  overflow: hidden;
  width: 100%;
  padding-bottom: 40px;
  box-sizing: border-box;
}

/* Corrigido: Adicionado flex-wrap: nowrap; para garantir o comportamento do carrossel */
.carousel-servico {
  display: flex;
  transition: transform 0.8s ease-in-out;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.carousel-servico::-webkit-scrollbar {
  display: none;
}

/* Corrigido: Adicionado min-width: 100%; para garantir que cada slide ocupe sua própria largura */
.slide-servico {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: transparent;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.slide-servico.slide-ativo {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.slide-servico.slide-ativo:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.conteudo-servico {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  width: 100%;
}

.texto-servico {
  flex: 1;
  font-size: 1rem;
}

.texto-servico h3 {
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 10px;
}

.texto-servico p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ddd;
}

.texto-servico ul {
  padding-left: 20px;
  list-style-type: disc;
}

.texto-servico li {
  margin-bottom: 8px;
  color: #ccc;
}

.card-servico img {
  max-width: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card-servico:hover img {
  transform: scale(1.05);
}

.indicadores-servico {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}

.indicadores-servico .dot {
  width: 28px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  background-color: transparent;
  transition: 0.3s;
}

.indicadores-servico .dot.active {
  background-color: #fff;
}

.cta-centro {
  text-align: center;
  margin-top: 50px;
}

/* CARROSSEL DE DEPOIMENTOS */
.depoimentos-section {
  padding: 80px 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 50px;
}

.depoimentos-titulo {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 10px;
}

.sub-linha {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.depoimentos-subtitulo {
  font-size: 16px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 20px;
  padding: 0 50px;
  box-sizing: border-box;
}

.carousel-container .nav-left {
  left: 0px;
}

.carousel-container .nav-right {
  right: 0px;
}

.carousel {
  display: flex;
  transition: transform 0.8s ease-in-out;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  background-color: #1e1e1e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.slide img {
  width: 40%;
  object-fit: cover;
}

.slide-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.logos {
  display: flex;
  gap: 20px;
  opacity: 0.6;
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 768px) {
/* Carrossel de Serviços */
/* Corrigido: Ajuste no padding do container de serviços para telas menores */
  .carousel-container-servico {
    padding: 0 20px; /* Reduz o padding horizontal em telas menores */
  }
  .servicos .nav-btn { /* Especificidade para botões de serviço */
    width: 35px;
    height: 35px;
    font-size: 16px;
    top: 40%; /* Ajuste a posição vertical dos botões em telas pequenas */
  }
  .servicos .nav-left {
    left: 0px; /* Agora '0px' significa na borda interna do padding do container */
  }
  .servicos .nav-right {
    right: 0px; /* Agora '0px' significa na borda interna do padding do container */
  }
  .conteudo-servico {
    flex-direction: column;
    text-align: center;
  }
  .card-servico {
    margin-top: 20px;
  }
  .card-servico img {
    max-width: 100%;
  }

/* Carrossel de Depoimentos */
/* Corrigido: Ajuste no padding do container de depoimentos para telas menores */
  .carousel-container {
      padding: 0 20px; /* Reduz o padding horizontal em telas menores */
    }
  .depoimentos-section .nav-btn { /* Especificidade para botões de depoimento */
      width: 35px;
      height: 35px;
      font-size: 16px;
      top: 40%; /* Ajuste a posição vertical dos botões em telas pequenas */
    }
  .depoimentos-section .nav-left {
      left: 0px; /* Agora '0px' significa na borda interna do padding do container */
    }
  .depoimentos-section .nav-right {
      right: 0px; /* Agora '0px' significa na borda interna do padding do container */
    }
  .slide {
      flex-direction: column;
    }
  .slide img {
      width: 100%;
      height: 150px;
    }
}

/* Opcional: Ajuste para telas muito pequenas onde botões laterais podem ser cortados */
@media (max-width: 480px) {
  /* Se ainda houver problemas, pode reduzir ainda mais o padding nos containers */
  /* .carousel-container-servico, .carousel-container { padding: 0 5px; } */
  .nav-left, .nav-right { /* Este bloco já estava, mas pode ser ajustado se necessário */
    left: 5px;
    right: 5px;
}
}

/* FORMULARIO */
.cta-bi-modular {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--background-color);
  padding: 60px 5%;
  gap: 40px;
}

.cta-left,
.cta-right {
  flex: 1;
  max-width: 500px;
  min-width: 280px;
}

/* Título */
.cta-left h2 {
  font-size: 1.7rem;
  line-height: 1.4;
  margin-bottom: 40px;
  color: var(--text-color);
}

.cta-left h2 strong {
  color: var(--primary-color);
}

/* Blocos de etapa */
.cta-step {
  position: relative;
  background-color: #121212;
  border-radius: 12px;
  padding: 20px 20px 20px 70px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.cta-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.3rem;
  background-color: var(--accent-color);
  color: white;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-text h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secundary-color);
}

.cta-text p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-top: 4px;
}

.cta-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: bold;
  font-size: 1rem;
  color: #999;
}

/* Conector visual */
.cta-connector {
  width: 2px;
  height: 30px;
  background-image: linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
  background-size: 2px 10px;
  background-repeat: repeat-y;
  margin-left: 40px;
  margin-bottom: 20px;
}

/* Formulário */
.cta-form {
  background-color: #0e0e0e;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #2a2a2a;
}

.cta-form input,
.cta-form select {
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background-color: #1a1a1a;
  color: white;
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta-form button {
  background-color: var(--secundary-color);
  color: white;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-form button:hover {
  background-color: var(--primary-color);
}

.page-footer {
  background-color: var(--background-color2);
  color: var(--text-color);
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-brand p {
  color: #ccc;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

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

.footer-links a:hover {
  color: var(--primary-color);
}

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

.footer-social a {
  font-size: 1.3rem;
  color: #ccc;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}