    :root {
      --azul-escuro: #0a0f2c;
      --azul-vivo: #1e90ff;
      --preto: #000000;
      --branco: #ffffff;
      --cinza-escuro: #10131f;
      --cinza-médio: #1f2537;
    }

    body {
      background: linear-gradient(to right, #000814, #001d3d, #000814);
      color: var(--branco);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }



    header {
      background: linear-gradient(to right, #000814, #001d3d, #000814);
      color: var(--branco);
      padding: 4rem 2rem;
      text-align: center;
    }

    header h1 {
      font-size: 5rem;
      font-weight: 900;
      margin: 0 0 1rem;
      background: var(--branco);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    header h2 {
      font-size: 2rem;
    }

    header p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
    }

    nav {
      background: var(--preto);
      padding: 1rem;
      text-align: center;
      margin-bottom: 70px;
    }

    nav a {
      color: var(--branco);
      margin: 0 1rem;
      text-decoration: none;
      font-weight: bold;
    }

    section {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: auto;
    }

    .section-title {
      font-size: 2rem;
      color: var(--azul-vivo);
      margin-bottom: 2rem;
      border-left: 5px solid var(--azul-vivo);
      padding-left: 1rem;
    }

    .sobre p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      color: #ddd;
    }

    .foto-sobre {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
      text-align: center;
    }

    .foto-sobre img {
      width: 100%;
      border-radius: 50%;
      border: 4px solid #0a0a0a;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      object-fit: cover;
    }


    .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .projeto {
      background: var(--cinza-médio);
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    }

    .projeto img {
      max-width: 100%;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .projeto h3 {
      color: var(--azul-vivo);
    }

    .contato {
      background-color: #151a2f;
      padding: 4rem 2rem;
      border-radius: 8px;
    }

    .contato input,
    .contato textarea {
      padding: 0.8rem;
      background: #1e1e2f;
      border: 1px solid #333;
      border-radius: 4px;
      color: var(--branco);
    }

    .contato button {
      background: var(--azul-vivo);
      color: var(--branco);
      padding: 0.8rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }

    .contato button:hover {
      background: #006ad1;
    }

    footer {
      background: var(--preto);
      color: var(--branco);
      text-align: center;
      padding: 2rem;
    }

    footer a {
      color: var(--azul-vivo);
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* Sessão de Destaques */
    section.destaques {
      background: #13182b;
      color: var(--branco);
      border-top: 2px solid var(--azul-vivo);
      border-bottom: 2px solid var(--azul-vivo);
    }

    section {
      padding: 0;
      
    }

    .destaques h3 {
      color: var(--azul-vivo);
    }

    .depoimentos {
      background: linear-gradient(to right, #0f1328, #1a1e33);
      color: var(--branco);
      padding: 4rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .carrossel {
      position: relative;
      max-width: 700px;
      margin: 3rem auto 0;
      display: flex;
      overflow: hidden;
      height: 230px;
    }

    .card-depoimento {
      background: #1f2537;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .card-depoimento blockquote {
      font-style: italic;
      font-size: 1.2rem;
      line-height: 1.6;
      color: #ddd;
      position: relative;
      margin-bottom: 1rem;
    }

    .card-depoimento blockquote::before,
    .card-depoimento blockquote::after {
      color: var(--azul-vivo);
      font-size: 2rem;
      position: absolute;
    }

    .card-depoimento blockquote::before {
      content: "“";
      left: -1rem;
      top: -1rem;
    }

    .card-depoimento blockquote::after {
      content: "”";
      right: -1rem;
      bottom: -1rem;
    }

    .card-depoimento .autor {
      font-weight: bold;
      color: var(--azul-vivo);
    }

    .slide {
      flex: 0 0 100%;
      opacity: 0;
      transform: translateX(100%);
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .slide.ativo {
      opacity: 1;
      transform: translateX(0);
      position: relative;
    }


    blockquote {
      font-style: italic;
      font-size: 1.2rem;
      color: #ccc;
    }

    blockquote::before {
      content: "“";
      font-size: 2rem;
      color: var(--azul-vivo);
      vertical-align: top;
      margin-right: 0.3rem;
    }

    blockquote::after {
      content: "”";
      font-size: 2rem;
      color: var(--azul-vivo);
      vertical-align: bottom;
      margin-left: 0.3rem;
    }

    p {
      color: #ddd;
    }

    /* Animações */
    .hidden {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .show {
      opacity: 1;
      transform: translateY(0);
      margin-bottom: 50px;
    }

    .form-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .form-group {
      flex: 1 1 48%;
      display: flex;
      flex-direction: column;
    }

    .form-group.full {
      flex: 1 1 100%;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.8rem;
      background: #1e1e2f;
      border: 1px solid #444;
      border-radius: 6px;
      color: #fff;
      font-size: 1rem;
      resize: none;
    }

    button {
      background: var(--azul-vivo);
      padding: 0.8rem 1.2rem;
      border: none;
      border-radius: 6px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #006ad1;
    }

    .carrossel {
      display: flex;
      overflow: hidden;
      position: relative;
      max-width: 800px;
      margin: 0 auto;

    }

    .carrossel .slide {
      flex: 0 0 100%;
      opacity: 0;
      transform: translateX(100%);
      transition: transform 1s ease, opacity 1s ease;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
    }

    .carrossel .slide.ativo {
      opacity: 1;
      transform: translateX(0);
      position: relative;
    }

    .diferenciais {
      background: #151a2f;
      padding: 4rem 2rem;
      text-align: center;
      border-radius: 8px;

    }

    .cards-diferenciais {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .card-diferencial {
      background: var(--cinza-médio);
      border-radius: 12px;
      padding: 2rem;
      flex: 1 1 280px;
      max-width: 320px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }

    .card-diferencial:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }

    .card-diferencial h3 {
      color: var(--azul-vivo);
      margin: 1rem 0 0.5rem;
    }

    .card-diferencial p {
      font-size: 1rem;
      color: #ccc;
    }

    .card-diferencial .icone {
      font-size: 2rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .redes-sociais {
      padding: 60px 20px;
      text-align: center;
      background-color: #0e1225;
    }

    .icones-redes {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 30px;
    }

    .icones-redes a {
      color: white;
      font-size: 2.5rem;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .icones-redes a:hover {
      transform: scale(1.2);
      color: #00ffff;
    }

    /* Responsividade: Telas menores */
    @media (max-width: 1024px) {
      header h1 {
        font-size: 3.5rem;
      }

      header h2 {
        font-size: 1.5rem;
      }

      nav {
        font-size: 0.95rem;
      }

      .section-title {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 3rem 1.5rem;
      }

      header h1 {
        font-size: 3rem;
      }

      header h2 {
        font-size: 1.2rem;
      }

      header p {
        font-size: 1rem;
      }

      nav a {
        display: inline-block;
        margin: 0.5rem 0.5rem;
        font-size: 0.95rem;
      }

      section {
        margin: 0 17px;
      }

      .carrossel {
        height: auto;
        flex-direction: column;
      }

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

      .form-group {
        flex: 1 1 100%;
      }

      .cards-diferenciais {
        flex-direction: column;
        align-items: center;
      }

      .foto-sobre {
        max-width: 200px;
      }
    }

    @media (max-width: 480px) {

      .container-sobre {
margin-bottom: 0;
      }

      header h1 {
        font-size: 2.2rem;
      }

      header h2 {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.3rem;
      }

      .sobre p,
      .projeto p,
      .card-diferencial p,
      .contato input,
      .contato textarea {
        font-size: 0.95rem;
      }

      button {
        width: 100%;
      }

      .carrossel {
        padding: 1rem;
      }

      .card-depoimento blockquote {
        font-size: 1rem;
      }

      .icones-redes a {
        font-size: 2rem;
      }

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

      .projeto {
        padding: 1rem;
      }

      .card-diferencial {
        max-width: 100%;
        padding: 1.5rem;
      }
    }