    /* ============================================================
       ALTUS CUSTOM — DESIGN SYSTEM & LANDING PAGE
       Private Label de Camisetas e Uniformes Personalizados
       ============================================================ */

    /* ---------- CSS VARIABLES ---------- */
    :root {
      --color-primary: #51B848;
      --color-primary-dark: #45a03d;
      --color-bg: #120F15;
      --color-bg-dark: #0A0A0A;
      --color-bg-green: #0F2917;
      --color-surface: #1A1A1A;
      --color-text: #F5F5F5;
      --color-text-muted: #A3A3A3;
      --color-border: #4A4A4A;
      --color-whatsapp: #25D366;
      --color-whatsapp-dark: #1ebe5a;
      --shadow-primary: 0 4px 16px rgba(81, 184, 72, 0.35);
      --shadow-whatsapp: 0 4px 20px rgba(37, 211, 102, 0.4);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --transition-fast: 0.2s ease;
      --transition-base: 0.3s ease;
    }

    /* ---------- CSS RESET & BASE ---------- */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      font-size: 16px;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: #F5F5F5;
      background-color: #120F15;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    ul, ol {
      list-style: none;
    }

    /* ---------- UTILITIES ---------- */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ---------- TYPOGRAPHY ---------- */
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      color: #F5F5F5;
    }

    h1 {
      font-size: 32px;          /* Reduzido para caber melhor no mobile */
      font-weight: 900;
      line-height: 1.2;         /* Aumentado para evitar corte de texto */
      overflow-wrap: break-word; /* Permite quebra de palavras longas */
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 22px;
    }

    h4 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.4;
    }

    .section-title {
      font-size: 28px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 18px;
      font-weight: 400;
      color: #A3A3A3;
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
      line-height: 1.6;
    }

    /* ---------- BUTTONS ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      border-radius: 12px;
      padding: 16px 32px;
      min-height: 48px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: #51B848;
      color: #120F15;
      box-shadow: 0 4px 16px rgba(81, 184, 72, 0.35);
      border: none;
    }

    .btn-primary:hover,
    .btn-primary:focus {
      background: #45a03d;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(81, 184, 72, 0.45);
    }

    .btn-secondary {
      background: transparent;
      color: #51B848;
      border: 2px solid #51B848;
      padding: 14px 30px;
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      background: rgba(81, 184, 72, 0.1);
    }

    .btn-whatsapp {
      background: #25D366;
      color: #FFFFFF;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    .btn-whatsapp:hover,
    .btn-whatsapp:focus {
      background: #1ebe5a;
      transform: translateY(-2px);
    }

    /* ---------- HEADER / NAV ---------- */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: rgba(18, 15, 21, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 16px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #F5F5F5;
      letter-spacing: -0.5px;
    }

    .logo span {
      color: #51B848;
    }

    .nav {
      display: none;
    }

    .nav-list {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-size: 15px;
      font-weight: 500;
      color: #A3A3A3;
      transition: color 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: #51B848;
    }

    .header-cta {
      display: none;
    }

    .mobile-menu-btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 48px;
      height: 48px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: #F5F5F5;
      transition: all 0.3s ease;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: #120F15;
      z-index: 200;
      padding: 80px 32px 32px;
      transition: right 0.3s ease;
      border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 150;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-nav-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .mobile-nav-link {
      font-size: 18px;
      font-weight: 500;
      color: #F5F5F5;
      padding: 8px 0;
      display: block;
      transition: color 0.2s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
      color: #51B848;
    }

    .mobile-nav-cta {
      margin-top: 32px;
      width: 100%;
    }

    .mobile-menu-close {
      position: absolute;
      top: 12px;
      right: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      color: #F5F5F5;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      background: #120F15;
      padding: 100px 0 64px;       /* Padding reduzido no mobile */
      overflow: hidden;
      min-height: auto;            /* Altura automática no mobile */
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      /* Imagem de fundo do hero (substituir por foto real da Altus Custom) */
      background: linear-gradient(135deg, rgba(18, 15, 21, 0.92) 0%, rgba(18, 15, 21, 0.75) 50%, rgba(18, 15, 21, 0.85) 100%),
                  url('../images/hero-bg.webp');
      background-size: cover;      /* Imagem cobre toda a área */
      background-position: center; /* Centraliza a imagem */
      z-index: 0;
      will-change: transform;      /* Otimiza performance para animação de parallax */
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }

    .hero h1 {
      margin-bottom: 24px;
    }

    .hero-link {
      color: #51B848;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease;
    }
    .hero-link:hover, .hero-link:focus {
      color: #7dd673;
    }
    .hero-subtitle {
      font-size: 18px;
      color: #A3A3A3;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    /* ---------- EFEITO MÁQUINA DE ESCREVER NO TÍTULO DO HERO ---------- */
    .typewriter {
      overflow: hidden;         /* Esconde o texto que ainda não apareceu */
      border-right: 3px solid #51B848;  /* Cursor piscando verde */
      white-space: normal;      /* PERMITE quebra de linha no mobile */
      animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
      display: inline;          /* Inline normal (não bloqueia) */
    }

    /* Animação de digitação: largura vai de 0 a 100% */
    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    /* Animação do cursor piscando */
    @keyframes blink-caret {
      from, to { border-color: transparent; }
      50% { border-color: #51B848; }
    }

    /* Respeita preferência do usuário por movimento reduzido */
    @media (prefers-reduced-motion: reduce) {
      .typewriter {
        animation: none;
        border-right: none;
        white-space: normal;
      }
    }

    /* Desativa animacao typewriter em mobile para evitar flicker e scroll horizontal */
    @media (max-width: 767px) {
      .typewriter {
        animation: none;
        border-right: none;
        white-space: normal;
      }
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* ---------- BOTÃO CTA FIXO NO SCROLL ---------- */
    /* Aparece após rolar 300px, fixo na parte inferior da tela */
    .cta-scroll {
      position: fixed;            /* Fixo na tela (não rola com a página) */
      bottom: 0;                  /* Alinhado na parte inferior */
      left: 0;                    /* Da esquerda... */
      right: 0;                   /* ...até a direita (largura total) */
      z-index: 90;                /* Acima do conteúdo, abaixo do header (100) e WhatsApp (999) */
      background: rgba(18, 15, 21, 0.95);  /* Fundo escuro com 95% opacidade */
      backdrop-filter: blur(12px);         /* Efeito de desfoque no fundo */
      -webkit-backdrop-filter: blur(12px); /* Compatibilidade Safari */
      border-top: 1px solid rgba(81, 184, 72, 0.2);  /* Borda verde sutil no topo */
      padding: 12px 24px;         /* Espaçamento interno */
      transform: translateY(100%);  /* Inicialmente escondido (abaixo da tela) */
      transition: transform 0.3s ease;  /* Animação suave ao aparecer */
    }

    /* Estado visível do botão CTA fixo */
    .cta-scroll.visible {
      transform: translateY(0);   /* Volta para posição normal (visível) */
    }

    /* Container interno do CTA fixo */
    .cta-scroll-inner {
      display: flex;              /* Ativa flexbox */
      align-items: center;        /* Centraliza verticalmente */
      justify-content: space-between;  /* Espaço entre texto e botão */
      max-width: 1200px;          /* Largura máxima igual ao container */
      margin: 0 auto;             /* Centraliza horizontalmente */
      gap: 16px;                  /* Espaço entre texto e botão */
    }

    /* Texto do CTA fixo */
    .cta-scroll-text {
      font-size: 14px;            /* Tamanho pequeno */
      color: #A3A3A3;             /* Cor cinza */
      line-height: 1.4;           /* Altura da linha */
    }

    /* Destaque no texto do CTA fixo */
    .cta-scroll-text strong {
      color: #F5F5F5;             /* Cor branca para o destaque */
      font-weight: 600;           /* Peso semi-bold */
    }

    /* Botão dentro do CTA fixo */
    .cta-scroll .btn {
      padding: 12px 24px;         /* Padding menor que o botão padrão */
      font-size: 14px;            /* Fonte menor */
      white-space: nowrap;        /* Não quebra linha */
      flex-shrink: 0;             /* Não encolhe */
    }

    /* ---------- CREDIBILITY BAR ---------- */
    .credibility {
      background: #0A0A0A;
      padding: 40px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .credibility-stats {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      text-align: center;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .stat-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 32px;
      font-weight: 900;
      color: #51B848;
      line-height: 1;
    }

    .stat-label {
      font-size: 14px;
      color: #A3A3A3;
    }

    .stat-divider {
      display: none;
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
    }

    /* ---------- LOGOS DE CLIENTES (SOCIAL PROOF) ---------- */
    .client-logos {
      background: #0A0A0A;      /* Fundo preto quase puro */
      padding: 48px 0;          /* Espaçamento vertical */
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);  /* Borda sutil */
    }

    /* Título da seção de logos */
    .client-logos-title {
      text-align: center;       /* Centralizado */
      font-size: 13px;          /* Fonte pequena */
      color: #A3A3A3;           /* Cor cinza */
      text-transform: uppercase;  /* MAIÚSCULAS */
      letter-spacing: 1px;      /* Espaço entre letras */
      margin-bottom: 24px;      /* Espaço abaixo */
    }

    /* Container que agrupa os logos */
    .client-logos-grid {
      display: flex;            /* Flexbox (logos em linha) */
      flex-wrap: wrap;          /* Permite quebrar linha */
      justify-content: center;  /* Centraliza horizontalmente */
      align-items: center;      /* Centraliza verticalmente */
      gap: 40px;                /* Espaço entre logos */
    }

    /* Cada logo individual */
    .client-logo {
      font-family: 'Montserrat', sans-serif;  /* Fonte display */
      font-size: 18px;          /* Tamanho do texto do logo */
      font-weight: 700;         /* Bold */
      color: rgba(255, 255, 255, 0.25);  /* Branco com 25% opacidade (sutil) */
      transition: color 0.3s ease;  /* Animação suave da cor */
      white-space: nowrap;      /* Não quebra linha */
    }

    /* Logo fica mais visível no hover */
    .client-logo:hover {
      color: rgba(255, 255, 255, 0.6);  /* Branco com 60% opacidade */
    }

    /* ---------- SERVICES ---------- */
    .services {
      background: #0F2917;
      padding: 96px 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .service-card {
      background: #0F2917;
      border: 1px solid rgba(81, 184, 72, 0.1);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s ease;
    }

    .service-card:hover,
    .service-card:focus-within {
      border-color: rgba(81, 184, 72, 0.3);
      box-shadow: 0 8px 32px rgba(81, 184, 72, 0.1);
      transform: translateY(-4px);
    }

    /* Micro-animação do ícone no hover */
    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
      transition: transform 0.3s ease;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      color: #51B848;
      margin-bottom: 16px;
    }

    .service-card h3 {
      margin-bottom: 12px;
      color: #F5F5F5;
    }

    .service-card p {
      color: #A3A3A3;
      font-size: 16px;
      line-height: 1.6;
    }

    /* ---------- DIFFERENTIALS ---------- */
    .differentials {
      background: #0F2917;
      padding: 96px 0;
    }

    .differentials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .differential-item {
      text-align: center;
    }

    .differential-icon {
      width: 56px;
      height: 56px;
      color: #51B848;
      margin: 0 auto 16px;
    }

    .differential-item h4 {
      margin-bottom: 8px;
      color: #F5F5F5;
    }

    .differential-item p {
      color: #A3A3A3;
      font-size: 16px;
      line-height: 1.6;
    }

    /* ============================================================
       SEÇÃO: TECIDOS
       ============================================================
       Esta seção exibe os tipos de tecidos disponíveis na Altus Custom.
       Cada tecido é apresentado em um card com ícone, descrição,
       especificações técnicas e tags de destaque.
       ============================================================ */

    /* ---------- CONTAINER PRINCIPAL DA SEÇÃO TECIDOS ---------- */
    /* Classe aplicada na tag <section> que envolve toda a seção */
    .tecido {
      background: #120F15;    /* Cor de fundo: preto profundo (#120F15) */
      padding: 96px 0;        /* Espaçamento interno: 96px em cima/baixo, 0 nas laterais */
    }

    /* ---------- CARROSSEL DE TECIDOS ---------- */
    /* Container principal do carrossel (envolve track + botões) */
    .tecido-carousel {
      position: relative;     /* Posicionamento relativo (para botões absolutos dentro) */
      width: 100%;            /* Ocupa 100% da largura do container pai */
    }

    /* ---------- ÁREA VISÍVEL DO CARROSSEL (MÁSCARA) ---------- */
    /* Esconde os cards que estão fora da área visível */
    .tecido-carousel-viewport {
      overflow: hidden;       /* Esconde conteúdo que ultrapassa os limites */
      width: 100%;            /* Largura total do container */
      border-radius: 16px;    /* Cantos arredondados na área visível */
      -webkit-overflow-scrolling: touch;  /* Scroll suave no iOS/Safari */
    }

    /* ---------- FAIXA QUE CONTÉM OS CARDS (TRACK) ---------- */
    /* Os cards são organizados em linha horizontal */
    .tecido-carousel-track {
      display: flex;          /* Ativa flexbox (alinha cards em linha horizontal) */
      gap: 24px;              /* Espaço de 24px entre cada card */
      transition: transform 0.4s ease;  /* Animação suave ao deslizar (0.4s) */
      will-change: transform; /* Otimiza performance da animação no navegador */
    }

    /* ---------- CARD INDIVIDUAL DENTRO DO CARROSSEL ---------- */
    /* Cada card tem largura fixa para funcionar no carrossel */
    .tecido-carousel .tecido-card {
      flex: 0 0 calc(100% - 24px);  /* Largura = 100% menos o gap (para não ultrapassar) */
      max-width: calc(100% - 24px); /* Largura máxima controlada */
      box-sizing: border-box; /* Padding e borda incluídos no cálculo de largura */
      min-width: auto;        /* Permite ajuste em telas pequenas */
    }

    /* ---------- BOTÕES DE NAVEGAÇÃO DO CARROSSEL (SETAS) ---------- */
    /* Botões circulares nas laterais para avançar/voltar */
    .tecido-carousel-btn {
      position: absolute;     /* Posicionamento absoluto em relação ao .tecido-carousel */
      top: 50%;               /* Alinha verticalmente ao centro (50% do topo) */
      transform: translateY(-50%);  /* Corrige o centro (move para cima metade da própria altura) */
      width: 48px;            /* Largura do botão: 48px */
      height: 48px;           /* Altura do botão: 48px (quadrado) */
      border-radius: 50%;     /* Borda totalmente arredondada (círculo perfeito) */
      background: #1A1A1A;    /* Fundo cinza escuro (#1A1A1A) */
      border: 1px solid rgba(81, 184, 72, 0.3);  /* Borda verde com 30% opacidade */
      color: #51B848;         /* Cor do ícone: verde limão (#51B848) */
      cursor: pointer;        /* Cursor de mão (indica que é clicável) */
      display: flex;          /* Ativa flexbox para centralizar o ícone */
      align-items: center;    /* Centraliza verticalmente */
      justify-content: center;  /* Centraliza horizontalmente */
      z-index: 10;            /* Fica acima dos cards (camada superior) */
      transition: all 0.2s ease;  /* Animação suave em todas as propriedades */
    }

    /* ---------- ESTADO HOVER DOS BOTÕES ---------- */
    .tecido-carousel-btn:hover {
      background: #51B848;    /* Fundo fica verde no hover */
      color: #120F15;         /* Ícone fica preto no hover (contraste) */
      transform: translateY(-50%) scale(1.1);  /* Aumenta 10% no hover */
    }

    /* ---------- ESTADO DESABILITADO (OPACIDADE REDUZIDA) ---------- */
    /* Quando chega no primeiro ou último slide */
    .tecido-carousel-btn:disabled {
      opacity: 0.3;           /* Opacidade de 30% (visualmente desabilitado) */
      cursor: not-allowed;    /* Cursor de "não permitido" */
      pointer-events: none;   /* Ignora eventos de mouse/clique */
    }

    /* ---------- POSIÇÃO DO BOTÃO "ANTERIOR" (ESQUERDA) ---------- */
    .tecido-carousel-btn.prev {
      left: -16px;            /* 16px para fora do container (à esquerda) */
    }

    /* ---------- POSIÇÃO DO BOTÃO "PRÓXIMO" (DIREITA) ---------- */
    .tecido-carousel-btn.next {
      right: -16px;           /* 16px para fora do container (à direita) */
    }

    /* ---------- ÍCONE SVG DENTRO DOS BOTÕES ---------- */
    .tecido-carousel-btn svg {
      width: 20px;            /* Largura do ícone: 20px */
      height: 20px;           /* Altura do ícone: 20px */
    }

    /* ---------- INDICADORES DE PAGINAÇÃO (BOLINHAS) ---------- */
    /* Container que agrupa as bolinhas de navegação */
    .tecido-carousel-dots {
      display: flex;          /* Ativa flexbox (bolinhas em linha) */
      justify-content: center;  /* Centraliza horizontalmente */
      gap: 10px;              /* Espaço de 10px entre cada bolinha */
      margin-top: 32px;       /* Espaço de 32px acima (separando dos cards) */
    }

    /* ---------- BOLINHA INDIVIDUAL ---------- */
    .tecido-carousel-dot {
      width: 12px;            /* Largura visual: 12px */
      height: 12px;           /* Altura visual: 12px */
      border-radius: 50%;     /* Totalmente arredondado (círculo) */
      background: rgba(255, 255, 255, 0.2);  /* Fundo branco com 20% opacidade */
      border: none;           /* Sem borda */
      cursor: pointer;        /* Cursor de mão */
      padding: 14px;          /* Padding aumentado para area de toque minima 40px */
      margin: -8px;           /* Margem negativa compensa o padding */
      box-sizing: content-box;
      background-clip: content-box;  /* Fundo so na area visual */
      transition: all 0.25s ease;  /* Animação suave */
      -webkit-tap-highlight-color: transparent;
    }

    /* ---------- BOLINHA ATIVA (SLIDE ATUAL) ---------- */
    .tecido-carousel-dot.active {
      background: #51B848;    /* Fundo verde limão (#51B848) quando ativa */
      width: 32px;            /* Largura aumentada: 32px (formato de cápsula) */
      border-radius: 999px;   /* Borda totalmente arredondada (pílula) */
    }

    /* ---------- CARD INDIVIDUAL DE CADA TECIDO ---------- */
    /* Classe aplicada em cada <article> que representa um tecido */
    .tecido-card {
      background: #1A1A1A;    /* Cor de fundo do card: cinza escuro (#1A1A1A) */
      border: 1px solid rgba(255, 255, 255, 0.05);  /* Borda sutil: branco com 5% de opacidade */
      border-radius: 16px;    /* Cantos arredondados: 16px de raio */
      padding: 32px;          /* Espaçamento interno: 32px em todos os lados */
      transition: all 0.3s ease;  /* Animação suave de 0.3s em TODAS as propriedades que mudarem */
      position: relative;     /* Posicionamento relativo (permite posicionar elementos filhos absolutos) */
      overflow: hidden;       /* Esconde qualquer conteúdo que ultrapasse os limites do card */
    }

    /* ---------- ESTADO HOVER (MOUSE SOBRE) E FOCUS (TECLADO) DO CARD ---------- */
    /* Aplica quando o usuário passa o mouse ou navega com Tab */
    .tecido-card:hover,      /* Quando o mouse está sobre o card */
    .tecido-card:focus-within {  /* Quando algum elemento dentro do card recebe foco via teclado */
      border-color: rgba(81, 184, 72, 0.3);  /* Borda fica verde com 30% de opacidade */
      box-shadow: 0 8px 32px rgba(81, 184, 72, 0.1);  /* Sombra verde sutil (glow) */
      transform: translateY(-4px);  /* Card sobe 4px (efeito de levantar) */
    }

    /* ---------- BARRA VERDE LATERAL DO CARD (ELEMENTO DECORATIVO) ---------- */
    /* Pseudo-elemento ::before cria uma barra verde na lateral esquerda */
    .tecido-card::before {
      content: '';            /* Conteúdo vazio (obrigatório para pseudo-elementos) */
      position: absolute;     /* Posicionamento absoluto em relação ao card */
      top: 0;                 /* Alinha no topo do card */
      left: 0;                /* Alinha na lateral esquerda do card */
      width: 4px;             /* Largura da barra: 4px */
      height: 100%;           /* Altura: 100% do card (do topo à base) */
      background: #51B848;    /* Cor da barra: verde limão (#51B848) */
      opacity: 0;             /* Inicialmente invisível (opacidade 0) */
      transition: opacity 0.3s ease;  /* Animação suave da opacidade */
    }

    /* ---------- ATIVA A BARRA VERDE NO HOVER/FOCUS ---------- */
    .tecido-card:hover::before,      /* Quando mouse passa sobre o card */
    .tecido-card:focus-within::before {  /* Quando elemento interno recebe foco */
      opacity: 1;             /* Barra fica visível (opacidade 1 = 100%) */
    }

    /* ---------- CABEÇALHO DO CARD (ÍCONE + NOME + COMPOSIÇÃO) ---------- */
    /* Container que agrupa o ícone e as informações do tecido */
    .tecido-header {
      display: flex;          /* Ativa flexbox (alinha itens em linha) */
      align-items: center;    /* Alinha verticalmente ao centro */
      gap: 16px;              /* Espaço de 16px entre o ícone e o texto */
      margin-bottom: 20px;    /* Espaço de 20px abaixo do cabeçalho */
    }

    /* ---------- CÍRCULO/QUADRADO COM O ÍCONE SVG ---------- */
    /* Container visual que envolve o ícone de cada tecido */
    .tecido-icon {
      width: 48px;            /* Largura: 48px */
      height: 48px;           /* Altura: 48px (quadrado perfeito) */
      border-radius: 12px;    /* Cantos arredondados: 12px */
      background: rgba(81, 184, 72, 0.1);  /* Fundo verde com 10% de opacidade */
      display: flex;          /* Ativa flexbox para centralizar o ícone */
      align-items: center;    /* Centraliza verticalmente */
      justify-content: center;  /* Centraliza horizontalmente */
      color: #51B848;         /* Cor do ícone: verde limão (#51B848) */
      flex-shrink: 0;         /* Impede que o ícone encolha (mantém 48x48) */
    }

    /* ---------- DIMENSIONAMENTO DO ÍCONE SVG DENTRO DO CÍRCULO ---------- */
    .tecido-icon svg {
      width: 24px;            /* Largura do SVG: 24px */
      height: 24px;           /* Altura do SVG: 24px */
    }

    /* ---------- NOME DO TECIDO (TÍTULO DO CARD) ---------- */
    .tecido-name {
      font-family: 'Montserrat', sans-serif;  /* Fonte: Montserrat */
      font-size: 20px;        /* Tamanho da fonte: 20px */
      font-weight: 700;       /* Peso da fonte: 700 (bold/negrito) */
      color: #F5F5F5;         /* Cor: branco off (#F5F5F5) */
      line-height: 1.2;       /* Altura da linha: 1.2x o tamanho da fonte */
    }

    /* ---------- COMPOSIÇÃO DO TECIDO (SUBTÍTULO VERDE) ---------- */
    /* Exibe a composição química, ex: "100% Algodão — Fio 30.1" */
    .tecido-composition {
      font-size: 13px;        /* Tamanho da fonte: 13px */
      color: #51B848;         /* Cor: verde limão (#51B848) */
      font-weight: 500;       /* Peso: 500 (medium) */
      margin-top: 4px;        /* Espaço de 4px acima (separando do nome) */
    }

    /* ---------- DESCRIÇÃO DO TECIDO (PARÁGRAFO EXPLICATIVO) ---------- */
    .tecido-desc {
      color: #A3A3A3;         /* Cor: cinza claro (#A3A3A3) */
      font-size: 15px;        /* Tamanho: 15px */
      line-height: 1.6;       /* Altura da linha: 1.6x (mais espaçado, fácil leitura) */
      margin-bottom: 20px;    /* Espaço de 20px abaixo (antes das specs) */
    }

    /* ---------- GRID DAS ESPECIFICAÇÕES TÉCNICAS ---------- */
    /* Organiza as 4 specs em 2 colunas x 2 linhas */
    .tecido-specs {
      display: grid;          /* Ativa grid layout */
      grid-template-columns: repeat(2, 1fr);  /* 2 colunas de tamanho igual (1fr cada) */
      gap: 12px;              /* Espaço de 12px entre cada spec */
    }

    /* ---------- ITEM INDIVIDUAL DE ESPECIFICAÇÃO ---------- */
    /* Cada par label+valor (ex: "Gramatura" / "160g/m²") */
    .tecido-spec {
      display: flex;          /* Ativa flexbox */
      flex-direction: column; /* Organiza em coluna (label em cima, valor embaixo) */
      gap: 2px;               /* Espaço de 2px entre label e valor */
    }

    /* ---------- LABEL DA ESPECIFICAÇÃO (NOME DA PROPRIEDADE) ---------- */
    /* Ex: "GRAMATURA", "TOQUE", "IDEAL PARA", "ESTAMPARIA" */
    .tecido-spec-label {
      font-size: 11px;        /* Tamanho bem pequeno: 11px */
      text-transform: uppercase;  /* Transforma tudo em MAIÚSCULAS */
      letter-spacing: 0.5px;  /* Espaço entre letras: 0.5px (mais legível) */
      color: #A3A3A3;         /* Cor: cinza claro (#A3A3A3) */
      font-weight: 500;       /* Peso: 500 (medium) */
    }

    /* ---------- VALOR DA ESPECIFICAÇÃO (RESPOSTA) ---------- */
    /* Ex: "160g/m²", "Macio / Premium", "Streetwear" */
    .tecido-spec-value {
      font-size: 14px;        /* Tamanho: 14px */
      color: #F5F5F5;         /* Cor: branco off (#F5F5F5) */
      font-weight: 600;       /* Peso: 600 (semi-bold, mais destaque) */
    }

    /* ---------- CONTAINER DAS TAGS DE DESTAQUE ---------- */
    /* Agrupa as tags tipo "Mais vendido", "Premium", "Esportivo" */
    .tecido-tags {
      display: flex;          /* Ativa flexbox (tags em linha) */
      flex-wrap: wrap;        /* Permite quebrar linha se não couber */
      gap: 8px;               /* Espaço de 8px entre cada tag */
      margin-top: 20px;       /* Espaço de 20px acima (separando das specs) */
    }

    /* ---------- TAG INDIVIDUAL DE DESTAQUE ---------- */
    /* Pills arredondadas com texto de destaque */
    .tecido-tag {
      font-size: 12px;        /* Tamanho: 12px */
      font-weight: 500;       /* Peso: 500 (medium) */
      padding: 6px 12px;      /* Espaçamento interno: 6px vertical, 12px horizontal */
      border-radius: 999px;   /* Borda totalmente arredondada (formato de pílula) */
      background: rgba(81, 184, 72, 0.1);  /* Fundo verde com 10% opacidade */
      color: #51B848;         /* Texto: verde limão (#51B848) */
      border: 1px solid rgba(81, 184, 72, 0.15);  /* Borda verde com 15% opacidade */
    }

    /* ---------- ABOUT ---------- */
    .about {
      background: #0A0A0A;
      padding: 96px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-content {
      color: #A3A3A3;
    }

    .about-content p {
      margin-bottom: 16px;
      line-height: 1.7;
    }

    .about-lead {
      font-size: 18px;
      color: #F5F5F5;
    }

    .about-list {
      margin-top: 24px;
      list-style: none;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      color: #F5F5F5;
    }

    .about-list li span {
      color: #51B848;
      font-weight: 700;
      flex-shrink: 0;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .about-stat {
      background: #120F15;
      border: 1px solid #4A4A4A;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .about-stat:hover {
      border-color: rgba(81, 184, 72, 0.3);
      transform: translateY(-4px);
    }

    .about-stat-number {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 32px;
      font-weight: 900;
      color: #51B848;
      line-height: 1;
      margin-bottom: 8px;
    }

    .about-stat-label {
      font-size: 14px;
      color: #A3A3A3;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
      }

      .about-stat-number {
        font-size: 40px;
      }
    }

    /* ---------- PORTFOLIO ---------- */
    .portfolio {
      background: #120F15;
      padding: 96px 0;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .portfolio-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: #1A1A1A;
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .portfolio-item:hover img,
    .portfolio-item:focus-within img {
      transform: scale(1.05);
    }

    .portfolio-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(18, 15, 21, 0.9));
      padding: 24px;
      color: #F5F5F5;
    }

    .portfolio-caption {
      text-align: center;
      margin-top: 24px;
      font-size: 14px;
      color: #A3A3A3;
    }

    /* ---------- PROCESS ---------- */
    .process {
      background: #0F2917;
      padding: 96px 0;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
      position: relative;
    }

    .process-step {
      display: flex;
      gap: 24px;
      position: relative;
    }

    .step-number {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #51B848;
      color: #120F15;
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-content h4 {
      margin-bottom: 8px;
      color: #F5F5F5;
    }

    .step-content p {
      color: #A3A3A3;
      font-size: 16px;
      line-height: 1.6;
    }

    .process-line {
      display: none;
    }

    /* ---------- CATALOG ---------- */
    .catalog {
      background: #0F2917;
      padding: 96px 0;
    }

    /* Carrossel do catálogo */
    .catalog-carousel {
      position: relative;
      width: 100%;
    }

    .catalog-carousel-viewport {
      overflow: hidden;
      width: 100%;
      border-radius: 16px;
    }

    .catalog-carousel-track {
      display: flex;
      gap: 16px;
      transition: transform 0.4s ease;
    }

    .catalog-carousel-card {
      flex: 0 0 calc(100% - 16px);
      max-width: calc(100% - 16px);
      background: #120F15;
      border: 1px solid rgba(81, 184, 72, 0.1);
      border-radius: 16px;
      overflow: hidden;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    .catalog-carousel-card:hover {
      border-color: rgba(81, 184, 72, 0.3);
      transform: translateY(-4px);
    }

    .catalog-carousel-image {
      width: 100%;
      aspect-ratio: 5 / 3;
      background: #1A1A1A;
      overflow: hidden;
    }

    .catalog-carousel-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .catalog-carousel-body {
      padding: 20px;
    }

    .catalog-carousel-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #F5F5F5;
      margin-bottom: 2px;
    }

    .catalog-carousel-subtitle {
      font-size: 12px;
      color: #51B848;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .catalog-carousel-desc {
      color: #A3A3A3;
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .catalog-carousel-specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .catalog-carousel-spec-label {
      font-size: 10px;
      text-transform: uppercase;
      color: #A3A3A3;
      letter-spacing: 0.5px;
    }

    .catalog-carousel-spec-value {
      font-size: 12px;
      color: #F5F5F5;
      font-weight: 600;
    }

    .catalog-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #1A1A1A;
      border: 1px solid rgba(81, 184, 72, 0.3);
      color: #51B848;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      -webkit-tap-highlight-color: transparent;
    }

    .catalog-carousel-btn.prev { left: -16px; }
    .catalog-carousel-btn.next { right: -16px; }

    .catalog-carousel-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .catalog-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .catalog-carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      cursor: pointer;
      padding: 14px;
      margin: -8px;
      box-sizing: content-box;
      background-clip: content-box;
      -webkit-tap-highlight-color: transparent;
    }

    .catalog-carousel-dot.active {
      background: #51B848;
      width: 28px;
      border-radius: 999px;
    }

    .catalog-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonials {
      background: #0A0A0A;
      padding: 96px 0;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .testimonial-card {
      background: #120F15;
      border: 1px solid #4A4A4A;
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      border-color: rgba(81, 184, 72, 0.3);
      transform: translateY(-4px);
    }

    .testimonial-stars {
      color: #FFC107;
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .testimonial-text {
      color: #F5F5F5;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #51B848;
      color: #120F15;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 20px;
      flex-shrink: 0;
    }

    .testimonial-author strong {
      display: block;
      color: #F5F5F5;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .testimonial-author span {
      display: block;
      color: #A3A3A3;
      font-size: 14px;
    }

    .testimonials-disclaimer {
      text-align: center;
      color: #666;
      font-size: 14px;
      margin-top: 32px;
    }

    @media (min-width: 768px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ---------- ANTES E DEPOIS ---------- */
    .before-after {
      background: #120F15;
      padding: 96px 0;
    }

    .before-after-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      max-width: 800px;
      margin: 0 auto;
    }

    .before-after-item {
      width: 100%;
    }

    .before-after-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #51B848;
      margin-bottom: 12px;
      text-align: center;
    }

    .before-after-card {
      background: #1A1A1A;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 32px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .before-after-card.before {
      border-left: 4px solid #A3A3A3;
    }

    .before-after-card.after {
      border-left: 4px solid #51B848;
      background: rgba(81, 184, 72, 0.05);
    }

    .before-after-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .before-after-card p {
      color: #D4D4D4;
      font-size: 16px;
      line-height: 1.6;
      font-style: italic;
    }

    .before-after-arrow {
      font-size: 32px;
      color: #51B848;
      transform: rotate(90deg);
    }

    /* ---------- BANNER DE URGÊNCIA ---------- */
    .urgency-banner {
      background: linear-gradient(135deg, #0F2917 0%, #1a3a1a 100%);
      border-top: 2px solid #51B848;
      border-bottom: 2px solid #51B848;
      padding: 24px 0;
      position: relative;
      overflow: hidden;
    }

    /* Efeito de brilho pulsante no banner */
    .urgency-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(81, 184, 72, 0.1), transparent);
      animation: urgencyShine 3s infinite;
    }

    @keyframes urgencyShine {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .urgency-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .urgency-icon {
      font-size: 32px;
      animation: urgencyPulse 1.5s infinite;
    }

    @keyframes urgencyPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    .urgency-text {
      color: #F5F5F5;
      font-size: 16px;
      line-height: 1.5;
      max-width: 600px;
    }

    .urgency-text strong {
      color: #51B848;
    }

    /* ---------- CTA FINAL ---------- */
    .cta-final {
      background: #120F15;
      padding: 96px 0;
    }

    .cta-final-content {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }

    .cta-final h2 {
      margin-bottom: 16px;
    }

    .cta-final-subtitle {
      font-size: 18px;
      color: #A3A3A3;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      justify-content: center;
      margin-bottom: 64px;
    }

    .lead-form {
      max-width: 600px;
      margin: 0 auto;
      background: #1A1A1A;
      border: 1px solid rgba(81, 184, 72, 0.2);
      border-radius: 16px;
      padding: 40px 24px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #F5F5F5;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: #120F15;
      border: 1px solid #4A4A4A;
      color: #F5F5F5;
      border-radius: 10px;
      padding: 14px 16px;
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      transition: all 0.2s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #51B848;
      box-shadow: 0 0 0 3px rgba(81, 184, 72, 0.15);
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #A3A3A3;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.5;
    }

    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: #EF4444;
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    .form-submit {
      width: 100%;
      margin-top: 8px;
    }

    /* ---------- FOOTER ---------- */
    .footer {
      background: #0A0A0A;
      padding: 64px 0 32px;
      color: #A3A3A3;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand .logo {
      margin-bottom: 16px;
      display: inline-block;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #F5F5F5;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-size: 15px;
      color: #A3A3A3;
      transition: color 0.2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: #51B848;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contact a {
      font-size: 15px;
      color: #A3A3A3;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-contact a:hover,
    .footer-contact a:focus {
      color: #51B848;
    }

    .footer-address {
      font-style: normal;
    }

    .footer-address a {
      font-size: 15px;
      color: #A3A3A3;
      transition: color 0.2s ease;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.6;
    }

    .footer-address a:hover,
    .footer-address a:focus {
      color: #51B848;
    }

    .footer-social {
      display: flex;
      gap: 16px;
      margin-top: 8px;
    }

    .footer-social a {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #A3A3A3;
      transition: all 0.2s ease;
    }

    .footer-social a:hover,
    .footer-social a:focus {
      background: #51B848;
      color: #120F15;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 14px;
    }

    .footer-bottom-links {
      display: flex;
      justify-content: center;
      gap: 24px;
    }

    .footer-bottom-links a {
      font-size: 14px;
      color: #A3A3A3;
      transition: color 0.2s ease;
    }

    .footer-bottom-links a:hover,
    .footer-bottom-links a:focus {
      color: #51B848;
    }

    /* ---------- WHATSAPP FLOAT ---------- */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;               /* Distância do fundo padrão */
      right: 24px;
      z-index: 999;
      transition: bottom 0.3s ease;  /* Animação suave ao mover */
    }

    /* Classe adicionada via JavaScript quando CTA está visível */
    .whatsapp-float.moved-up {
      bottom: 80px;             /* Sobe para não ficar em cima do CTA */
    }

    @media (max-width: 480px) {
      .whatsapp-float.moved-up {
        bottom: 110px;          /* Mais espaço no mobile porque CTA pode ter altura maior */
      }
    }

    .whatsapp-float a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      color: #FFFFFF;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s ease;
      animation: whatsappPulse 2s infinite;
    }

    .whatsapp-float a:hover,
    .whatsapp-float a:focus {
      transform: scale(1.1);
    }

    @keyframes whatsappPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    /* ---------- SCROLL REVEAL ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger animation delays para cards */
    .services-grid .reveal.visible:nth-child(1) { transition-delay: 0s; }
    .services-grid .reveal.visible:nth-child(2) { transition-delay: 0.1s; }
    .services-grid .reveal.visible:nth-child(3) { transition-delay: 0.2s; }
    .services-grid .reveal.visible:nth-child(4) { transition-delay: 0.3s; }

    .differentials-grid .reveal.visible:nth-child(1) { transition-delay: 0s; }
    .differentials-grid .reveal.visible:nth-child(2) { transition-delay: 0.08s; }
    .differentials-grid .reveal.visible:nth-child(3) { transition-delay: 0.16s; }
    .differentials-grid .reveal.visible:nth-child(4) { transition-delay: 0.24s; }
    .differentials-grid .reveal.visible:nth-child(5) { transition-delay: 0.32s; }

    .portfolio-grid .reveal.visible:nth-child(1) { transition-delay: 0s; }
    .portfolio-grid .reveal.visible:nth-child(2) { transition-delay: 0.1s; }
    .portfolio-grid .reveal.visible:nth-child(3) { transition-delay: 0.2s; }
    .portfolio-grid .reveal.visible:nth-child(4) { transition-delay: 0.3s; }

    .process-step.reveal.visible:nth-child(2) { transition-delay: 0s; }
    .process-step.reveal.visible:nth-child(3) { transition-delay: 0.1s; }
    .process-step.reveal.visible:nth-child(4) { transition-delay: 0.2s; }
    .process-step.reveal.visible:nth-child(5) { transition-delay: 0.3s; }
    .process-step.reveal.visible:nth-child(6) { transition-delay: 0.4s; }

    /* ---------- FAQ ACCORDION ---------- */
    .faq {
      background: #120F15;
      padding: 96px 0;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #1A1A1A;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.3s ease;
    }

    .faq-item[open] {
      border-color: rgba(81, 184, 72, 0.2);
    }

    .faq-item:hover {
      border-color: rgba(81, 184, 72, 0.15);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #F5F5F5;
      list-style: none;
      transition: color 0.2s ease;
    }

    .faq-question::-webkit-details-marker {
      display: none;
    }

    .faq-question:hover {
      color: #51B848;
    }

    .faq-icon {
      font-size: 20px;
      font-weight: 400;
      color: #51B848;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-item[open] .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 24px 20px;
      color: #A3A3A3;
      font-size: 15px;
      line-height: 1.7;
      animation: faqFadeIn 0.3s ease;
    }

    .faq-answer p {
      margin: 0;
    }

    .faq-answer strong {
      color: #F5F5F5;
      font-weight: 600;
    }

    @keyframes faqFadeIn {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ---------- PORTFOLIO LIGHTBOX ---------- */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .lightbox.active .lightbox-img {
      transform: scale(1);
    }

    .lightbox-caption {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      color: #A3A3A3;
      font-size: 14px;
      text-align: center;
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #F5F5F5;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .lightbox-close:hover {
      background: rgba(239, 68, 68, 0.8);
      transform: scale(1.1);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #F5F5F5;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .lightbox-nav:hover {
      background: #51B848;
      color: #120F15;
    }

    .lightbox-nav.prev { left: 24px; }
    .lightbox-nav.next { right: 24px; }

    .portfolio-item {
      cursor: pointer;
    }

    /* ============================================================
       RESPONSIVE — TABLET (>= 768px)
       ============================================================ */
    @media (min-width: 768px) {
      .container {
        padding-left: 48px;
        padding-right: 48px;
      }

      h1 {
        font-size: 48px;
      }

      h2, .section-title {
        font-size: 36px;
      }

      h3 {
        font-size: 24px;
      }

      .hero {
        padding: 160px 0 128px;
        min-height: 100vh;       /* Altura mínima = tela cheia no tablet+ */
        display: flex;           /* Centraliza conteúdo verticalmente */
        align-items: center;     /* Centralização vertical */
      }

      .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .credibility-stats {
        flex-direction: row;
        justify-content: center;
        gap: 48px;
      }

      .stat-divider {
        display: block;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* ---------- RESPONSIVO TABLET: CARROSSEL DE TECIDOS ---------- */
      /* A partir de 768px: cada card ocupa 50% da largura (2 cards visíveis) */
      .tecido-carousel .tecido-card {
        flex: 0 0 calc(50% - 12px);  /* Largura = 50% menos metade do gap */
        max-width: calc(50% - 12px); /* Largura máxima igual */
        min-width: auto;             /* Remove largura mínima do mobile */
      }

      /* ---------- RESPONSIVO TABLET: CARROSSEL DO CATÁLOGO ---------- */
      .catalog-carousel-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
      }

      .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      /* ---------- RESPONSIVO TABLET: CTA FIXO ---------- */
      .cta-scroll-inner {
        justify-content: center;  /* Centraliza no tablet */
        gap: 24px;                /* Mais espaço entre texto e botão */
      }

      .cta-scroll-text {
        font-size: 15px;          /* Fonte um pouco maior no tablet */
      }
    }

    /* ============================================================
       RESPONSIVE — DESKTOP (>= 1024px)
       ============================================================ */
    @media (min-width: 1024px) {
      .container {
        padding-left: 64px;
        padding-right: 64px;
      }

      h1 {
        font-size: 56px;
      }

      h2, .section-title {
        font-size: 42px;
      }

      h3 {
        font-size: 28px;
      }

      .nav {
        display: block;
      }

      .header-cta {
        display: inline-flex;
      }

      .mobile-menu-btn {
        display: none;
      }

      .services-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .differentials-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
      }

      .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .process-steps {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
      }

      .process-step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .step-number {
        margin-bottom: 16px;
      }

      .process-line {
        display: block;
        position: absolute;
        top: 24px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: rgba(81, 184, 72, 0.2);
        z-index: 0;
      }

      .process-step {
        position: relative;
        z-index: 1;
      }

      /* ---------- RESPONSIVO DESKTOP: CARROSSEL DE TECIDOS ---------- */
      /* A partir de 1024px: cada card ocupa 33.333% da largura (3 cards visíveis) */
      .tecido-carousel .tecido-card {
        flex: 0 0 calc(33.333% - 16px);  /* Largura = 33.33% menos parte do gap */
        max-width: calc(33.333% - 16px); /* Largura máxima igual */
      }

      /* ---------- RESPONSIVO DESKTOP: CARROSSEL DO CATÁLOGO ---------- */
      .catalog-carousel-card {
        flex: 0 0 calc(33.333% - 11px);
        max-width: calc(33.333% - 11px);
      }

      .catalog-carousel-btn.prev {
        left: -24px;
      }
      .catalog-carousel-btn.next {
        right: -24px;
      }

      /* ---------- AJUSTE DOS BOTÕES NO DESKTOP ---------- */
      /* Botões ficam mais afastados das bordas em telas grandes */
      .tecido-carousel-btn.prev {
        left: -24px;            /* 24px para fora (mais espaço em telas grandes) */
      }
      .tecido-carousel-btn.next {
        right: -24px;           /* 24px para fora */
      }

      .before-after-grid {
        flex-direction: row;    /* Alinha horizontal no desktop */
      }

      .before-after-arrow {
        transform: rotate(0deg);  /* Seta aponta para direita */
      }

      .urgency-content {
        flex-direction: row;    /* Alinha horizontal */
        text-align: left;
      }

      .lead-form {
        padding: 48px;
      }

      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
      }
    }


/* ============================================================
   MENSAGENS DE SUCESSO E ERRO DO FORMULÁRIO
   ============================================================ */

.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.5s ease forwards;
}

.form-success:not([hidden]),
.form-error:not([hidden]) {
  display: block;
}

.form-success {
  border-color: rgba(81, 184, 72, 0.3);
}

.form-error {
  border-color: rgba(239, 68, 68, 0.3);
}

.form-success-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
}

.form-success-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.form-success-text {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.form-success-cta {
  margin-top: 16px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-success-reset,
#form-error-retry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-error p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .form-success,
  .form-error {
    padding: 56px 40px;
  }

  .form-success-title {
    font-size: 28px;
  }

  .form-success-text {
    font-size: 17px;
  }
}

/* ============================================================
   COOKIE BANNER / LGPD
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  border-top: 1px solid #4A4A4A;
  padding: 20px 24px;
  z-index: 85;              /* Acima do conteudo, abaixo do header (100), CTA scroll (90) e WhatsApp (999) */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-banner-text {
  color: #F5F5F5;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: #51B848;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
  color: #7dd673;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-banner-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-banner-btn.accept {
  background: #51B848;
  color: #120F15;
}

.cookie-banner-btn.accept:hover {
  background: #45a03d;
}

.cookie-banner-btn.reject {
  background: transparent;
  color: #F5F5F5;
  border: 1px solid #4A4A4A;
}

.cookie-banner-btn.reject:hover {
  border-color: #51B848;
  color: #51B848;
}

@media (min-width: 768px) {
  .cookie-banner-container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .cookie-banner-text {
    font-size: 15px;
    max-width: 70%;
  }
}
