/* ====== Fontes Personalizadas ====== */
@font-face {
  font-family: 'gg bold';
  src: url('../fonts/gg-sans-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'gg regular';
  src: url('../fonts/gg-sans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'gg semi-bold';
  src: url('../fonts/gg-sans-Semibold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ====== Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%); */
body {
  font-family: 'gg semi-bold', Arial, sans-serif;
  background: linear-gradient(135deg, hsl(262, 80%, 8%) 0%, #0b011b 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #0b011b;
  color: white;
}

/* ====== Containers ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-inicio {
  max-width: 600px;
}

/* ====== Navegação ====== */
.back {
  background-color: #0b011b !important;
  box-shadow: 0px 0px 10px rgba(167, 166, 166, 0.021);
  border-bottom: 2px solid rgba(255, 255, 255, 0.062);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0b011b !important;
  padding: 1rem;
  color: #fff;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: white;
  font-family: 'gg bold';
}

/* ====== Menu ====== */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: linear-gradient(135deg, hsl(262, 80%, 8%) 0%, #0b011b 100%);
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
}

.side-menu ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #ffffff17;
}

.side-menu a {
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.side-menu a::before,
.side-menu a::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  background-color: white;
  bottom: 0;
  transition: all 0.3s ease;
}

.side-menu a::before {
  left: 50%;
}

.side-menu a::after {
  right: 50%;
}

.side-menu a:hover {
  color: rgb(255, 0, 85);
}

.side-menu a:hover::before,
.side-menu a:hover::after {
  width: 50%;
}

.red {
  color: rgb(255, 0, 85);
}

/* ====== Menu Toggle ====== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 9px;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 9px;
  transform-origin: center;
}

/* ====== Overlay ====== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ====== Conteúdo Principal ====== */

#inicio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 88vh;
  gap: 100px;
}

h1 {
  font-size: 5.2rem !important;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.flex-b {
  max-width: 500px;
}

.flex-b img {
  width: 100%;
}

.highlight {
  color: rgb(255, 0, 85);
}

p {
  font-size: 1rem;
  color: #ccc;
  text-align: left;
  line-height: 1.6;
  margin-top: 20px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn-link {
    background-color: transparent;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: underline;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.2s ease-out;
    font-weight: 500;
}

.btn-link:hover {
    color: #ff0055;
    transform: translateY(-2px);
}

.btn-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0055;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-link:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 0, 85, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: -2;
}

.btn-link:hover::after {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.btn-link:active {
    transform: translateY(0);
    color: #cc0044;
}

@keyframes fadeInUnderline {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

.btn-link:focus {
    outline: none;
    text-decoration: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.3);
    border-radius: 8px;
}

.btn-primary {
    background-color: #ff0055;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), inset 0 -3px 0 rgba(0,0,0,0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: #e6004c;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3), inset 0 -4px 0 rgba(0,0,0,0.3);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.1);
    background-color: #cc0044;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.btn-primary:hover::after {
    width: 150%;
    height: 150%;
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

.btn-primary:focus {
    outline: none;
    animation: pulse 1s infinite;
}

/* ====== Animações ====== */
.typewriter {
  border-right: 1px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
#sobre{
  background-color: rgba(167, 166, 166, 0.021);
}
#servicos{
  padding-top: 60px;
  background: url(/assets/image/fondo.png);
  padding-bottom: 60px;
}
/* ====== Responsivo ====== */
@media (max-width: 933px) {
  .boas{
    text-align: center !important;
    margin-top: 40px;
  }
  .boas h1{
    text-align: center;
  }
  #inicio {
    flex-direction: column;
  }
  .sobre{
    align-content: center;
    flex-direction: column;
  }
  #inicio p{
    text-align: center;
  }

.buttons{
  justify-content: center;
}
.texto{
  text-align: center;
}
.texto p{
  text-align: center;
}
.servicos{
  margin-top: 1pc;
}
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .side-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding-top: 0;
    display: flex;
    flex-direction: row;
  }

  .side-menu ul {
    display: flex;
  }

  .side-menu ul li {
    padding: 0 1rem;
    border: none;
  }

  .overlay {
    display: none;
  }
}

/* ==========================
   Títulos e Parágrafos (Base)
========================== */

h1, h2, h3, h4, p {
    color: white;
    font-family: 'gg semi-bold', sans-serif;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
}

h1 {
    font-size: 6rem !important;
}
h2 {
    font-size: 3rem !important;
}
h3 {
    font-size: 2.2rem !important;
}
h4 {
    font-size: 1.5rem !important;
}
p {
    font-family: "gg regular";
    font-size: 1.2rem !important;
}

/* Responsivo: Tablets */
@media (max-width: 992px) {
  footer p{
    text-align: center;
  }
  footer{
    text-align: center;
  }
   .footer-links{
    text-align: center;
   }
    .a{
    transform: translateY(0px) !important;
    }
    h1 {
        font-size: 3.2rem !important;
    }
    h2 {
        font-size: 2.5rem !important;
    }
    h3 {
        font-size: 2rem !important;
    }
    h4 {
        font-size: 1.3rem !important;
    }
    p {
        font-size: 0.95rem !important;
    }
}

/* rodape  */
/* .footer {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc;
    width: 100%;
    display: flex;
    justify-content: center !important;
    background-color: transparent;
}

.footer-content {
    font-size: 0.95rem;
}

.footer .highlight {
    color: rgb(255, 0, 85);
    font-weight: bold;
} */


@media (max-width: 600px) {
    .servicos{
      place-self: anchor-center;
      grid-template-columns: none !important;

    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cards{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .estatisticas-servico{
      flex-direction: column;
      align-items: center;
    }
    .float{
      display: none;
    }
    #inicio{
      /* display: block; */
      justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.float {
  animation: float 1.9s ease-in-out infinite;
}

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


.sobre {
  color: #fff;
    /* background-color: rgb(5, 5, 26); */
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.sobre .container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  align-items: flex-start;
}

.servicos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  flex: 1;
  max-width: 500px;
}

.box {
  background: linear-gradient(135deg, hsl(259, 69%, 16%) 0%, #100127 100%);

  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px #00000033;
}

.box .circle {
  width: 100px;
  height: 100px;
  border: 8px solid #ff0055;
  border-top: 8px solid #1a1736;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-family: gg bold;
  justify-content: center;
      margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.box p {
  margin: 0;
  font-weight: 500;
  text-align: center;
}
.a{
    transform: translateY(50px);
}
.texto {
  flex: 1;
  max-width: 500px;
}

.texto h4 {
  color: #ff0055;
  font-weight: 600;
}

.texto h2 {
  font-size: 2rem;
  margin: 15px 0;
  font-weight: 700;
}

.texto p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn-orcamento {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    background-color: #d80249;
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.btn-orcamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-orcamento:hover::before {
    left: 125%;
}

.btn-orcamento:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background-color: #940132;
}


/* cards ============  */

.card:hover{
  transform: translateY(-10px) !important;
  background: linear-gradient(135deg, #0b011b8f 0%, #1a0934 100%);
  cursor: pointer;

}

.card {
  background: linear-gradient(135deg, hsl(263, 71%, 12%) 0%, #0b011b 100%);
      padding: 30px 20px;
      border-radius: 12px;
      width: 300px;
      text-align: center;
      color: #e2e8f0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: 0.5s ease-in-out;
    }

    .card img {
      width: 50px;

    }


    .card h3 {
      margin: 0 0 10px;
      font-size: 20px;
      color: white;
    }

    .card p {
      font-size: 14px;
      color: #cbd5e1;
      line-height: 1.5;
      text-align: center;
    }
.cards{
  display: flex;
  justify-content: space-around;
}


.estatisticas-servico {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}
.estatisticas-servico h3 {
  color: #ff0055;
  font-size: 2rem;
}
.estatisticas-servico p {
  color: #ccc;
}

/* faq  */
