/* -----------------------------
   :root - Variáveis CSS
----------------------------- */
:root {
  --text-color: #667085;
  --text2-color: #000000;
  --title-color: #01204C;
  --background-color: #FFFFFF;
  --secondary-color: #25D366;
  --text-color-pink: #EC1B57;
  --font-family: "Metropolis", sans-serif;
}

/* ----------------------------
   Reset Básico
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
}

/* -----------------------------
   Fonte Padrão
----------------------------- */
body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

/* -----------------------------
   Tipografia Básica
----------------------------- */
h1, h2, h3 {
  color: var(--title-color);
}

h1 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}

h2 {
  margin-top: 20px;
  font-size: 2rem;
}

h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* -----------------------------
   Navegação
----------------------------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, #080404, #38000D);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-container .logo {
  width: 120px;
  height: auto;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: var(--background-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: var(--text-color-pink);
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 50px;
  background: linear-gradient(135deg, #080404, #38000D);
  color: var(--background-color);
  min-height: 100vh;
  overflow: hidden;
  scroll-margin-top: 80px;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo .logo-img {
  height: 180px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: scale(0.5);
  animation: fadeInScale 1s forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.startup-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: scale(0.5);
  animation: fadeInScale 1s forwards;
}

.startup-image:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(117, 42, 255, 0.8);
}

.line {
  width: 0;
  height: 4px;
  background-color: var(--title-color);
  margin: 0 10px;
  opacity: 0;
  transition: width 1s ease, opacity 1s ease;
  animation: lineDraw 1s forwards;
}

@keyframes lineDraw {
  to {
    width: 50px;
    opacity: 1;
  }
}

/* Delays para as Animações */
.img1 { animation-delay: 0.2s; }
.line1 { animation-delay: 0.4s; }
.img2 { animation-delay: 0.6s; }
.line2 { animation-delay: 0.8s; }
.img3 { animation-delay: 1s; }
.line3 { animation-delay: 1.2s; }
.img4 { animation-delay: 1.4s; }
.line4 { animation-delay: 1.6s; }
.img5 { animation-delay: 1.8s; }
.line5 { animation-delay: 2s; }
.img6 { animation-delay: 2.2s; }
.line6 { animation-delay: 2.4s; }
.img7 { animation-delay: 2.6s; }
.line7 { animation-delay: 2.8s; }
.img8 { animation-delay: 3s; }
.line8 { animation-delay: 3.2s; }
.img9 { animation-delay: 3.4s; }
.line9 { animation-delay: 3.6s; }
.img10 { animation-delay: 3.8s; }

/* -----------------------------
   Seção Hero Centralizado
----------------------------- */

/* Seção Bem-vindo à On Innovation */
#hero {
  position: relative;
  overflow: hidden; /* Esconde as partículas que excedem os limites da seção */
  padding: 100px 20px; /* Ajuste conforme necessário */
  background-color: var(--background-color); /* Cor de fundo padrão */
}

#particles-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Fica atrás do conteúdo */
  pointer-events: none; /* Permite interação com os elementos acima */
}

.hero__left,
.hero__right {
  position: relative;
  z-index: 2; /* Fica acima das partículas */
}

/* Ajustes responsivos, se necessário */
@media (max-width: 768px) {
  #hero {
      padding: 60px 10px;
  }
}

.hero {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.hero__left,
.hero__right {
  flex: 1 1 45%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.hero__container {
  max-width: 500px;
  margin: 0 auto; 
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--title-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--title-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.hero__description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--title-color);
}

.hero__image-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.hero__image--animated:hover {
  transform: scale(1.05);
}

.btn-watch-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--title-color);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-watch-video:hover {
  background-color: var(--title-color);
}

.btn-watch-video i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* -----------------------------
   Seção de Cartões de Informação
----------------------------- */
/* -----------------------------
   Seção de Cartões de Informação - Circular
----------------------------- */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem 0;
}

.info-card {
  background-color: var(--background-color);
  width: 250px;
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.card__front,
.card__back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.card__front {
  background-color: var(--background-color);
  color: var(--title-color);
  transform: rotateY(0deg);
}

.card__back {
  background-color: var(--background-color);
  color: var(--text2-color);
  transform: rotateY(180deg);
}

.info-card:hover .card__front {
  transform: rotateY(180deg);
}

.info-card:hover .card__back {
  transform: rotateY(360deg);
}

.card__front h3 {
  font-size: 1.2rem;
  text-align: center;
  padding: 0 10px;
}

.card__back p {
  font-size: 0.9rem;
  text-align: center;
  padding: 0 15px;
}

.card__front img,
.card__back img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}


/* -----------------------------
   Seção Serviços
----------------------------- */

body {
  background-color: #ffffff;
}

.servicos {
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.servicos__titulo {
  text-align: center;
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.servicos__titulo::after {
  content: '';
  width: 90px;
  height: 4px;
  background-color: var(--title-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.servicos__design {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 0 auto;
  border-radius: 50%;
}

.central-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.central-logo__img {
  width: 160px;
  height: 100px;
}

.central-logo span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--central-logo-color);
  font-weight: bold;
}

.service-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  background-color: var(--background-color);
  border-radius: 100%;
  transform: translate(-50%, -50%) rotate(calc(45deg * var(--i))) translate(280px) rotate(calc(-45deg * var(--i)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--title-color);
  transition: transform 0.9s ease, background-color 0.3s ease, z-index 0.3s ease;
  cursor: pointer;
  z-index: 2;
  border: 3px solid var(--title-color);
  perspective: 1000px;
}

.service-circle:hover,
.service-circle.selected {
  transform: scale(2) translate(-50%, -50%) rotate(calc(45deg * var(--i))) translate(0px) rotate(calc(-45deg * var(--i)));
  background-color: var(--background-color);
  z-index: 70;
}

.service-circle:hover .inner,
.service-circle.selected .inner {
  transform: rotateY(180deg);
}

.service-circle .inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.service-circle .front,
.service-circle .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.service-circle .front {
  background-color: var(--background-color);
  border-radius: 50%;
}

.service-circle .back {
  background-color: var(--background-color); /* Cor de fundo */
  border-radius: 50%; /* Torna o fundo circular */
  color: var(--title-color); /* Cor do texto */
  transform: rotateY(180deg); /* Define a rotação para o flip */
  font-size: 0.6rem; /* Tamanho da fonte para descrição */
  padding: 20px; /* Espaçamento interno */
  display: flex; /* Alinhamento de conteúdo */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Centraliza o texto */
  line-height: 1.4; /* Ajusta o espaçamento entre linhas para legibilidade */
  overflow: hidden; /* Impede que o texto ultrapasse os limites do círculo */
  box-sizing: border-box; /* Garante que padding esteja incluído no tamanho total */
}



.service-circle:hover {
  transform: scale(2) translate(-50%, -50%) rotate(calc(45deg * var(--i))) translate(0px) rotate(calc(-45deg * var(--i)));
  background-color: var(--background-color);
  z-index: 70;
}

.service-circle.selected {
  transform: translate(-50%, -50%) scale(2);
  top: 50%;
  left: 50%;
  background-color: var(--background-color);
  z-index: 70;
}


.central-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.central-logo__img {
  width: 160px;
  height: 100px;
}

/* Ícones dentro dos círculos */
.servicos__icon {
  font-size: 2.5rem;
  color: var(--icon-color);
  margin-bottom: 10px;
}

.service-circle__text {
  font-size: 1.1rem;
  padding: 0 10px;
  word-wrap: break-word;
}

.servicos__design::after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .servicos__design {
      width: 400px;
      height: 400px;
  }

  .service-circle {
      width: 90px;
      height: 90px;
      transform: translate(-50%, -50%) rotate(calc(45deg * var(--i))) translate(180px) rotate(calc(-45deg * var(--i)));
  }

  .servicos__design::before,
  .servicos__design::after {
      height: 180px;
  }
}

@media (max-width: 480px) {
  .servicos__design {
      width: 300px;
      height: 300px;
  }

  .service-circle {
      width: 70px;
      height: 70px;
      transform: translate(-50%, -50%) rotate(calc(45deg * var(--i))) translate(120px) rotate(calc(-45deg * var(--i)));
  }

  .servicos__design::before,
  .servicos__design::after {
      height: 120px;
  }

  .servicos__titulo {
      font-size: 2rem;
  }

  .service-circle__text {
      font-size: 0.8rem;
  }
}

/* -----------------------------
   Seção Startups
----------------------------- */

.startups-section {
  padding: 80px 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--title-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.startups-section h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 40px;
}

.startups-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.startup-card {
  width: 300px;
  height: 650px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

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

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease;
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  backface-visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-front {
  background-color: var(--background-color);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-front .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  object-fit: cover;
  pointer-events: none;
}

.card-back {
  background-color: #b2dfdb;
  color: var(--text2-color);
  transform: rotateY(180deg);
  overflow-y: auto;
}

.card-back .card-back-image {
  width: 200px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 10px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--title-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.timeline-item.active {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: -31px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--title-color);
  border-radius: 50%;
  border: 4px solid var(--background-color);
  box-shadow: 0 0 0 4px var(--title-color);
}

.timeline-item h4 {
  margin-bottom: 5px;
  color: var(--title-color);
}

.timeline-item p {
  color: var(--text-color);
}

.btn-saiba-mais {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-saiba-mais:hover {
  background-color: var(--title-color);
  color: var(--background-color);
}

.startup-card:hover .card-front {
  opacity: 0;
  transform: rotateY(180deg);
}

.startup-card:hover .card-back {
  opacity: 1;
  transform: rotateY(0);
}

.card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* -----------------------------
   Seção Parceiros
----------------------------- */
.parceiros {
  padding: 80px 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}

.parceiros__titulo {
  text-align: center;
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 40px;
}

.parceiros__titulo::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--title-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.parceiros__logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.parceiros__logo, .rotaoeste {
  width: 150px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.parceiros__logo:hover, .rotaoeste:hover {
  filter: grayscale(0%);
}

/* -----------------------------
   Seção Início
----------------------------- */
.inicio-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 10%;
  background-color: var(--secondary-color);
}

.inicio-image img {
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: contain;
}

/* -----------------------------
   Seção Sobre Nós
----------------------------- */
.sobre-nos-section {
  padding: 80px 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--title-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.sobre-nos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sobre-nos-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
}

.sobre-nos-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
}

.sobre-nos-image .responsive-img {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 992px) {
  .sobre-nos-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-nos-image {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .sobre-nos-text p {
    font-size: 1rem;
  }
}

/* -----------------------------
   Seção Contato
----------------------------- */
.contato-section {
  padding: 80px 20px;
  background-color: var(--background-color);
  text-align: center;
  color: var(--title-color);
}

.contact-item .contact-icon {
  color: var(--background-color);
}

.contato-titulo {
  font-size: 2.5rem; 
  color: var(--title-color);
  margin-bottom: 20px;
}

.contato-titulo::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--title-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contato-descricao {
  font-size: 1.2rem;
  color: var(--title-color);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start; 
  margin-bottom: 60px;
}

.social-icons-container {
  display: flex;
  gap: 15px;
}

.contact-info, .contact-form-container {
  flex: 1 1 400px;
  max-width: 600px;
}

.contact-info {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--title-color);
  min-width: 30px;
  text-align: center;
}

.phone-number, .email-link, .endereco {
  font-size: 1rem;
  color: var(--background-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover, .email-link:hover {
  color: var(--background-color);
}

.social-media {
  margin-top: 20px;
  text-align: left;
}

.social-media h3 {
  margin-bottom: 15px;
  color: var(--title-colorr);
  font-size: 1.2rem;
}

.social-ld {
  font-size: 1.2rem;
  color: var(--background-colorr);
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-ld:hover {
  color: #0A66C2;
  transform: scale(1.2);
}

.social-in {
  font-size: 1.2rem;
  color: var(--background-color);
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-in:hover {
  color: #E33E50;
  transform: scale(1.2);
}

.contact-form-container {
  background-color: var(--background-color);
  padding: 40px; 
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 25px;
  color: var(--title-color);
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 18px; 
  border: 1px solid var(--title-color);
  border-radius: 6px;
  background-color: var(--background-color);
  resize: vertical;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  color: var(--text2-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--title-color);
  background-color: var(--background-color);
  outline: none;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--title-color);
  color: var(--background-color);
  border: none;
  border-radius: 30px; 
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* -----------------------------
   Ícone do WhatsApp
----------------------------- */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 10px;
    right: 10px;
  }
}

/* ----------------------------
       Footer
----------------------------- */
footer {
  background: linear-gradient(135deg, #080404, #38000D);
  color: #FFFFFF; /* Cor do texto */
  padding: 40px 20px;
}

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

.footer-section {
  flex: 1 1 200px;
}

.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
}


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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--text-color-pink);
}

.social-icons-container {
  display: flex;
  gap: 15px;
}

.social-icon {
  background-color: #25D366; /* Cor de fundo para WhatsApp */
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.newsletter-form button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background-color: var(--secondary-color);
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #128C7E; /* Cor mais escura para o hover */
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #FFFFFF;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
}

.footer-bottom span {
  font-size: 0.9rem;
  color: #FFFFFF;
}

.footer-bottom a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--secondary-color);
}

/* Responsividade para Footer */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-section {
      flex: 1 1 100%;
      text-align: center;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 10px;
  }
}

/* -----------------------------
   Animações Adicionais
----------------------------- */
@keyframes swingZoom {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(-3deg);
  }
}

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

/* -----------------------------
   Animações de Scroll
----------------------------- */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* -----------------------------
   Responsividade Geral
----------------------------- */
@media (max-width: 1200px) {
  .servicos__cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .servicos__cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline-dot {
    left: -26px;
  }

  .timeline-item h4 {
    font-size: 1.1rem;
  }

  .timeline-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .timeline {
    padding-left: 25px;
  }

  .timeline-dot {
    left: -21px;
    width: 16px;
    height: 16px;
  }

  .timeline-item h4 {
    font-size: 1rem;
  }

  .timeline-item p {
    font-size: 0.9rem;
  }
}