/* =====================================================
   CONFIGURAÇÃO GERAL DO SITE
   Aqui ficam fontes, cores gerais e tamanho máximo.
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

#home {
  scroll-margin-top: 150px;
}

#institucional {
  scroll-margin-top: 80px;
}

#servicos {
  scroll-margin-top: 80px;
}

#cases {
  scroll-margin-top: 80px;
}

#orcamento {
  scroll-margin-top: 80px;
}

#contato {
  scroll-margin-top: 80px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

.limite {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* =====================================================
   TOPO - LOGO E MENU
====================================================== */
.topo {
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.topo-conteudo {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 245px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 10px 0;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #009ee2;
  transition: 0.3s;
}

.menu a:hover::after,
.menu a.ativo::after {
  width: 100%;
}

/* =====================================================
   CARROSSEL PRINCIPAL
====================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
  background: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  height: 650px;
  background: #003f73;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.8s ease;
  overflow: visible;
}

.slide.ativo {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide.saindo {
  opacity: 1;
  transform: translateX(-100%);
}
.hero-conteudo {
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.hero-texto {
  width: 42%;
  color: #fff;
}

.hero-texto h1 {
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-texto p {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.92);
}

.botao {
  display: inline-block;
  background: #fff;
  color: #003f73;
  text-decoration: none;
  padding: 17px 28px;
  border-radius: 40px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
  transition: 0.3s;
}

.botao:hover {
  transform: translateY(-4px);
}

.hero-imagens {
  width: 58%;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}

.hero-imagens img {
  width: 275px;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.28);
  animation: flutuar 4s ease-in-out infinite;
}

.hero-imagens img:nth-child(2) {
  animation-delay: 0.8s;
}

/* Faixa que invade o branco e fica andando para esquerda */
.faixa-colorida {
  position: absolute;
  left: 31%;
  bottom: -80px;
  width: 720px;
  height: 145px;
  border-radius: 34px 0 80px 34px;
  background: linear-gradient(110deg, #00a651 0%, #00a651 35%, #7ed321 35%, #fff200 100%);
  transform: skewX(-18deg);
  z-index: 2;
  animation: faixaAndando 6s ease-in-out infinite;
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

.faixa-azul {
  background: linear-gradient(110deg, #009ee2 0%, #009ee2 38%, #ec008c 38%, #fff200 100%);
}

.faixa-rosa {
  background: linear-gradient(110deg, #ec008c 0%, #ec008c 36%, #009ee2 36%, #00a651 100%);
}

.bolinhas {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.bolinhas button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.20);
  cursor: pointer;
  transition: 0.3s;
}

.bolinhas button.ativo {
  width: 34px;
  border-radius: 20px;
  background: #009ee2;
}

@keyframes faixaAndando {
  0% { transform: translateX(0) skewX(-18deg); }
  50% { transform: translateX(-45px) skewX(-18deg); }
  100% { transform: translateX(0) skewX(-18deg); }
}

@keyframes flutuar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* =====================================================
   SEÇÕES ABAIXO DO CARROSSEL
====================================================== */
.secao {
  padding: 70px 0;
}

.secao h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 18px;
}

.texto-centro,
.secao p {
  text-align: center;
  font-size: 18px;
  color: #555;
}

.institucional {
  background: #f5f5f5;
}

.cases {
  background: #fff;
}

.orcamento {
  background: #003f73;
  color: #fff;
}

.orcamento p {
  color: #fff;
}

.rodape {
  background: #111;
  color: #fff;
  padding: 42px 0;
  text-align: center;
}

/* =====================================================
   RESPONSIVO - CELULAR E TABLET
====================================================== */
@media (max-width: 900px) {
  .topo-conteudo {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 18px;
  }

  .logo {
    width: 220px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    height: 850px;
  }

  .slide {
    height: 650px;
  }

  .hero-conteudo {
    height: 650px;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
  }

  .hero-texto,
  .hero-imagens {
    width: 100%;
    text-align: center;
  }

  .hero-texto h1 {
    font-size: 36px;
  }

  .hero-imagens {
    justify-content: center;
  }

  .hero-imagens img {
    height: 210px;
  }

  .faixa-colorida {
    left: 10%;
    bottom: -55px;
    width: 80%;
    height: 120px;
  }

  .bolinhas {
    bottom: 72px;
  }
}

@media (max-width: 560px) {
  .menu a {
    font-size: 12px;
  }

  .hero-texto h1 {
    font-size: 30px;
  }

  .hero-texto p {
    font-size: 16px;
  }

  .hero-imagens img:nth-child(2) {
    display: none;
  }

  .hero-imagens img {
    width: 80%;
  }
}

/* =====================================================
   INSTITUCIONAL - CLEAN PREMIUM
====================================================== */

.institucional-site {
  padding: 75px 0 200px;
  background: #f7f7f7;
	position: relative;
    overflow: hidden;
}
.institucional-site::after{
    content:"";
    position:absolute;

    width:650px;
    height:650px;

    border:2px solid #009ee2;

    border-radius:50%;

    right:-520px;
    bottom:-150px;

    opacity:.9;

    pointer-events:none;
}

.institucional-site::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    border:2px solid #ed0283;

    border-radius:50%;

    left:-350px;
    top:120px;

    opacity:.9;

    pointer-events:none;
}

.institucional-box {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 58px;
  align-items: center;
}

.inst-conteudo span {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #009ee2;
  margin-bottom: 18px;
}

.inst-conteudo h2 {
  font-size: 35px;
  line-height: 1.08;
  font-weight: 900;
  color: #111;
  margin-bottom: 22px;
  max-width: 620px;
}

.inst-conteudo p {
  font-size: 16px;
  line-height: 1.72;
  color: #4f4f4f;
  max-width: 720px;
  margin-bottom: 28px;
}

.inst-diferenciais {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.inst-diferenciais div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-size: 15.5px;
  font-weight: 700;
}

.inst-diferenciais strong {
  width: 22px;
  height: 22px;
  background: #009ee2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.inst-numeros-clean {
  display: flex;
  gap: 36px;
  border-top: 1px solid #dedede;
  padding-top: 24px;
}

.inst-numeros-clean strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: #111;
  margin-bottom: 7px;
}

.inst-numeros-clean span {
  display: block;
  font-size: 13px;
  color: #666;
}

/* FOTOS */
.inst-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.foto-principal,
.foto-menor{
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin: 5px;

    box-shadow:
      0 5px 15px rgba(0,0,0,.6),
      0 5px 5px rgba(0,0,0,.08);
}


.foto-principal {
  grid-column: span 2;
  height: 320px;
}

.foto-menor {
  height: 170px;
}

.inst-fotos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.foto-principal:hover img,
.foto-menor:hover img {
  transform: scale(1.06);
}



/* RESPONSIVO */
@media (max-width: 950px) {
  .institucional-box {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .inst-fotos {
    max-width: 520px;
  }

  .foto-principal {
    height: 280px;
  }

  .foto-menor {
    height: 145px;
  }
}

@media (max-width: 620px) {
  .institucional-site {
    padding: 58px 0;
  }

  .inst-conteudo h2 {
    font-size: 29px;
  }

  .inst-conteudo p {
    font-size: 15.5px;
  }

  .inst-numeros-clean {
    flex-direction: column;
    gap: 18px;
  }

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

  .foto-principal {
    grid-column: auto;
    height: 230px;
  }

  .foto-menor {
    height: 170px;
  }
}
/* =====================================================
   SERVIÇOS - PROCESSOS
====================================================== */

.processos {
  padding: 85px 0 95px;
  background: #003f73;
  position: relative;
  overflow: hidden;
}

.processos .limite {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.processos::before {
    content:"";
    position:absolute;

   width:420px;
    height:420px;

    border:2px solid #ecfeff;

    border-radius:50%;

    left:-200px;
    top:200px;

    opacity:.9;

    pointer-events:none;
}

.processos::after {
    content:"";
    position:absolute;

    width:650px;
    height:650px;

    border:2px solid #e9bc00;

    border-radius:50%;

    right:-150px;
    bottom:-150px;

    opacity:.9;

    pointer-events:none;
}
.secao-titulo {
  max-width: 720px;
  margin-bottom: 60px;
}

.secao-titulo span {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ea0085;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.secao-titulo h2 {
  font-size: 35px;
  line-height: 1.08;
  font-weight: 900;
  color: #fac201;
  margin-bottom: 22px;
}

.secao-titulo p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
}

.grid-processos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */

.processo-bloco {
  background: #f1f1f1;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}

/* IMAGEM */

.processo-img {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.processo-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
  opacity .45s ease,
  transform .6s ease;
}

.img-normal {
  opacity: 1;
}

.img-hover {
  opacity: 0;
  transform: scale(1.03);
}

.processo-bloco:hover .img-normal {
  opacity: 0;
}

.processo-bloco:hover .img-hover {
  opacity: 1;
  transform: scale(1);
}

/* TEXTO */

.processo-texto {
  background: #f1f1f1;
  width: 100%;
  padding: 28px 30px 32px;
  display: block;
}

.processo-texto h3 {
  font-size: 19px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
  color: #333;
  margin-bottom: 16px;
}

.processo-texto p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #444;
  text-align: left;
}

.processo-texto span {
  display: inline-block;
  font-size: 24px;
  color: #ea0085;
  margin-top: 16px;
  font-weight: 300;
  transition: 0.3s ease;
}

.processo-bloco:hover .processo-texto span {
  transform: translateX(8px);
}

/* RESPONSIVO */

@media (max-width: 950px) {
  .grid-processos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {

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

  .processos {
    padding: 60px 0 70px;
  }

  .processo-img {
    height: 230px;
  }

  .processo-texto {
    padding: 26px 24px 30px;
  }

  .processo-texto h3 {
    font-size: 18px;
  }

  .processo-texto p {
    font-size: 14px;
  }
}
/* =====================================================
   RESPONSIVO - INSTITUCIONAL E SERVIÇOS
====================================================== */

@media (max-width: 950px) {
  .grid-processos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .inst-card-grande {
    grid-row: auto;
  }

  .inst-card-grande img,
  .inst-card img {
    height: 260px;
  }

  .inst-numeros {
    grid-template-columns: repeat(2, 1fr);
  }

  .inst-topo h2,
  .secao-titulo h2 {
    font-size: 36px;
  }
}

@media (max-width: 620px) {
  .grid-processos {
    grid-template-columns: 1fr;
  }

  .processos,
  .institucional-site {
    padding: 55px 0;
  }

  .processo-img {
    height: 240px;
  }

  .processo-texto {
    padding: 28px 24px;
  }

  .processo-texto h3 {
    font-size: 22px;
  }

  .processo-texto p {
    font-size: 15px;
  }

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

/* =====================================================
   CASES
====================================================== */
.cases-site {
  padding: 75px 0 120px;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.cases-site .limite {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.cases-site::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(0, 158, 226, 0.9);
  border-radius: 50%;
  left: -100px;
  top: 600px;
  pointer-events: none;
  z-index: 1;
}

.cases-site::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 2px solid rgba(234, 0, 133, 0.9);
  border-radius: 50%;
  right: -100px;
  bottom: 800px;
  pointer-events: none;
  z-index: 1;
}
.cases-titulo span {
  color: #009ee2;
}

.cases-titulo h2 {
  color: #111;
}

.cases-titulo p {
  color: #4f4f4f;
}

.grid-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 28px;
}

.case-card {
  cursor: pointer;
}

.case-imagem {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}

.case-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .55s ease;
}

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

.case-card h3 {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 800;
  color: #777;
}
.produtos-extra {
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.produtos-extra-texto {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
  color: #000;
  font-size: 15.5px;
  line-height: 1.7;
	font-weight:600;
}

.produtos-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.produtos-extra-col h3 {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #004b78;
}

.produtos-extra-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.produtos-extra-col li {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: #666;
}
.produtos-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2.4fr;
  gap: 45px;
  align-items: start;
}

.acabamentos-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.acabamento-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
  transition: .45s ease;
}

.acabamento-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1.08);
}

.acabamento-card h4 {
  margin-top: 10px;
  font-size:15px;
    font-weight:800;
  color: #777;
}
.acabamento-img{
    position: relative;
    overflow: hidden;
    height: 250px;
}

.acabamento-img img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease;
}

.img-1{
    opacity: 1;
}

.img-2{
    opacity: 0;
}

.acabamento-card:hover .img-1{
    opacity: 0;
}

.acabamento-card:hover .img-2{
    opacity: 1;
}
/* RESPONSIVO */
@media (max-width: 950px) {
  .grid-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .cases-site {
    padding: 60px 0 70px;
  }

  .grid-cases {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 620px) {
  .produtos-extra {
    margin-top: 45px;
    padding-top: 35px;
  }

  .produtos-extra-texto {
    text-align: left;
    margin-bottom: 35px;
  }

  .produtos-extra-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
/* =====================================================
   CONTATO
====================================================== */

.contato-site {
  padding: 100px 0 0;
  background: #003f73;
  position: relative;
  overflow: hidden;
}

.contato-site::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 2px solid rgba(255,255,255,.08);
  border-radius: 50%;
  left: -350px;
  top: 50px;
}

.contato-site::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border: 2px solid rgba(250,194,1,.14);
  border-radius: 50%;
  right: -450px;
  bottom: 200px;
}

.contato-box {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

.contato-texto span {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ea0085;
  margin-bottom: 18px;
}

.contato-texto h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #fac201;
  margin-bottom: 24px;
	 font-weight: 900;
}

.contato-texto p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  margin-bottom: 18px;
}

.contato-info {
  display: grid;
  gap: 16px;
}

.contato-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  padding: 22px 26px;
  border-left: 4px solid #fac201;
  transition: .3s;
}

.contato-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

.contato-card.destaque {
  border-left-color: #00a651;
}

.contato-card strong {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fac201;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contato-card a,
.contato-card p {
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  text-decoration: none;
  margin: 0;
}

.contato-card a:hover {
  color: #fac201;
}

/* MAPA FULL WIDTH */

.contato-mapa {
    width: 100vw;
    height: 450px;

    position: relative;
    left: 50%;
    right: 50%;

    margin-left: -50vw;
    margin-right: -50vw;

    margin-top: 80px;

    overflow: hidden;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* RESPONSIVO */

@media (max-width: 950px) {

  .contato-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 620px) {

  .contato-site {
    padding: 70px 0 0;
  }

  .contato-texto h2 {
    font-size: 32px;
  }

  .contato-mapa {
    height: 320px;
    margin-top: 50px;
  }

}

/* =====================================================
   RODAPÉ
====================================================== */

.rodape-site{
    background:#003f73;
    color:#fff;
}

.rodape-topo{
    padding:70px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
}

.rodape-logo img{
    max-width:260px;
    margin-bottom:25px;
}

.rodape-logo p{
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.75);
    max-width:450px;
}

.rodape-coluna h4{
    color:#fac201;
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
}

.rodape-coluna ul{
    margin:0;
    padding:0;
    list-style:none;
}

.rodape-coluna li{
    margin-bottom:14px;
    color:rgba(255,255,255,.85);
    font-size:16px;
}

.rodape-bottom{
    border-top:1px solid rgba(255,255,255,.10);
}

.rodape-bottom .limite{
    padding:25px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.rodape-bottom p{
    margin:0;
    color:rgba(255,255,255,.65);
}

.voltar-topo{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.25);

    color:#fff;
    text-decoration:none;
    font-size:22px;

    transition:.3s;
}

.voltar-topo:hover{
    background:#fac201;
    color:#003f73;
    border-color:#fac201;
}
.rodape-acoes{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-footer{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.25);

    color:#fff;
    text-decoration:none;
    font-size:20px;

    transition:.3s;
}

.social-footer:hover{
    background:#fac201;
    color:#003f73;
    border-color:#fac201;
}

/* RESPONSIVO */

@media(max-width:900px){

    .rodape-topo{
        grid-template-columns:1fr;
        gap:40px;
    }

    .rodape-bottom .limite{
        flex-direction:column;
        gap:20px;
    }

}