@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';

 /* Botões especiais (btnn) */
 .btnn {
    
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  cursor: pointer;
  margin: 1rem;
}

.btnn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}

.box-1 { background-color: #FF6766; }
.box-2 { background-color: #3C3C3C; }
.box-3 { background-color: #66A182; }

.btnn {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 250px;
  cursor: pointer;
}

/* 
========================
      BUTTON ONE
========================
*/
.btnn-one {
  color: #FFF;
  transition: all 0.3s;
  position: relative;
}
.btnn-one span {
  transition: all 0.3s;
}
.btnn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.5);
  transform: scale(0.1, 1);
}
.btnn-one:hover span {
  letter-spacing: 2px;
}
.btnn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btnn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.1);
}
.btnn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}

/* 
========================
      BUTTON TWO
========================
*/
.btnn-two {
  color: #FFF;
  transition: all 0.5s;
  position: relative; 
}
.btnn-two span {
  z-index: 2; 
  display: block;
  position: absolute;
  width: 100%;
  height: 100%; 
}
.btnn-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
}
.btnn-two::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
}
.btnn-two:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(255,255,255,0);
}
.btnn-two:hover::after {
  transform: rotate(45deg);
  background-color: rgba(255,255,255,0);
}
/* 
========================
      BUTTON THREE
========================
*/
.btnn-three {
    color: #FFF;
    transition: all 0.5s;
    position: relative;
  }
  .btnn-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s;
  }
  .btnn-three:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
  }
  .btnn-three::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.5);
    transform: scale(1.2,1.2);
  }
  .btnn-three:hover::after {
    opacity: 1;
    transform: scale(1,1);
  }
/* From Uiverse.io by gharsh11032000 */ 
.paragrafo {
  position: relative;
  width: 590px;
  height: 454px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}

.paragrafo::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 14px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
  z-index: -2;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paragrafo::after {
  content: "";
  z-index: -2;
  position: absolute;
  inset: -20px;
  border-radius: 14px;
  background: linear-gradient(-45deg, #0026ff 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.paragrafo p:not(.heading) {
  font-size: 14px;
}

.paragrafo p:last-child {
  color: #1c6bff;
  font-weight: 600;
  z-index: 5;
}

.paragrafo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.paragrafo.is-active {
  transform: scale(1.5);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
}

.paragrafo.is-active::before {
  transform: scale(1.02);
}

.paragrafo.is-active img {
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.paragrafo:hover::after {
  filter: blur(30px);
}

.paragrafo:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}

.card-servico {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.card-servico:hover {
  transform: translateY(-6px);
}

/* Imagem */
.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Faixa azul */
.card-faixa {
  background: #0a2a4d;
  color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-faixa i {
  font-size: 22px;
  color: #ffd700;
}

/* Conteúdo */
.card-conteudo {
  padding: 20px;
  text-align: center;
}

.card-conteudo p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

/* Botão */
.btn-card {
  display: inline-block;
  padding: 10px 20px;
  background: #ffd700;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-card:hover {
  background: #e6c200;
}
.servicos-detalhados {
  background: #f5f7fb;
  padding: 10px 0 60px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
  margin: 0 auto;
  justify-items: center;
}

