/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Animações de entrada suave */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 40px 20px 60px;
  border-bottom: 1px solid rgba(150, 15, 22, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}


.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.botao-link {
  background: linear-gradient(135deg, #960f16 0%, #c41e3a 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(150, 15, 22, 0.3);
  font-size: 0.95rem;
}

.botao-link:hover {
  background: linear-gradient(135deg, #c41e3a 0%, #960f16 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(150, 15, 22, 0.4);
}



/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  max-height: 60px;
  display: block;
  margin-left: 0;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  color:#960f16 ;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* NAV */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 35px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #960f16, #7a0ac7);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #960f16;
}

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

/* Botões */
.header-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-shrink: 0;
}


/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(150, 15, 22, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  position: relative;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.hero-subtitle {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Botão CTA */
.cta {
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(150, 15, 22, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  z-index: 2;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta:hover::before {
  width: 300px;
  height: 300px;
}

.cta:hover {
  box-shadow: 0 12px 40px rgba(122, 10, 199, 0.5);
  transform: translateY(-3px);
}

.cta:active {
  transform: translateY(-1px);
}

/* SECTIONS */
.servicos, .sobre, .equipe, .contato {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicos {
  background: #ffffff;
}

.contato {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contato h2 {
  margin-bottom: 20px;
}

.contato p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.servicos h2, .sobre h2, .equipe h2, .contato h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

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

.card {
  border: none;
  padding: 35px 25px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #960f16, #7a0ac7);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(150, 15, 22, 0.2);
}

.card h3 {
  color: #960f16;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.card p {
  color: #555;
  text-align: center;
  line-height: 1.7;
  font-size: 1rem;
}

.card.destaque {
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
}

.segmentos h4 {
  margin-top: 40px;
  text-align: center;
  color: #960f16;
}

.segmentos p {
  text-align: center;
}

/* FORMULÁRIO */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

button[type="submit"] {
  background: #960f16;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #ee1623;
}

/* WhatsApp link */
.whatsapp-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #960f16;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-link:hover {
  color: #ee1623;
}

.impact-text {
  color: #4a4a4a;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 20px auto 30px;
  max-width: 600px;
  text-align: center;
  padding-bottom: 0;
  line-height: 1.8;
}

.impact-box {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
  border-radius: 8px;
  overflow: hidden;
  padding-top: 40px;
  border: none;
  z-index: 1;
}

.overlay-logo {
  position: relative;
  display: block;
  max-width: 180px;
  height: auto;
  margin: 40px auto 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 30px rgba(150, 15, 22, 0.2));
}

.overlay-logo:hover {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 15px 40px rgba(150, 15, 22, 0.3));
}

.impact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2%;
}

.servicos h3 {
  color: #666;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 20px auto 50px;
  max-width: 700px;
  text-align: center;
  padding-bottom: 0;
  line-height: 1.8;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.6;
  text-align: center;
}

/* FOOTER */
footer {
  background: #fff;
  text-align: center;
  padding: 20px;
  color: #555;
}


/* ====================== */
/* ===== FERRAMENTAS ==== */
/* ====================== */

.ferramentas-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  margin-top: 100px;
}


.ferramentas-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
}

.container-ferramentas {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* acima das bolhas */
}

/* Wrapper para criar o efeito de scroll infinito */
.ferramentas-scroll-wrapper {
  background-color: #fff;
  border-radius: 24px;
  padding: 50px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
}

.ferramentas-scroll-wrapper::before,
.ferramentas-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ferramentas-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.ferramentas-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Track que contém as ferramentas em movimento */
.ferramentas-track {
  display: flex;
  gap: 40px;
  animation: scroll-ferramentas 20s linear infinite;
  will-change: transform;
}

/* Animação de scroll infinito */
@keyframes scroll-ferramentas {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ferramentas-box {
  background-color: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.ferramenta-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 35px;
  min-width: 180px;
  height: 180px;
  box-sizing: border-box;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  flex-shrink: 0;
}

.ferramenta-logo:hover {
  background: #ffffff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(150, 15, 22, 0.15);
}

.ferramenta-logo img {
  max-width: 90px;
  max-height: 90px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  object-fit: contain;
}

.ferramenta-logo:hover img {
  transform: scale(1.15);
}

.ferramenta-logo p {
  margin-top: 15px;
  font-size: 1.05rem;
  color: #333;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

/* Circulos animados no fundo */
.bolhas-animadas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bolhas-animadas span {
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background: rgba(255, 100, 100, 0.15); /* vermelho mais claro */
  border-radius: 50%;
  animation: flutuar 20s linear infinite;
}

.bolhas-animadas span:nth-child(1) {
  left: 10%;
  top: 80%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.bolhas-animadas span:nth-child(2) {
  left: 25%;
  top: 90%;
  animation-delay: 2s;
  animation-duration: 22s;
}

.bolhas-animadas span:nth-child(3) {
  left: 50%;
  top: 85%;
  animation-delay: 4s;
  animation-duration: 20s;
}

.bolhas-animadas span:nth-child(4) {
  left: 70%;
  top: 95%;
  animation-delay: 1s;
  animation-duration: 25s;
}

.bolhas-animadas span:nth-child(5) {
  left: 90%;
  top: 80%;
  animation-delay: 3s;
  animation-duration: 19s;
}

.white-circle.abstract {
  position: absolute;
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatCircle 18s ease-in-out infinite alternate;
  z-index: 0;
}

/* Círculos espalhados */
.circle-1 {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -40px;
  animation-delay: 0s;
}

.circle-2 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  bottom: -40px;
  left: 45%;
  animation-delay: 1s;
}

.circle-4 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: -50px;
  animation-delay: 3s;
}

.circle-5 {
  width: 60px;
  height: 60px;
  bottom: 10%;
  right: 20%;
  animation-delay: 4s;
}

/* Reutilizando a animação já existente */
@keyframes floatCircle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.15;
  }
  100% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.25;
  }
}


/* Responsivo */
@media (max-width: 768px) {
  .ferramentas-scroll-wrapper {
    padding: 40px 0;
  }

  .ferramentas-track {
    gap: 30px;
    animation-duration: 18s;
  }

  .ferramenta-logo {
    min-width: 160px;
    height: 160px;
    padding: 20px 25px;
  }

  .ferramenta-logo img {
    max-width: 70px;
    max-height: 70px;
  }

  .ferramentas-section {
    padding: 60px 20px;
  }
  
  .ferramentas-section h2 {
    font-size: 1.5rem;
  }

  .ferramentas-scroll-wrapper::before,
  .ferramentas-scroll-wrapper::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .ferramentas-scroll-wrapper {
    padding: 30px 0;
  }

  .ferramentas-track {
    gap: 25px;
    animation-duration: 8s;
  }

  .ferramenta-logo {
    min-width: 140px;
    height: 140px;
    padding: 15px 20px;
  }
  
  .ferramenta-logo img {
    max-width: 60px;
    max-height: 60px;
  }
  
  .ferramenta-logo p {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .ferramentas-scroll-wrapper::before,
  .ferramentas-scroll-wrapper::after {
    width: 60px;
  }
}

/* Pausa a animação no hover para melhor UX */
.ferramentas-scroll-wrapper:hover .ferramentas-track {
  animation-play-state: running;
}



/* ====================== */
/* ==== MEDIA QUERIES === */
/* ====================== */

@media (max-width: 1024px) {
  header {
    padding: 15px 20px;
  }

  .header-wrapper {
    gap: 15px;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }

  nav ul {
    gap: 25px;
    justify-content: center;
  }

  .header-buttons {
    order: 2;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo img {
    max-height: 40px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: row;
    gap: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
  }

  .header-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .botao-link {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .hero-subtitle {
    font-size: 2.2rem;
    padding: 0 10px;
  }

  .servicos h2, .contato h2 {
    font-size: 2.2rem;
  }

  .impacto-ai h2 {
    font-size: 1.8rem;
  }

  .impacto-ai .subtexto {
    font-size: 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .cta {
    width: 100%;
  }

  form {
    padding: 0 10px;
  }
}

.impacto-ai {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.impacto-ai .efeito-topo {
  width: 120px;
  margin-bottom: 20px;
  animation: pulse 6s ease-in-out infinite;
}

.impacto-ai h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.impacto-ai h2 span {
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.impacto-ai .subtexto {
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
}

.btn-destaque {
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(150, 15, 22, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-destaque::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-destaque:hover::before {
  width: 300px;
  height: 300px;
}

.btn-destaque:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(122, 10, 199, 0.5);
}

.parceiros {
  margin-top: 60px;
}

.parceiros h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.linha-sub {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sublinhado {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #960f16, #7a0ac7);
  border-radius: 4px;
}

.avatars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.avatars img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(150, 15, 22, 0.3);
  z-index: 1;
  position: relative;
}

.mensagem-parceiros {
  max-width: 700px;
  margin: 30px auto 0;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Animação */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.07); opacity: 0.9; }
}

.footer-section {
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  color: white;
  padding: 80px 20px 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 80px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  gap: 10px;
}

.footer-logo img {
  height: 35px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-social {
  margin: 25px 0;
}

.footer-social a {
  margin: 0 10px;
}

.footer-social img {
  width: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 30px;
}

/* Bolhas decorativas */
.footer-bolhas span {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatFooter 10s ease-in-out infinite;
}

.footer-bolhas span:nth-child(1) {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: 15%;
}

.footer-bolhas span:nth-child(2) {
  width: 50px;
  height: 50px;
  top: -25px;
  right: 10%;
}

.footer-bolhas span:nth-child(3) {
  width: 30px;
  height: 30px;
  top: 30%;
  left: 5%;
}

@keyframes floatFooter {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.footer-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #ffffff;
}
.footer-section p{
    color: #fff
}

@media (max-width: 768px) {
  .logo {
    justify-content: center; /* centraliza a logo */
    margin-left: 0;
  }

  .cta {
    padding: 15px 2rem;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-height: 35px; /* ainda menor para mobiles */
  }

  .cta {
    padding: 12px 1.5rem;
    max-width: 100%;
  }
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.flag-btn {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-btn:hover {
  border-color: #960f16;
  transform: scale(1.1);
}

.flag-btn[aria-pressed="true"] {
  border-color: #960f16;
  background: rgba(150, 15, 22, 0.1);
}

.flag {
  width: 24px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.flag:hover {
  transform: none;
}
 