html{
    scroll-behavior: smooth;
}

:root {
    --bg: #fff;
    --text: #111;
    --accent: #00bcd4;
}
  
body.dark {
    --bg: #111;
    --text: #fff;
    --accent: #00e5ff;
}
 /*-----se quiser voltar so ativar*/ 
/*--body {
    font-family: Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.4s ease, color 0.4s ease;
}--*/

#cotacao,
#coleta {
  scroll-margin-top: 100px; /* ajuste se tiver cabeçalho fixo */
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
  
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg);
    color: var(--text);
    box-shadow: 0 2px 4px #333399;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #333399;
    }

.header, .mobile-nav, .menu-toggle, .mode-toggle, .nav a, .mobile-nav a {
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
    
}
  
/*-------efeito no logo ao acessar o site-----------------------------------------*/
.logo {
  width: 150px; /* ajuste conforme necessário */
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*------regula o tamanho do ogo conforme o site-------------------------------------------------------*/
/* Estilo para desktop */
.header .logo img {
  width: 210px; /* ou o tamanho desejado para o logo em desktop */
}

/* Estilo para mobile */
@media (max-width: 768px) {
  .header .logo img {
    width: 200px; /* ou o tamanho desejado para o logo em mobile */
  }
}


/*--Dica: Evite usar width e height fixos
 em px se quiser que o logo se adapte a diferentes tamanhos de tela.--*/
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    width: 20vw; /* 20% da largura da viewport */
    max-width: 120px;
    height: auto;
}
.nav {
    display: flex;
    gap: 1rem;
    /*--posso deixar um GAP:20PX--*/
}

  /*--------altera cor da fonte menu -------------------------------------------*/
.nav a, .mobile-nav a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

 
.nav a:hover, .mobile-nav a:hover {
    transform: translateX(3px);
    color: #fdc710;
}

  .nav a i,
.mobile-nav a i {
  transition: transform 0.3s ease;
}

.nav a:hover i,
.mobile-nav a:hover i {
  transform: translateY(-2px) scale(1.1);
}

  .menu-toggle, .mode-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color:white; /*--cor ICONE da lua e hamburguer-*/
    cursor: pointer;
    transition: color 0.3s ease;
}
  
  /*----menu hamburger e  claro/escuro----*/
  .menu-toggle:hover, .mode-toggle:hover {
    color:white;
}
  
.actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
  
  /* Mobile Navigation */
  .mobile-nav {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background-color: #a0a0f8;
}
  
.mobile-nav a {
    padding: 0.5rem 0;
}
  
.mobile-nav.show {
    opacity: 1;
  max-height: 500px;
  transform: translateY(0);
}
  
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
}
  
main {
    padding: 2rem;
}

body.dark .header,
body.dark .mobile-nav {
  background-color: #1c1c1c;
  color: white;
}

body.dark .nav a,
body.dark .mobile-nav a,
body.dark .menu-toggle,
body.dark .mode-toggle {
  color: white;
}

body.dark .nav a:hover,
body.dark .mobile-nav a:hover,
body.dark .menu-toggle:hover,
body.dark .mode-toggle:hover {
  color: #fdc710;
}

body {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
}

/* Estilo para modo escuro ativado por classe "dark" no <body> do form cotaçao*/
body.dark .step-form-container label,
body.dark .step-form-container  {
  color: black;
}

/*------------slide do site------------------------------------------------------*/
.slider {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background:"";
}
  
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: center;   
}
  
.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}
  
.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 12px; 
}

  /* Texto sobre imagem */
.caption {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-radius: 0 0 12px 12px;
}
  
.caption h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}


/*--------COLORIR UMA PALAVRA EM UMA FRASE----*/
.destaque{
  color: #ff9800; /* Laranja vibrante */
  font-weight: bold;
}

.link-destaque{
  color: red;
}

.caption p {
    font-size: 1rem;
}

.slide-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background-color: #ffff66;
    color: #170859;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}
  
.slide-btn:hover {
    background-color: #333399;
    color: white;
    transform: scale(1.05);
}

 /* Botão de seta atras do slide deixar oculto */
.slider-btn,.prev{
  display: none;
}

  /* Botão menor em telas pequenas */
  @media (max-width: 480px) {
    .slide-btn {
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
      
    }
}
  
  /* Responsividade */
  @media (max-width: 768px) {
    .slider {
      height: 200px;
      display: none;/*--ocultado no celular*/
    }
  
    .caption h3 {
      font-size: 1.2rem;
    }
  
    .caption p {
      font-size: 0.9rem;
    }
}
  
  @media (max-width: 480px) {
    .slider {
      height: 160px;
    }
  
    .caption {
      padding: 0.5rem;
    }
  
    .caption h3 {
      font-size: 1rem;
    }
  
    .caption p {
      font-size: 0.8rem;
    }
}

/*-----------------estilo popup no botao slide-----*/

  .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

form input,
form button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #45a049;
}

 /*------------historia empresa-------------------------------------------------*/ 
.tres-colunas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 2rem;
    background: #f9f9f9;
  }
  
  .coluna {
    flex: 1 1 calc(33.333% - 2rem);
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .coluna:hover {
    transform: translateY(-5px);
  }
  
  .coluna img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .coluna h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
  }
  
  .coluna p {
    color: #444;
    font-size: 1rem;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .coluna {
      flex: 1 1 100%;
    }
  }
  
/*----------------texto digitando sozinho com botao anexar arquivos--------*/
.secao-fundo {
    position: relative;
    background-image: url('img/trabalhe.png'); /* substitua pela sua imagem */
    background-size: cover;
    background-position: center;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }

  .conteudo-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* overlay escuro para melhor contraste */
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
  }
  
  .conteudo-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  /*-.btn-anexar,/*---desabilitado*/
  .btn-enviar {
    display: block;
    width: 200px;
    margin: 0.5rem auto;
    padding: 0.7rem;
    border: none;
    border-radius: 5px;
    background-color: #00bfff;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
  }
  
  .btn-anexar:hover,
  .btn-enviar:hover {
    background-color: #0077b6;
  }
  
  #arquivoSelecionado {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #aadfff;
  }
  
  /* Efeito de digitação */
  .digitando::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 5px;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .conteudo-overlay h2 {
      font-size: 1.5rem;
    } 
    .secao-fundo{ /*--oculta a img do fundo-no celular-*/
      background-image: none;
      background-color:white;
    }
    
  }

  /*---------fomulario para coleta---------------------------*/
.step-form-container {
    background-color: #f0f4f8; /* Altere a cor conforme o visual desejado */
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1100px;
}

#stepForm {
  max-width: 1000px;
  margin: 0 auto;
}

.form-step {
  display: none;
  flex-wrap: wrap;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-step.active {
  display: flex;
  animation: fade 0.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-col {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.form-col label {
  font-weight: bold;
  margin-bottom: 0.4rem;
  color: black;
}


.form-col input,
.form-col textarea,
.form-col select {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

h1 {
  font-size: 2.2em;
  color: #333399;
  text-align: center;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideCenter 1s ease-out forwards;
  margin-bottom: 20px;
}

/* Animação de entrada lateral */
@keyframes slideCenter {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btns {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

button {
  padding: 0.8rem 1.5rem;
  border: none;
  background-color: #00bfff;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0077b6;
}

@media (max-width: 768px) {
  .form-col {
    flex: 1 1 100%;
  }
}

/*--------------TERMOS DE ACEITE-----------*/

.termo-aceite {
  margin-top: 20px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.termo-aceite label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: black;
}

.termo-aceite input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4CAF50; /* cor do checkbox (verde vibrante) */
  cursor: pointer;
}

.termo-aceite a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 500;
}

.termo-aceite a:hover {
  text-decoration: underline;
}


/*--------------flip com colunas area atendimento-----------------------------------------------------*/
.flip-section {
  padding: 60px 20px;
  background: #b4b4fa;
  text-align: center;
}

.flip-title {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.flip-card {
  width: 100%;
  height: 180px;
  perspective: 1000px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-front img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.flip-back {
  background: #1e1e1e;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-back h3 {
  margin: 0 0 10px 0;
  font-family:'arial';
  font-size: 18px;/*--tamanho da fonte--*/
  font-weight: 200;
}

.flip-back .btn {
  background: #4fc3f7;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* Responsivo: tablets - 2 colunas */
@media (max-width: 991px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsivo: celular - 1 coluna */
@media (max-width: 600px) {
  .flip-grid {
    grid-template-columns: 1fr;
    width: 50%;
  }
}


/*---------------------texto digitando sozinho-------------------------------------------*/

.typing-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #121212;
}

.typed-lines {
  max-width: 90%;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00e5ff;
  line-height: 1.8;
}

.typed-lines a {
  color: #00ffcc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.typed-lines a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.typed-lines a i {
  font-size: 1.2rem;
  color: #25d366;
  transition: transform 0.3s;
}

.typed-lines a:hover i {
  transform: rotate(10deg) scale(1.2);
}

.typing-line {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid #00e5ff;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { border-color: #00e5ff; }
  50% { border-color: transparent; }
}

@media (max-width: 600px) {
  .typed-lines {
    font-size: 1rem;
    display: none; /* oculta no celular*/
  }
  
}

/*---------------------chat no site-------------------------------------------------*/

/* Botão flutuante */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fdc710;
  color: white;
  padding: 14px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

/* Widget do chat */
.chat-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 340px;
  max-width: 90vw;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

/* Oculto por padrão */
.hidden {
  display: none;
}

.chat-header {
  background: #6363eb;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-weight:300;
}

.chat-body {
  flex: 1;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
  background: #f9f9f9;
}

/*--------botao fechar mudando de cor*/
.chat-header button#chatClose {
  background: transparent;
  border: none;
  color: #ff4d4f; /* vermelho suave */
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.chat-header button#chatClose:hover {
  background-color: #6363eb;
  color: white;
}

.msg {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  max-width: 80%;
  word-wrap: break-word;
}

.msg.bot {
  background: #e0e0e0;
  align-self: flex-start;
}

.msg.user {
  background: #0d6efd;
  color: white;
  align-self: flex-end;
}

.chat-footer {
  display: flex;
  align-items: center;
  padding: 10px;
  /*--gap: 8px;--*/
  background: #f2f2f2;
  border-top: 1px solid #ddd;
}

.chat-footer textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
  min-height: 42px;
  max-height: 150px;
  line-height: 1.4;
  overflow-y: auto;
  outline: none;
}

.send-btn,
.emoji-btn {
  background: #0d6efd;
  border: none;
  padding: 10px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.emoji-btn {
  background: #f1f1f1;
  font-size: 1.2rem;
}

.send-btn:hover {
  background: #0846c1;
  
}


.emoji-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-right: 8px;
}
.emoji-btn:hover {
  background: #e0e0e0;
}

.send-btn svg {
  fill: white;
}


/*--------secao-----portfolio---------------------------------------------*/
.download-section {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4;
}

.download-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.download-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #0d6efd;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s;
}

.download-btn:hover {
  background-color: #084dc2;
  transform: scale(1.05);
}

/*-------------------------------cotaçao-----------------------*/

h1{
  padding: 30px 0 0 30px ;
}
.cotacao-section2 {
  background: linear-gradient(135deg, #f0f4ff, #e0eaff);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1000px; /*aumenta o fubdo*/
}

.form-step2 {
  display: none;
}

.form-step2.active {
  display: block;
}

.form-row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group select:focus {
  border-color: #3f51b5;
}

.input-group {
  flex: 1; /* agora 2 por linha */
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.input-group input {
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* botao proximo*/
.step-buttons2 {
  display: flex;
  justify-content: space-between;
  gap: 10px;

}

/* Botão Voltar */
.step-buttons2 .prev-btn2 {
  background-color: #ccc;
  color: #333;
  margin-right: 10px;
}

.step-buttons2 .prev-btn2:hover {
  background-color: #aaa;
  transform: scale(1.03);
}

/* Botão Enviar */
.step-buttons2 button[type="submit"] {
  background-color: #28a745;
  color: #fff;
}

.step-buttons2 button[type="submit"]:hover {
  background-color: #218838;
  transform: scale(1.03);
}

button {
  padding: 10px 20px;
  background: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}

@media (max-width: 768px) {
  .input-group {
    flex: 1 1 100%;
  }

  .step-buttons2 {
    flex-direction: column;
  }
}

/*----------TERMO ACEITE COTACAO--------*/
.termo-aceite {
  margin: 20px 0;
  font-size: 14px;
  color: #333;
}

.termo-aceite label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.termo-aceite a {
  color: #0077cc;
  text-decoration: underline;
}


/*----------------RODAPE -------------------------------------------------*/
.site-footer {
  background: #4e4b4b;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3, .footer-column h4 {
  margin-bottom: 15px;
  color: #fdc710;
}

.footer-column p, .footer-column ul, .footer-bottom {
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
 
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fdc710;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-column .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-column .social-icons a {
  color: rgba(0, 0, 0, 0.50);
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.07);
  width: 40px; /* Define a largura */
  height: 40px; /* Define a altura */
  border-radius: 50%; /* Garante o formato circular */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-column .social-icons a:hover {
  background-color:  rgb(201, 198, 198);
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 0 10px;
  }
}

/*-------------nao fez a retirada da coleta--------------------------------------*/

.form-section {
  max-width: 500px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  color:white;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

button:hover {
  background-color: #333378;/*--ao passar o mouse na lua muda a cor */
}
.secao-nao-retirado {
  max-width: 600px;
  margin: 60px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.secao-nao-retirado h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.secao-nao-retirado .form-group {
  margin-bottom: 15px;
}

.secao-nao-retirado label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.secao-nao-retirado input,
.secao-nao-retirado select,
.secao-nao-retirado textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.secao-nao-retirado button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  border: none;
  font-size: 16px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.secao-nao-retirado button:hover {
  background-color: #218838;
}


#nao-retirado-section {
  background-color: #cdcdf7;  /* Cor de fundo diferente para a seção do formulário */
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 
}

#titulo-nao-retirado {
  color: red;
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

form .linha {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

form .campo {
  flex: 1;
  min-width: 220px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
  margin-top: 10px;
}

form button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #1da851;
}

/* 🔧 RESPONSIVIDADE: Ocultar formulário no mobile */
@media (max-width: 600px) {
  #nao-retirado-section {
    display: none;
  }
}

/*---------------------menu com icone de acessibilidade--------------------------------*/
/* Efeito de pulsação */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.acessibilidade-wrapper {
  position: fixed;
  bottom: 20px;
  right: 90px; /* Lado do botão WhatsApp */
  z-index: 9999;
}

#btnAcessibilidade {
  font-size: 24px;
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  animation: pulse 2.5s infinite;
  transition: background-color 0.3s, transform 0.3s;
}

#btnAcessibilidade:hover {
  background-color: #333399;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 8px #333399, 0 0 16px #333399;
}

.acessibilidade-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10000;
}

.acessibilidade-menu button {
  margin: 4px 0;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background-color: #eee;
  border-radius: 4px;
  transition: background 0.2s;
}

.acessibilidade-menu button:hover {
  background-color: #333399;
}

/*---------------------NOSSA FAQ DE PERGUNTAS E RESPOSTAS-----------*/
.faq-section {
  padding: 40px;
  max-width: 800px;
  margin: auto;
  color: #333;
}

i.fas.fa-handshake::before{/*--muda cor icone--*/
  color:black;
}

i.fas.fa-bullseye::before{/*--muda cor icone--*/
  color: black;
}

i.fas.fa-eye::before{/*--muda cor icone--*/
  color: black;
}

.faq {
  padding: 40px 20px;
  background-color: #f7f7f7;
  color: black;
  border-radius: 8px;
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  /*-color: #333399;--*/
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  background: rgba(0, 0, 0, 0.15);
  color: white;
  border: none;
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #0056b3;
}

.faq-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-answer.open {
  padding: 15px 20px;
  max-height: 500px; /* suficiente para abrir */
}

.faq-resposta {
  display: none;
  padding: 10px;
  background-color: #f9f9f9; /* fundo claro padrão */
  color: #333; /* texto escuro padrão */
  border-left: 3px solid #007bff;
  margin-top: 5px;
  border-radius: 4px;
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
  .faq-section,
  .faq {
    padding: 20px 10px;
  }

  .faq h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-icon {
    margin: 5px 0 0 auto;
  }

  .faq-answer.open {
    padding: 12px 16px;
  }
}

/* Quando o modo escuro estiver ativo------------------------ */
.dark-mode .faq-resposta {
  background-color: #1e1e1e; /* fundo escuro */
  color: #fff; /* texto branco */
}

/*----link de juntas no slide------------------*/
.link-destaque {
  color: #fdc710;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}

.link-destaque:hover {
  color: #00e5ff;
 
}

/*---------------DARK ao clicar no botao E COR DA BARRA DE ROLAGEM -------------------------------------*/

/* Estilos padrão (Modo Claro) */
body {
  background-color: #fff;
  color: #333;
  font-family: Arial, sans-serif;
  --scrollbar-color: #007bff; /* Cor do "polegar" da barra de rolagem */
  --scrollbar-track-color: #f1f1f1; /* Cor do fundo da trilha */
}

/* Barra de rolagem personalizada no modo claro */
body:not(.dark-mode)::-webkit-scrollbar {
  width: 12px;
}

body:not(.dark-mode)::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color);
  border-radius: 10px;
}

body:not(.dark-mode)::-webkit-scrollbar-thumb {
  background: var(--scrollbar-color);
  border-radius: 10px;
}

body:not(.dark-mode)::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

/* Estilos para o modo escuro */
body.dark-mode {
  background-color: black;
  color: #fff;
}

body.dark-mode ::-webkit-scrollbar {
  width: 12px;
}

body.dark-mode ::-webkit-scrollbar-track {
  background: #444; /* Cor do fundo da trilha no modo escuro */
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: #888; /* Cor do "polegar" da barra de rolagem no modo escuro */
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: #555; /* Cor do "polegar" quando passar o mouse no modo escuro */
}

/*-------------------Missao, Visao , Valores-------------------------------------------------------*/
.missao-visao-valores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.missao-visao {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.missao, .visao {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  width: 48%; /* Ajusta para lado a lado */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.missao h2, .visao h2, .valores h2 {
  font-size: 24px;
  margin-top: 10px;
}

.missao p, .visao p {
  font-size: 16px;
  color: #555;
}

.valores {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.valores h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.valores-lista {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas */
  gap: 30px;
  margin-top: 20px;
}

.valor-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.valor-item i {
  font-size: 40px;
  color: #007bff;
}

.valor-item strong {
  font-size: 18px;
  color: #333;
}

.valor-item p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .missao-visao {
    flex-direction: column;
    align-items: center;
  }
  .missao, .visao {
    width: 80%; /* Ajuste para telas menores */
  }

  .valores-lista {
    grid-template-columns: 1fr; /* Ajuste para uma coluna em telas pequenas */
    
  }

}


/* Estilos do botão----LIBRAS---------------------------------------------------------- */
/* Reset básico */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo geral do site */
body, html {
  height: auto;
  min-height: 100%;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

/* Conteúdo */
.site-content {
  padding: 2rem;
  position: relative;
}

/* Botão Libras fixo no canto esquerdo inferior */
.libras-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  animation: fadeIn 1s ease forwards;
}

.libras-btn {
  background-color: #007BFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
  transform-origin: center center;

}

.libras-btn i{
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.libras-btn:hover {
  width: 270px;
  border-radius: 30px;
  justify-content: start;
  padding-left: 20px;
  transform: scale(1.1); /* efeito de esticar, como mola */
}

/*------expandi---- a icone------e mostra um texto*/
.libras-text {
  opacity: 0;
  margin-left: -5px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  position: absolute;
  left: 70px; /* espaçamento ao expandir */
  font-size: 17px;
}

.libras-btn:hover .libras-text {
  opacity: 1;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border: 2px solid #007BFF;
  border-radius: 8px;
  z-index: 1000;
  color: black;
}

.popup-content h2 {
  margin-bottom: 10px;
}

#closePopup {
  margin-top: 20px;
  padding: 10px 20px;
  background: #007BFF;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
/*---------------oculta somente no celular--- libras---*/
@media (max-width:768px){
  .libras-container {
    display: none;
  }
}

/*---------------oculta somente no celular--- ACESSIBILIDADE---*/
@media (max-width:768px){
  .acessibilidade-wrapper{
    display: none;
  }
}

/*---------------oculta somente no celular--- CHAT---*/
@media (max-width:768px){
  .chat-toggle {
    display: none;
  }
}

/*---------whatsapp---SOMENTE NO CELULAR----NAO APARECERA NO DESKTOP---------------*/
/* Oculta por padrão */
.whatsapp-button {
  display: none;
}

/* Exibe no mobile com animação */
@media (max-width: 768px) {
  .whatsapp-button {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeSlideIn 0.8s ease forwards;
  }

  .whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #1ebe5b;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/*----------ICONE DO WHATS PULSANDO------NO SITE-------------------------------*/
 .whatsapp-button {
    animation: fadeSlideIn 0.8s ease forwards, pulse 2s infinite ease-in-out;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }
}


/*------------------BOTÃO-----------------------------------popup de reclamao no site-----*/

/* Botão */
#abrirReclamacao {
  padding: 10px 20px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-content {
  background: white;
  max-width: 400px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.popup-content textarea {
  width: 100%;
  padding: 10px;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.popup-content button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content .fechar {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Botão flutuante à esquerda do botão de acessibilidade -------------------------------------------------*/
.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 160px; /* Ajuste conforme necessário para o botão de acessibilidade */
  background-color: #28a745; /* Cor de fundo alterada para verde */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Popup */
.popup {
  display: none; /* Inicialmente escondido */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centraliza o popup */
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 15px; /* Diminui o padding */
  width: 260px; /* Reduz a largura do popup */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease; /* Transição suave para o popup aparecer */
}

/* Animação de exibição */
.popup.show {
  opacity: 1;
}

/* Conteúdo do popup */
.popup-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup h2 {
  font-size: 18px;
  margin-bottom: 10px;
 
  text-align: center;
}

.popup textarea {
  width: 100%;
  height: 80px;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
}
.popup textarea:focus {
  border-color: #28a745; /* Cor de foco mais suave */
}

.popup button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px;
  margin-top: 10px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #218838;
}

/* Botão de fechar */
.popup .fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup .fechar:hover {
  color: #dc3545; /* Cor de fechar com hover */
}

/* Overlay de fundo escuro ---------------------------------------*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9998;
}

/* Exibir overlay */
.overlay.show {
  display: block;
}

/* Botão de Reclamação ----------------------*/
.btn-reclamacao {
  position: fixed;
  bottom: 20px;
  right: 170px;
  background-color: #dc3545;
  color: white;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:768px){ /*oculta no celular-*/
  .btn-reclamacao{
    display: none;
  }

}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  width: 360px;
  height: auto;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup.show {
  display: block;
}

.popup h2 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

.popup textarea {
  width: 100%;
  height: 80px;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
}

.popup button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px;
  margin-top: 10px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.popup .fechar {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

/*----------------------------form reclamacao----*/
/* Ícones e estilos */
.input-container {
  position: relative;
  margin-bottom: 15px;
}

.input-container i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #777;
}
.popup input, .popup textarea {/*---novos inputs no form de reclamacao*/
  width: 100%;
  /*--margin-bottom: 10px;*/
  padding: 12px 20px 12px 40px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup button[type="submit"] {
  width: 100%;
  background: #09881e;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

#whatsapp {
  padding-left: 40px; /* Para o ícone */
}

/* Mensagens de erro */
#errorMessages {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

/*------------PAGINA DE MANUTENÇAO-----------*/
/*html, body { // afeta o site na barra de rolagem
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}*/

.maintenance-overlay {
  position: fixed;
  inset: 0;
  background: url('img/bloqueio.png') no-repeat center center;
  background-size: cover;
  color: white;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}

h1 {
  font-size: 40px;
  color: red;
}

.maintenance-content {
  max-width: 500px;
}

.countdown {
  font-size: 2rem;
  margin: 1rem 0;
}

.whatsapp-button,
.enter-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-button:hover,
.enter-button:hover {
  background: #1ebe5d;
}

.loader {
  margin-top: 2rem;
  border: 4px solid #fff;
  border-top: 4px solid #25d366;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.typing {
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  /*border-right: 2px solid white;*/ 
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  /*animation: blink-caret 0.75s step-end infinite;*/
}



@media (max-width: 480px) {
  .whatsapp-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}









































/*--------------bolinha escrvendo tipo maquina de escrever----*/

/*--.maquina-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-family: 'Courier New', monospace;
  padding: 40px;
  color: #333;
  text-align: center;
  height: 100px;
}

.icone {
  font-size: 36px;
  color: #ff4081;
}

.texto-maquina::after {
  content: '';
  animation: blink 0.7s infinite;
  color: #ff4081;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}--*/



