@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap");

/* Resetando estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Limitação de largura */
.limitar-secao {
  width: 100%;
  max-width: 1440px;
  margin: 0px auto;
  
}

/* Estilo global do body */
body {
  margin: 0;
  background-color: #eeeeee;
  font-size: 16px;
}
/* ------------- CONFIGURAÇÕES GLOBAIS ------------ */

/* TOPO */
header {
  position: fixed;
  width: 100%;
  height: 150px;
  background-color: #e9e8d5;
  z-index: 10;
}

.pjmain {
  padding-top: 120px;
}

.container-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.container-img-logo {
  max-width: 170px;
  position: relative;
  top: 0px;
}

.container-img-logo img {
  width: 100%;
  height: auto;
}

.container-links {
  display: flex;
  gap: 10px;
}

.container-links a {
  font-size: 22px;
  color: #3d3d3d;
  text-decoration: none;
  padding: 15px;
  position: relative;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.container-links a:hover {
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
}

/* BOTÃO MENU HAMBURGUER */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--cor-texto, #000);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Animação do botão ativo */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
      BACKGROUND DO CARROSSEL
================================= */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  overflow: hidden;
}

.carousel-inner {
  width: 100%;
  height: 100%;
}

.carousel-item {
  transition: opacity 1.5s ease-in-out !important;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
}

/* CONTROLES DO CARROSSEL */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: url("https://cdn-icons-png.flaticon.com/512/271/271220.png");
  background-size: contain;
  width: 30px;
  height: 30px;
  filter: invert(85%);
}

.carousel-control-next-icon {
  transform: rotate(180deg);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.8;
}


/* ================================
          CARD PRINCIPAL
================================= */
main {
  background: #eeeeee;
}

.card-principal {
  max-width: 95%;
  background: #eeeeee;
  margin: 10px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-principal h1 {
  font-size: clamp(35px, 5vw, 30px);
  color: #333;
  margin-bottom: 10px;
}

.card-principal h2 {
  font-size: clamp(20px, 4vw, 22px);
  color: #333;
  margin-bottom: 20px;
}

.card-principal p {
  font-size: clamp(18px, 3.5vw, 18px);
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-principal span {
  font-weight: bold;
  color: #ddc771;
}

/* ========================
    RODAPÉ - Estilo base
======================== */
footer {
  background-color: #e9e8d5ac;
  padding: 40px 20px 10px;
  color: #3d3d3d;
}

.container-rodape {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  padding-bottom: 20px;
}

.rodape-coluna {
  flex: 1;
  min-width: 250px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-coluna img {
  width: 180px;
  margin-bottom: 10px;
}

.rodape-coluna h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #3d3d3d;
  font-weight: 700;
}

.rodape-coluna p,
.rodape-coluna a {
  font-size: 16px;
  color: #3d3d3d;
  text-decoration: none;
}

/* Hover na coluna Contato */
.contato-coluna p a {
  color: #3d3d3d;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.contato-coluna p a:hover {
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
}

.mapa-site ul {
  list-style: none;
  padding: 0;
}

.mapa-site ul li {
  margin-bottom: 10px;
}

.mapa-site ul li a {
  color: #3d3d3d;
  text-decoration: none;
  transition: color 0.3s;
}

.mapa-site ul li a:hover {
  color: #ffffff;
}

.redes-sociais a {
  font-size: 24px;
  margin-right: 15px;
  color: #3d3d3d;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: #ffffff;
}

.rodape-final {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.rodape-final p {
  margin: 5px 0;
  font-weight: 500;
}

.rodape-final span {
  font-weight: bold;
  font-size: 10px;
}

.rodape-final span a {
  text-decoration: none;
  color: #3d3d3d;
}

.rodape-final span a:hover {
  color: #ffffff;
  transition: color 0.3s ease;
}
/* ================================
      BOTÃO FIXO DO WHATSAPP
================================ */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button i {
  font-size: 30px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
}

/* ================================
              PROJETOS
================================ */
.projetos {
  padding: 80px 20px 40px; /* espaçamento superior para evitar sobreposição com o header */
}

.projetos h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #3d3d3d;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.projeto {
  background: #eeeeee;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projeto img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 4px solid #ddc771;
}

.projeto h2 {
  font-size: 18px;
  color: #333;
  padding: 15px;
  margin: 0 0 20px 0;
  text-align: center;
}

.projeto a {
  text-decoration: none;
  display: block;
}

.projeto:hover {
  transform: scale(1.05);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2);
}
/* ================================
   PROJETOS HTML - DETALHAMENTO
================================ */
.img-moldura {
  border: 1px solid #e9e8d5ac; /* Corrigido: sem valor no original */
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-moldura:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25);
}

.voltar-projetos {
  display: inline-block;
  margin: 30px 0 15px 0;
  background-color: #ddc771;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.voltar-projetos:hover {
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8); /* brilho interno branco */
  color: #fff;
  transform: translateY(-5px);
}

.inside {
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 20px;
}
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
  box-sizing: border-box;
}

#lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  object-fit: contain;
  transition: transform 0.3s ease;
}

#lightbox img:hover {
  transform: scale(1.02);
}

body.lightbox-ativo {
  overflow: hidden;
}
#fechar-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 100000;
  transition: transform 0.2s;
}
#fechar-lightbox:hover {
  transform: scale(1.2);
}
/* ================================
           SOBRE MIM
================================ */
.sobre {
  padding: 100px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.sobre-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.sobre-imagem {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.sobre-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 4px 4px 20px rgba(138, 137, 137, 0.386);
}

.sobre-texto {
  flex: 1 1 300px;
  background: #eeeeee;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 4px 4px 20px rgba(138, 137, 137, 0.386);
}

.sobre-texto h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sobre-texto strong {
  font-weight: bold;
  color: #ddc771;
}

/* ================================
   SEÇÃO DE SERVIÇOS
================================ */
.servicos-main {
  background: #eeeeee;
  max-width: 1200px;
  padding: 200px 50px 40px;
  margin: 0 auto 10px auto;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  box-shadow: 4px 4px 20px rgba(138, 137, 137, 0.386);
}

.servico {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 60px auto;
}

.servico:nth-child(even) {
  flex-direction: row-reverse;
}

/* Imagens dos serviços */
.servico-img {
  width: 45%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Texto dos serviços */
.servico-texto {
  width: 50%;
}

.servico-texto h2 {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.servico-texto p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* Lista personalizada */
.servico-texto ul {
  list-style: none;
  padding: 0;
}

.servico-texto ul li {
  font-size: clamp(15px, 3vw, 18px);
  color: #444;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.servico-texto ul li::before {
  content: '✓';
  font-size: 18px;
  font-weight: bold;
  color: #ddc771;
  position: absolute;
  left: 0;
  top: 0;
}

/* ================================
   CONTATO - SEÇÃO PRINCIPAL
================================ */
.contato-main-secao {
  background-color: #f7f7f7;
  padding-bottom: 60px;
}

.contato-header {
  text-align: center;
}

.contato-header h1 {
  padding-top: 250px;
  font-size: 36px;
  color: #3d3d3d;
}

/* ================================
   FORMULÁRIO DE CONTATO
================================ */
.contato-form-bloco {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.form-contato {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.form-contato input:valid,
.form-contato textarea:valid {
  border: 2px solid #ddc771;
}

.form-contato input:invalid,
.form-contato textarea:invalid {
  border: 2px solid #ddc771;
}

.form-contato button {
  background-color: #ddc771;
  color: white;
  font-weight: 600;
  border: none;
  padding: 14px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.form-contato button:hover {
  background-color: #cacac9;
}

/* Feedback do formulário */
.form-feedback {
  margin-top: 10px;
  font-weight: bold;
  color: #ddc771;
  text-align: center;
}

/* Recaptcha */
.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
  max-width: 100%;
}

/* ================================
   LINKS E ICONES
================================ */
.links-contato {
  text-align: center;
}

.links-contato p {
  font-size: 16px;
  margin: 8px 0;
  color: #444;
}

.links-contato i {
  margin-right: 8px;
  color: #ddc771;
}

.links-contato a {
  color: #444;
  text-decoration: none;
}

.links-contato a:hover {
  color: #ddc771;
}

.icones-sociais {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 28px;
  color: #3d3d3d;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #e9e8d5;
}

/* ================================
   MODAL DE AGRADECIMENTO
================================ */
.modal-agradecimento {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 9999;
}

.modal-agradecimento.ativo {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.modal-conteudo.grande {
  position: relative;
  width: 98%;
  height: 95vh;
  background: transparent; /* Removido fundo preto */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.modal-conteudo iframe {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  border: none;
}
/*   -------------------------------------------------------   */  

/* ============================================================
   RESPONSIVIDADE HEADER/TOPO
============================================================ */

/* @media 768px - Responsividade para tablets */
@media (max-width: 768px) {
  /* Ajusta altura do header */
  header {
    height: 120px;
  }

  .pjmain {
    padding-top: 100px;
    background: #eeeeee;
  }

  .container-links a {
    font-size: 18px;
    padding: 10px;
  }

  .container-img-logo {
    max-width: 140px;
  }

  /* Exibe botão menu hamburguer no tablet */
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1000;
  }
}

/* @media 480px - Responsividade para celulares */
@media (max-width: 480px) {
  header {
    height: auto;
    padding-bottom: 10px;
  }

  .pjmain {
    padding-top: 180px;
  }

  .container-topo {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .container-img-logo {
    max-width: 120px;
  }

  .container-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: var(--cor-fundo, #e9e8d5);
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    z-index: 999;
  }

  .container-links.active {
    max-height: 500px;
    opacity: 1;
  }

  .container-links a {
    font-size: 18px;
    padding: 12px;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.041);
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1000;
  }
}

/* ================================
   RESPONSIVIDADE CAROUSEL
================================= */

/* @media 768px - Responsividade para Tablets */
@media (max-width: 768px) {
  .carousel {
    height: 70vh;
  }

  .carousel-item img {
    height: 70vh;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

/* @media 480px - Responsividade para Celulares */
@media (max-width: 480px) {
  .carousel {
    height: 60vh;
  }

  .carousel-item img {
    height: 60vh;
    border-radius: 0;
    box-shadow: none;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 24px;
    height: 24px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }
}

/* ================================
   RESPONSIVIDADE CARD PRINCIPAL
================================= */

/* @media 768px - Tablets */
@media (max-width: 768px) {
  .card-principal {
    padding: 30px;
  }
}

/* @media 480px - Celulares */
@media (max-width: 480px) {
  .card-principal {
    padding: 20px;
    margin: 10px 5px;
  }
}

/* ================================
   RESPONSIVIDADE - RODAPÉ
================================ */

/* @media 768px - Tablet (ajuste em colunas e redes) */
@media (max-width: 768px) {
  .container-rodape {
    flex-direction: column;
    text-align: center;
  }

  .rodape-coluna {
    align-items: center;
    margin-bottom: 20px;
  }

  .redes-sociais a {
    margin: 0 10px;
  }
}

/* @media 480px - Celular (tamanhos menores e centralização) */
@media (max-width: 480px) {
  .rodape-coluna {
    min-width: 100%;
    padding: 0 10px;
  }

  .logo-coluna img {
    width: 150px;
  }

  .rodape-coluna h3 {
    font-size: 18px;
  }

  .rodape-coluna p,
  .rodape-coluna a {
    font-size: 14px;
  }

  .redes-sociais a {
    font-size: 20px;
    margin: 0 8px;
  }
}
/* ================================
   RESPONSIVIDADE - WHATSAPP BUTTON
================================ */

/* @media 768px - Tablet: reduz levemente o tamanho */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .whatsapp-button i {
    font-size: 26px;
  }
}

/* @media 480px - Celular: reduz mais o tamanho */
@media (max-width: 480px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-button i {
    font-size: 24px;
  }
} 

/*================================
   RESPONSIVIDADE - PROJETO DETALHADO
================================ */

/* Tablet (até 768px) */
@media (max-width: 768px) {
  .inside {
    padding: 0 15px;
  }

  .inside h1 {
    font-size: 26px;
    text-align: center;
  }

  .inside p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
  }

  .galeria {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }

  .projeto {
    margin: 20px auto;
    max-width: 90%;
  }

  .projeto img {
    border-radius: 8px;
  }
}

/* Celular (até 480px) */
@media (max-width: 480px) {
  .inside {
    padding: 0 10px;
  }

  .inside h1 {
    font-size: 22px;
  }

  .inside p {
    font-size: 15px;
  }

  .voltar-projetos {
    font-size: 14px;
    padding: 10px 20px;
    display: block;
    text-align: center;
    margin: 20px auto;
  }

  .galeria {
    padding: 5px;
    gap: 15px;
  }

  .projeto img {
    border-radius: 6px;
  }
}
/*================================
   RESPONSIVIDADE - SOBRE MIM
================================ */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-texto,
  .sobre-imagem {
    width: 100%;
    max-width: 100%;
  }

  .sobre-texto {
    padding: 20px;
  }

  .sobre-texto h1 {
    font-size: 26px;
  }

  .sobre-texto p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sobre {
    padding: 60px 10px;
  }

  .sobre-texto h1 {
    font-size: 22px;
  }

  .sobre-texto p {
    font-size: 15px;
  }
}
/* ================================
   RESPONSIVIDADE
================================ */

/* Tablets */
@media (max-width: 768px) {
  .servico {
    flex-direction: column;
    text-align: center;
  }

  .servico:nth-child(even) {
    flex-direction: column; /* Remove reverso no mobile */
  }

  .servico-img,
  .servico-texto {
    width: 100%;
  }

  .servico-img {
    max-height: 250px;
  }

  .servico-texto h2 {
    font-size: 24px;
  }

  .servico-texto p {
    font-size: 16px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .servicos-main {
    padding: 140px 20px 30px;
  }

  .servico-img {
    max-height: 200px;
  }

  .servico-texto h2 {
    font-size: 20px;
  }

  .servico-texto p {
    font-size: 15px;
  }

  .servico-texto ul li {
    padding-left: 25px;
  }

  .servico-texto ul li::before {
    font-size: 16px;
    top: 1px;
  }
}

/* ================================
   RESPONSIVIDADE
================================ */

/* Tablets */
@media (max-width: 768px) {
  .contato-header h1 {
    font-size: 28px;
    padding-top: 180px;
  }

  .form-contato {
    padding: 20px;
  }

  .form-contato input,
  .form-contato textarea {
    font-size: 15px;
  }

  .form-contato button {
    font-size: 15px;
  }

  .social-icon {
    font-size: 24px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .contato-header h1 {
    font-size: 22px;
    padding-top: 150px;
  }

  .form-contato input,
  .form-contato textarea {
    font-size: 14px;
    padding: 12px;
  }

  .form-contato button {
    font-size: 14px;
    padding: 12px;
  }

  .social-icon {
    font-size: 22px;
  }

  .icones-sociais {
    gap: 10px;
  }
}