  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Teko", sans-serif, 'Poppins';
    background: #ffffff;
    letter-spacing: 0.5px;
  }

  .nav-toggle {
    display: none;
  }

  #menuBtn {
    font-size: 34px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  @media (max-width: 900px) {
    .nav-links {
      display: none !important;
    }

    .nav-toggle {
      display: block;
    }
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #009688;
    padding-top: 100px;
    transition: .3s ease;
    z-index: 998;
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 30px;
  }

  .mobile-menu a {
    color: white;
    font-size: 24px;
    font-family: "Teko", sans-serif;
    text-decoration: none;
  }

  .mobile-menu.open {
    right: 0;
  }

  .navbar {
    width: 100%;
    background: #009688;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
  }

  .nav-content {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    width: 110px;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
  }

  .nav-links a {
    font-family: "Teko", sans-serif;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
  }

  .hero-section {
    margin-top: 120px;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
  }

  .hero-title span {
    color: #009688;
    font-weight: 700;
  }

  /* Carrossel com pausa entre transições */
  .hero-carousel {
    width: 100%;
    max-width: 1440px;
    height: 422px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
  }

  .carousel-track {
    display: flex;
    width: max-content;
    /* ESSENCIAL */
    animation: slideInfinite 20s linear infinite;
  }

  .carousel-track img {
    height: 420px;
    object-fit: cover;
    flex-shrink: 0;
  }

  /* anima só metade do conteúdo */
  @keyframes slideInfinite {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 768px) {
    .hero-carousel {
      height: 260px;
      margin: 10px auto;
    }

    .carousel-track {
      animation: slideInfinite 20s linear infinite;
    }

    .carousel-track img {
      height: 260px;
    }
  }

  .hero-subtext {
    margin-top: 50px;
    font-size: 22px;
    color: #000000;
    font-family: "Instrument Sans", sans-serif;
    font-weight: 700;
  }

  .btn-primary {
    margin-top: 25px;
    display: inline-block;
    background: #004aad;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    font-family: "Instrument Sans", sans-serif;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

  .servico-cta-section {
    margin-top: 50px;
    background-color: #009688;
    padding: 60px 0 60px 0;
    text-align: center;
    position: relative;
    color: #fff;
  }

  .div-azul {
    background-color: #004aad;
    width: 100%;
    height: 85%;
    padding: 40px;
  }

  .servico-cta-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .servico-cta-section h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
  }

  .servico-cta-section p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 25px;
    font-family: "Instrument Sans", sans-serif;
  }

  .btn-outline {
    font-family: "Instrument Sans", sans-serif;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
  }

  .btn-outline:hover {
    background-color: #ffffff;
    color: #004aad;
  }

  .car-track {
    width: 100%;
    height: 45px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
  }

  .car-walk {
    width: 50px;
    animation: carMove 6s linear infinite;
    position: absolute;
    bottom: 0px;
  }

  @keyframes carMove {
    0% {
      left: -80px;
    }

    100% {
      left: 100vw;
    }
  }

  .pitinin-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
  }

  .intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .intro-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .intro-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.1px;
    color: #555;
    font-family: "Instrument Sans", sans-serif;
  }

  .intro-highlight {
    font-size: 1.1rem;
    background: rgba(0, 110, 255, 0.1);
    padding: 15px;
    border-left: 4px solid #000;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Arial';
  }

  .intro-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
  }

  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .intro-image {
    text-align: center;
  }

  .intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .intro-cta-btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding: 10px 32px;
    background: transparent;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px solid #000000;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease;
  }

  .intro-cta-btn:hover {
    background: #000;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }

  .intro-cta-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
  }

  .intro-cta-btn:hover i {
    transform: translateX(8px);
  }

  /* Responsivo */
  @media (max-width: 768px) {
    .intro-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }

    .intro-title {
      font-size: 2.2rem;
    }

    .intro-stats {
      justify-content: center;
    }

    .stat-item {
      min-width: 120px;
    }
  }

  @media (max-width: 480px) {
    .pitinin-intro {
      padding: 60px 0;
    }

    .intro-stats {
      gap: 20px;
    }
  }

  .pitinin-services {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* melhor que altura fixa */
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 20px 80px;
    box-sizing: border-box;
  }

  .services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: brightness(0.6);
    z-index: 1;
  }

  .services-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    text-align: center;
    z-index: 2;
  }

  .services-title {
    font-size: clamp(36px, 8vw, 62px);
    /* responsivo perfeito */
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.1;
  }

  .services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-bottom: 60px;
  }

  .service-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 30px 20px;
    background: white;
    color: #111;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Efeito glow neon verde/vermelho */
  .service-card::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(0, 255, 179, 0.8) 0%, rgba(3, 122, 86, 0.5) 40%, rgba(255, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: -1;
  }

  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 20px;
    z-index: -1;
  }

  .service-card .num {
    font-size: clamp(48px, 10vw, 70px);
    font-weight: 700;
    color: #b10505;
    line-height: 1;
  }

  .service-card h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
  }

  .service-card p {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.5;
    color: #333;
    margin: 0;
  }

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .service-card:hover::before {
    opacity: 1;
    filter: blur(60px);
  }

  .btn-cta-servico {
    font-family: "Instrument Sans", sans-serif;
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(16px, 2.5vw, 18px);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-cta-servico:hover {
    background-color: #ffffff;
    color: #b10505;
    transform: scale(1.05);
  }

  /* Ajustes específicos para celular */
  @media (max-width: 480px) {
    .pitinin-services {
      padding: 80px 15px 60px;
    }

    .services-title {
      margin-bottom: 40px;
    }

    .services-cards {
      gap: 25px;
    }

    .service-card {
      padding: 25px 18px;
    }

    .btn-cta-servico {
      padding: 12px 28px;
    }
  }

  .pitinin-cta {
    position: relative;
    width: 100%;
    min-height: 80vh;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 25%,
        rgba(0, 0, 0, 0.85) 70%,
        rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
    /* para não atrapalhar cliques */
  }

  .cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
  }

  .cta-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9);
    margin-bottom: 50px;
    letter-spacing: 2px;
    margin-top: 150px;
    font-family: "Teko", sans-serif, 'Poppins';
    font-style: italic;
  }

  .cta-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    z-index: 3;
    font-family: "Instrument Sans", sans-serif;
  }

  .cta-feature-item {
    transition: transform 0.3s ease;
    max-width: 300px;
  }

  .cta-feature-item:hover {
    transform: translateY(-10px);
  }

  .cta-feature-item i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .cta-feature-item h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .cta-feature-item p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .btn-cta-contato {
    font-family: "Instrument Sans", sans-serif;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
    margin-top: 60px;
  }

  /* Responsivo */
  @media (max-width: 1024px) {
    .cta-title {
      font-size: 3.2rem;
    }

    .cta-feature-item {
      width: 280px;
    }
  }

  @media (max-width: 768px) {
    .cta-title {
      font-size: 2.6rem;
      margin-bottom: 30px;
    }

    .cta-features {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .cta-feature-item {
      width: 90%;
      max-width: 380px;
    }
  }

  .fixed-icons {
    position: fixed;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 9999;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  .icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .faq-section {
    background-color: #ffffff;
    color: #000000;
    padding: 48px 40px;
    width: 100%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
  }

  .faq-title {
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 60px;
    color: #000000;
    font-family: "Teko", sans-serif, 'Poppins';
    font-style: italic;
  }

  /* Esconde as respostas inicialmente */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
  }

  .faq-item {
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 40px;
    background: #fff;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
  }

  .faq-item:hover {
    transform: translateY(-5px);
  }

  .faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
  }

  .faq-answer {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    display: flex;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
  }

  .cta-question {
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
  }

  /* Responsivo */
  @media (max-width: 768px) {
    .faq-section {
      padding: 36px 24px;
    }

    .faq-title {
      font-size: 24px;
      margin-bottom: 32px;
    }

    .faq-question {
      font-size: 17px;
    }

    .faq-answer {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {

    .faq-title {
      font-size: 22px;
      text-align: center;
    }

    .faq-question {
      font-size: 16px;
      max-width: 300px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      justify-content: center;
    }
  }

  footer {
    background-color: #029686;
    color: #ffffff;
    padding: 70px 10%;
    position: relative;
    overflow: hidden;
    font-family: "Instrument Sans", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  /* Estrutura principal */
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
  }

  /* Cada coluna do footer */
  .footer-section {
    flex: 1;
    min-width: 250px;
  }

  .footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    /* azul destaque */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
  }

  /* Lista de links */
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 12px;
  }

  .footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  /* Logo */
  .logo-footer {
    justify-content: flex-start;
    max-width: 70px;
  }

  .logo-pitinin-footer {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .footer-section .logo img:hover {
    transform: scale(1.05);
  }

  /* Linha inferior */
  .footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .footer-bottom p {
    margin: 0;
  }

  @media (max-width: 900px) {
    footer {
      padding: 50px 5%;
    }

    nav {
      position: absolute;
    }

    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-section {
      margin-bottom: 30px;
    }

    .footer-section h4 {
      font-size: 1.1rem;
    }

    .navbar {
      gap: 10px;
    }

    .logo h1 {
      max-width: 1000px;
    }
  }