    /* ======== ESTILOS GERAIS ======== */
    body {
      margin: 0;
      background-color: #000;
      color: #fff;
      font-family: "Poppins", sans-serif;
      letter-spacing: 0.1em;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    .servicos-section {
      position: relative;
      background: radial-gradient(circle at bottom left, #f7c70015, #000 70%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      padding: 2rem 0;
    }

    /* ======== BANNER SCROLLANDO ======== */
    .scroll-banner {
      position: absolute;
      top: 0;
      width: 100%;
      background: linear-gradient(90deg, #f7c700, #ffb700);
      white-space: nowrap;
      overflow: hidden;
      z-index: 10;
    }

    .scroll-banner span {
      display: inline-block;
      padding: 1rem 2rem;
      font-weight: 700;
      color: #000;
      animation: scrollText 20s linear infinite;
      font-size: 0.9rem;
    }

    @keyframes scrollText {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ======== TÍTULOS ======== */
    .titulo-secundario {
      font-size: 0.9rem;
      color: #e60606;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      text-align: center;
      font-weight: 600;
    }

    .titulo-principal {
      font-size: 2.5rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    /* ======== CARDS COM ANIMAÇÕES ======== */
    .cards-container {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3rem;
    }

    .card {
      background: #111;
      border-radius: 1rem;
      overflow: hidden;
      width: 350px;
      transition: all 2.0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-align: center;
      opacity: 0;
      border: 1px solid #333;
      position: relative;
      z-index: 20;
    }

    .card-fade-up {
      transform: translateY(150px);
    }

    .card-fade-left {
      transform: translateX(-150px);
    }

    .card-fade-right {
      transform: translateX(150px);
    }

    .card-fade-in {
      transform: scale(0.9);
    }

    .card.animate {
      opacity: 1;
      transform: translate(0) scale(1);
      transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f7c700, #ffb700);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .card h3 {
      padding: 1.5rem;
      background: #1b1b1b;
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }

    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(247, 199, 0, 0.2);
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card:hover img {
      transform: scale(1.05);
    }

    /* ======== BOTÕES PROFISSIONAIS ======== */
    .botao-whatsapp {
      background: linear-gradient(135deg, #128C7E, #075E54);
      color: #fff;
      padding: 1.2rem 2.5rem;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(7, 94, 84, 0.4);
      border: none;
      font-size: 1rem;
    }

    .botao-whatsapp::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }

    .botao-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(7, 94, 84, 0.6);
    }

    .botao-whatsapp:hover::before {
      left: 100%;
    }

    .botao-whatsapp:active {
      transform: translateY(-1px);
    }

    .btn-pulse {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #128C7E, #075E54);
      color: white;
      padding: 1.2rem 1.5rem;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 25px rgba(7, 94, 84, 0.5);
      border: none;
      font-size: 1.1rem;
    }

    .btn-pulse::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
      opacity: 0;
      transform: scale(0.5);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        opacity: 0;
        transform: scale(0.5);
      }
      50% {
        opacity: 0.4;
      }
      100% {
        opacity: 0;
        transform: scale(1.2);
      }
    }

    .btn-pulse:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(7, 94, 84, 0.7);
    }

    /* Gradiente escuro no elemento, não na imagem */
    .hero-gradient {
      background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 45%, rgba(0,0,0,0.5) 70%, transparent 100%);
    }
    
    /* Mobile: gradiente vai para baixo */
    @media (max-width: 768px) {
      .hero-gradient {
        background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.5) 60%, transparent 100%);
      }
    }

    /* Animações melhoradas */
    @keyframes fadeInUp {
      from { 
        opacity: 0; 
        transform: translateY(200px) scale(2); 
      }
      to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
      }
    }

    .fadeInUp { 
      animation: fadeInUp 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; 
    }
    
    /* Animação para elementos específicos com delay */
    .fadeInUp.delay-1 { animation-delay: 0.4s; }
    .fadeInUp.delay-2 { animation-delay: 0.6s; }
    .fadeInUp.delay-3 { animation-delay: 0.8s; }
    .fadeInUp.delay-4 { animation-delay: 1.0s; }

    /* Seções */
    .section-padding {
      padding: 6rem 1rem;
    }

    .bg-dark-gray {
      background-color: #111;
    }

    .bg-darker-gray {
      background-color: #0a0a0a;
    }

    .icone-destaque {
      background: linear-gradient(135deg, #1b1b1b, #2a2a2a);
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.8rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(247, 199, 0, 0.1);
    }

    .icone-destaque:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 8px 25px rgba(247, 199, 0, 0.2);
    }

    /* CARDS DE SERVIÇOS 2x2 */
    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .card-servico {
      background: linear-gradient(135deg, #1b1b1b, #2a2a2a);
      border-radius: 1rem;
      padding: 2.5rem 2rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      height: 100%;
      border: 1px solid #333;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(100px);
    }

    .card-servico.animate {
      opacity: 1;
      transform: translateY(0);
      transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card-servico::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f7c700, #ffb700);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .card-servico:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(247, 199, 0, 0.15);
    }

    .card-servico:hover::before {
      transform: scaleX(1);
    }

    .card-servico h3 {
      color: #f7c700;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
      font-weight: 700;
      text-align: center;
    }

    .card-servico p {
      color: #e5e5e5;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .card-servico .botao-whatsapp {
      width: 100%;
      justify-content: center;
    }

    .avaliacao {
      background: linear-gradient(135deg, #1b1b1b, #2a2a2a);
      border-radius: 1rem;
      padding: 2.5rem;
      margin: 1rem;
      border: 1px solid #333;
      transition: transform 0.3s ease;
      opacity: 0;
      transform: translateY(100px);
    }

    .avaliacao.animate {
      opacity: 1;
      transform: translateY(0);
      transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

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

    .estrelas {
      color: #f7c700;
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      letter-spacing: 2px;
    }

    .whatsapp-fixo {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 1000;
      background: linear-gradient(135deg, #25D366, #1FAB5A);
      color: #fff;
      padding: 1.2rem;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 8px 25px rgba(7, 94, 84, 0.6);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      animation: float 3s ease-in-out infinite;
    }

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

    .whatsapp-fixo:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 12px 30px rgba(7, 94, 84, 0.8);
    }

    /* Logo da loja */
    .logo-container {
      display: flex;
      margin-bottom: 3rem;
    }
    
    .logo {
      max-width: 220px;
      height: auto;
      filter: drop-shadow(0 4px 8px rgba(247, 199, 0, 0.3));
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    /* Efeitos de entrada para todas as seções */
    .section-animate {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .section-animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* AJUSTES ESPECÍFICOS PARA HERO SECTION */
    @media (min-width: 769px) {
      .hero-content {
        max-width: 50%;
        text-align: left;
      }
      
      .logo-container {
        justify-content: flex-start;
      }
    }

    /* Ajustes para mobile */
    @media (max-width: 768px) {
      .hero-content {
        text-align: center;
        padding-top: 1rem;
        max-width: 100%;
      }
      
      .titulo-principal {
        font-size: 1rem;
        line-height: 1.2;
      }
      
      .logo {
        max-width: 180px;
      }
      
      .logo-container {
        justify-content: center;
      }
      
      .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      
      .hero-icons {
        justify-content: center;
      }

      .cards-container {
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .card {
        width: 100%;
        max-width: 320px;
      }

      .section-padding {
        padding: 4rem 1rem;
      }

      .whatsapp-fixo {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1rem;
        border-radius: 10px;
      }

      .scroll-banner span {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
      }

      .botao-whatsapp, .btn-pulse {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        border-radius: 10px;
      }

      .card-servico {
        padding: 2rem 1.5rem;
        border-radius: 0.8rem;
      }

      .servicos-section {
        padding-top: 4rem;
      }

      /* Grid 1x1 no mobile */
      .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    /* Ajustes para tablets */
    @media (min-width: 769px) and (max-width: 1024px) {
      .hero-content {
        max-width: 60%;
      }

      .cards-container {
        gap: 1.5rem;
      }

      .card {
        width: calc(50% - 1.5rem);
      }

      .servicos-section {
        padding-top: 3rem;
      }

      .servicos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
      }
    }

    /* Melhorias de acessibilidade */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

        .map-container {
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
    }
    
    .info-card {
      background: linear-gradient(135deg, #1b1b1b, #2a2a2a);
      border-radius: 12px;
      padding: 2rem;
      height: 100%;
      border: 1px solid #333;
    }

            /* Estilos para o carrossel */
        .carrossel-container {
            overflow: hidden;
            width: 100%;
        }

        .carrossel-track {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }

        .carrossel-slide {
            flex-shrink: 0;
        }
        
        /* Mobile: 1 slide por vez */
        @media (max-width: 767px) {
            .carrossel-slide {
                width: 100%;
            }
        }
        
        /* Desktop: 3 slides por vez */
        @media (min-width: 768px) {
            .carrossel-slide {
                width: calc(33.333% - 0.666rem);
                margin-right: 1rem;
            }
            
            .carrossel-slide:last-child {
                margin-right: 0;
            }
        }