    /* Fonte Poppins */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


    /* Tags Gerais */
    html {
      overflow-x: hidden;
    }

    :root {
      font-size: clamp(12px, .834vw, 16px);
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #000 !important;
      color: #fff;
    }

    h2 {
      color: #ffffff;
    }

    .titulo-animado {
      display: inline-block;
      white-space: pre-wrap;
    }

    .titulo-animado span {
      display: inline-block;
      opacity: 0;
      filter: blur(4px);
      transform: translateY(20px);
      animation: animarLetra 0.5s forwards;
    }

    .titulo-animado2 {
      display: inline-block;
      white-space: pre-wrap;
      color: #ffffff;
    }

    .titulo-animado2 span {
      display: inline-block;
      opacity: 0;
      filter: blur(4px);
      transform: translateY(20px);
      animation: animarLetra 0.5s forwards;
    }

    @keyframes animarLetra {
      to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
      }
    }



    @keyframes typing {
      from {
        width: 0
      }

      to {
        width: 100%
      }
    }

    @keyframes blink {
      50% {
        border-color: transparent
      }
    }

    /* Header */

    header {
      background-color: #000000;
      padding: 0.3rem;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 2rem;
    }

    header a {
      color: white;
      text-decoration: none;
      margin: 0 1rem;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10rem 1rem 3rem 1rem;
      background: #0000005b;
      border-radius: 1.5rem;
      height: 67rem;
    }

    .hero-content {
      max-width: 75rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
    }


    .sobre {
      padding: 4rem 1.25rem;
      background-color: #121212;
      color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      border-radius: 1.25rem;
    }

    .sobre-container {
      max-width: 68.75rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .sobre-foto {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 20rem;
      height: 20rem;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 0.5rem 1.5rem rgba(162, 89, 255, 0.6);
      margin: 0 auto;
      transition: transform 0.3s ease;
    }

    .sobre-foto:hover {
      transform: scale(1.05);
    }

    .sobre-foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .sobre-texto {
      background-color: #000;
      width: 100%;
      padding: 1rem 0 1rem 0;
      display: flex;
      align-items: baseline;
      justify-content: center;
    }

    .descricao {
      display: flex;
      flex-direction: column;
    }

    .descricao h3 em span {
      color: #a259ff;
    }

    .sobre-texto h2 {
      font-size: 2.8rem;
      color: #ffffff;
      margin-bottom: 0.75rem;
      font-weight: 700;
    }

    .sobre-texto p {
      font-size: 1.15rem;
      line-height: 1.6;
      margin-top: 2rem;
      color: #ccc;
    }

    .sobre-texto p strong {
      font-weight: 700;
      font-size: 1.3rem;
      color: #fff;
    }

    .sobre-texto p em {
      color: #ffffff;
      font-style: normal;
      font-weight: 600;
      margin-bottom: 1rem;
      display: block;
    }

    .sobre-texto h3 {
      margin-top: 2rem;
      margin-bottom: 0.9rem;
      color: #ffffff;
      font-size: 1.6rem;
    }

    .sobre-texto ul {
      list-style: none;
      padding: 0;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
      color: #ddd;
    }

    .sobre-texto ul li:hover {
      background-color: #a259ff;
      color: #fff;
    }

    .sobre-texto ul li {
      background: #222;
      padding: 0.6rem 0.9rem;
      border-radius: 0.5rem;
      box-shadow: 0 0 0.6rem #a259ff55;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .botoes .btn {
      padding: 1rem 2rem;
      border-radius: 2rem;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .botoes .btn-primary {
      background-color: #812eff;
      color: #fff;
    }

    .botoes .btn-primary:hover {
      background-color: #a259ff;
    }

    .botoes .btn-outline {
      border: 2px solid #a259ff;
      color: #a259ff;
    }

    .botoes .btn-outline:hover {
      background-color: #a259ff;
      color: #fff;
    }

    .bloom-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }

    .bloom-bg::before,
    .bloom-bg::after {
      content: "";
      position: absolute;
      width: 25rem;
      height: 25rem;
      background: radial-gradient(circle, rgba(162, 89, 255, 0.5) 0%, transparent 70%);
      filter: blur(6rem);
      z-index: -1;
    }

    /* Círculos adicionais com posições variadas */
    .bloom-bg::before {
      top: 10%;
      left: 15%;
    }

    .bloom-bg::after {
      top: 70%;
      left: 60%;
    }

    /* Círculos extras usando pseudo-elementos com animação opcional */
    .bloom-bg div {
      position: absolute;
      width: 18.7rem;
      height: 18.7rem;
      background: radial-gradient(circle, rgba(162, 89, 255, 0.3) 0%, transparent 70%);
      filter: blur(5rem);
      border-radius: 50%;
      z-index: -1;
    }

    /* Adicione quantos quiser com posições variadas */
    .bloom-bg div:nth-child(1) {
      top: 20%;
      left: 70%;
    }

    .bloom-bg div:nth-child(2) {
      top: 50%;
      left: 30%;
    }

    .bloom-bg div:nth-child(3) {
      top: 80%;
      left: 10%;
    }

    .bloom-bg div:nth-child(4) {
      top: 90%;
      left: 80%;
    }

    .whatsapp-button {
      position: fixed;
      bottom: 1.25rem;
      right: 1.25rem;
      background-color: #25d366;
      color: white;
      padding: 0.6rem 1.25rem;
      border-radius: 2rem;
      box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      display: flex;
      align-items: center;
      /* Centraliza verticalmente */
      gap: 0.6rem;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 1.5rem rgba(37, 211, 102, 0.6);
    }

    .whatsapp-button img {
      width: 1.5rem;
      height: 1.5rem;
      filter: brightness(0) invert(1);
      /* Ícone branco */
      display: block;
    }

    .whatsapp-button span {
      font-size: 1rem;
      font-weight: 500;
      display: block;
    }

    /* Seção principal */


    /* Texto */
    .textos {
      flex: 1;
      min-width: 17.5rem;
    }

    .textos h1 {
      font-size: 3rem;
      margin-bottom: 0.6rem;
      font-weight: 700;
      color: white;
    }

    .textos h3 {
      font-weight: 400;
      font-size: 1.5rem;
      color: #ccc;
    }

    .textos p {
      margin-top: 1.25rem;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
    }


    /* Botões */
    .botoes {
      margin-top: 2rem;
      display: flex;
      gap: 1.25rem;
    }

    /* Foto */
    .foto {
      display: flex;
      justify-content: center;
      min-width: 11.25rem;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 2rem #a259ff;
        transform: scale(1);
      }

      50% {
        box-shadow: 0 0 3.125rem #a259ff;
        transform: scale(1.03);
      }

      100% {
        box-shadow: 0 0 2rem #a259ff;
        transform: scale(1);
      }
    }

    .foto-circular {
      width: 25rem;
      height: 25rem;
      border-radius: 50%;
      overflow: hidden;
      background: black;
      box-shadow: 0 0 2rem #a259ff;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 3s infinite ease-in-out;
    }

    .foto-circular img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .botao-nav-bar:hover {
      color: #a259ff
    }





    .especialidades {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
      margin-bottom: 0.9rem;
      color: #ffffff;
      font-size: 1.6rem;
    }


    .projects {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #090909;
      padding: 4rem 0 4rem 0;
    }

    .projects h2 span {
      color: #a259ff;
    }

    .projects p {
      color: #ccc;
      text-align: center;
      margin: 1rem 0rem 2rem 0rem;
    }

    .projetos {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      justify-content: center;
      max-width: 60%;
    }

    .projetos>div {
      flex: 0 0 calc(33.333% - 1.25rem);
      /* 3 por linha com gap */
      box-sizing: border-box;
    }

    .depoimentos {
      text-align: center;
      padding: 2.5rem 1.25rem;
    }

    .icones-depoimentos {
      display: flex;
      justify-content: space-evenly;
    }

    .box-icones-depoimentos {
      border-radius: 0.6rem;
      border: 0.1px solid #a159ff66;
      padding: 1.25rem 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .box-icones-depoimentos h2 {
      color: #a259ff;
    }

    .swiper {
      width: 100%;
      max-width: 125rem;
      margin: auto;
    }

    .swiper-slide img {
      width: 100%;
      height: 12.5rem;
      /* Aumente a altura aqui */
      object-fit: cover;
      /* Corta imagem se necessário, mantendo a proporção */
      object-fit: contain;
      border-radius: 0.7rem;
      box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .swiper-slide:hover img {
      transform: scale(1.05);
    }

    .contato {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* centraliza horizontalmente todos os filhos */
      text-align: center;
      background-color: #000;
      padding: 2rem 0 2rem 0;
    }

    .contato-cabecalho h2 {
      color: #ffffff;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .contato-cabecalho h2 span {
      color: #a259ff;
    }

    .contato-cabecalho p {
      color: #ccc;
      margin-top: 1.5rem;
      margin-bottom: 2rem;
    }

    .contato-box {
      padding: 2rem 0 2rem 0;
      border-radius: 0.3rem;
      border: 0.1px solid #a159ff66;
    }

    .contato-grid {
      display: flex;
      gap: 2rem;
      margin: 0 auto;
      align-items: center;
      padding: 2rem 2rem 2rem 2rem;
      justify-content: center;
    }

    .contato-item {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      gap: 0.7rem;
      color: #ccc;
      transition: color 0.3s ease;
      flex-direction: column;
      margin-bottom: 2rem;
    }

    .contato-item h4 {
      color: #ffffff;
    }

    .contato-item:hover {
      color: #a259ff;
    }

    .contato-item .icon {
      color: #a259ff;
      font-size: 1.6rem;
      min-width: 2rem;
    }

    .redes-sociais {
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      margin-top: 2rem;
      width: 100%;
    }

    .btn-social {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 2rem;
      border-radius: 2rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-social i {
      font-size: 1.5rem;
    }

    .btn-social.whatsapp {
      background-color: #25D366;
      box-shadow: 0 0 0.6rem #25D366;
    }

    .btn-social.whatsapp:hover {
      background-color: #1ebe5d;
      box-shadow: 0 0 1.25rem #1ebe5d;
    }

    .btn-social.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      box-shadow: 0 0 0.6rem #bc1888;
    }

    .btn-social.instagram:hover {
      filter: brightness(1.2);
      box-shadow: 0 0 1.25rem #bc1888;
    }

    .habilidades {
      display: flex;
      flex-direction: column;
    }

    .cards {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .card-text-img {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .card-text-img h4 {
      text-align: center;
      font-size: 1.3rem;
    }

    img.img-card {
      width: 5rem;
      height: fit-content;
      margin-bottom: 0.5rem;
      margin-top: 0.5rem;
    }

    .card-text-img p {
      margin: 0.5rem 0;
    }

    .align-card-itens {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
    }

    .card-text-img p {
      text-align: center;
      font-size: 0.9rem;
      color: #ccc;
    }

    #depoimentos {
      position: relative;
      background-color: #040404;
      padding: 4rem 0 4rem 0;
    }

    .btn-left {
      position: relative;
      right: 18.9rem;
    }

    .btn-right {
      position: relative;
      left: 16.5rem;
    }

    .carousel {
      width: 90%;
      max-width: 37.5rem;
      background: white;
      border-radius: 1rem;
      box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      place-self: center;
    }

    .slides {
      display: flex;
      transition: transform 0.4s ease;
    }

    .slide {
      min-width: 100%;
      padding: 2rem;
    }

    .slide-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.6rem;
    }

    .slide img {
      width: 4.3rem;
      height: 4.3rem;
      border-radius: 50%;
      object-fit: cover;
    }

    .cards-gap {
      gap: 1rem;
      justify-content: center;
    }

    .slide-info {
      display: flex;
      flex-direction: column;
    }

    .slide h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
    }

    .stars {
      color: #f1c40f;
      margin-top: 0.3rem;
    }

    .slide p {
      margin-top: 1rem;
      font-size: 0.95em;
      color: #555;
      line-height: 1.4em;
    }

    .slide b {
      color: #000;
    }

    .controls {
      position: absolute;
      top: 70%;
      width: 102%;
      display: flex;
      justify-content: center;
      transform: translateY(-50%);
    }

    .controls button {
      background: #a259ff;
      border: none;
      cursor: pointer;
      padding: 0.6rem;
      border-radius: 50%;
      transition: background 0.3s;
    }

    .controls button:hover {
      background: #6731ad;
    }

    .titulo-depoimentos {
      margin-top: 4rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .titulo-depoimentos span {
      color: #a259ff;
    }

    .controls img.arrow {
      width: 2rem;
      height: auto;
      filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
      transition: transform 0.2s;
    }

    .controls img.arrow:hover {
      transform: scale(1.07);
    }

    .framer-1EDzb .framer-19t2la1 {
      background: linear-gradient(180deg, #0000, #000);
      bottom: 0;
      flex: none;
      height: 120px;
      left: 0;
      overflow: hidden;
      pointer-events: none;
      position: fixed;
      right: 0;
      z-index: 3;
    }

    .framer-1aou9dh-container {
      bottom: 0;
      flex: none;
      height: 50px;
      left: 0;
      position: fixed;
      right: 0;
      z-index: 5;
    }

    @media (max-width: 768px) {
      .projetos>div {
        flex: unset;
      }

      .sobre-container {
        flex-direction: column;
        text-align: center;
      }

      .sobre-foto img {
        max-width: 250px;
        margin: 0 auto 2rem;
      }

      .sobre-texto {
        flex-direction: column;
      }

      .sobre-texto ul {
        grid-template-columns: repeat(auto-fit, minmax(8.75rem, 1fr));
      }

      .descricao {
        padding: 0 2rem;
      }

      .icones-depoimentos-centralizar {
        justify-content: center;
      }
    }

    @media (max-width: 431px) {

      .hero {
        flex-direction: column;
        height: unset;
      }

      .hero-content {
        padding: 0 2rem;
      }

      .typing-text {
        display: flex;
        flex-direction: column;
      }

      .foto {
        margin: 4rem 0;
      }

      .foto-circular {
        width: 20rem;
        height: 20rem;
      }

      .icones-depoimentos-centralizar {
        display: flex;
        justify-content: center;
        gap: 2rem;
      }

      .box-icones-depoimentos {
        text-align: center;
      }

      .controls {
        top: 75%;
      }

      .btn-left {
        right: 3rem;
      }

      .btn-right {
        left: 3rem;
      }

      .controls {
        position: unset;
      }

      .contato {
        padding: 2rem;
      }

      .contato-grid {
        justify-content: center;
      }
    }

    @media (max-width: 391px) {
      .foto {
        margin: 4rem 0 0 0;
      }

    }

    @media (max-width: 321px) {

      header {
        flex-direction: column;
        gap: unset;
      }

      .contato-grid {
        flex-direction: column;
      }
    }