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

  :root {
    --laranja:        #E8721A;
    --laranja-claro:  #F4933A;
    --laranja-escuro: #C45E10;
    --laranja-pale:   #FFF0E5;
    --verde:          #2E6B1F;
    --verde-claro:    #3D8A2A;
    --verde-pale:     #EAF5E5;
    --branco:         #FFFFFF;
    --off-white:      #FBF8F5;
    --cinza-light:    #EDE8E3;
    --cinza-medio:    #B4A89C;
    --cinza-texto:    #5A4E46;
    --escuro:         #1E1512;
    --sombra:         rgba(232,114,26,0.18);
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--branco);
    color: var(--escuro);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--branco);
    border-bottom: 3px solid var(--laranja);
    padding: 0 3rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  }
  .logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon {
    width: 46px; height: 46px;
    background: var(--laranja); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 3px 10px var(--sombra);
    flex-shrink: 0;
  }
  .logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; line-height: 1.1; }
  .logo-text .top { font-size: 1.3rem; }
  .logo-text .eco { color: var(--verde); }
  .logo-text .lata { color: var(--verde); }
  .logo-text .sub { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--laranja); display: block; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--cinza-texto); text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
  .nav-links a:hover { color: var(--laranja); }
  .nav-cta {
    background: var(--laranja); color: var(--branco);
    border: none; padding: 11px 26px;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
    border-radius: 50px; cursor: pointer; text-transform: uppercase;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .nav-cta:hover { background: var(--laranja-escuro); transform: translateY(-1px); box-shadow: 0 6px 18px var(--sombra); }

  /* HERO */
  .hero {
    position: relative; min-height: 90vh;
    display: flex; align-items: center;
    padding: 4rem 3rem;
    overflow: hidden;
    background: var(--off-white);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 65% 65% at 80% 45%, rgba(232,114,26,0.13) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 15% 75%, rgba(46,107,31,0.08) 0%, transparent 55%);
    z-index: 0;
  }
  .hero-ring {
    position: absolute; right: -120px; top: -120px;
    width: 600px; height: 600px; border-radius: 50%;
    border: 70px solid rgba(232,114,26,0.06);
    z-index: 0;
  }
  .hero-ring2 {
    position: absolute; right: 60px; top: 60px;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(232,114,26,0.1);
    z-index: 0;
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--verde-pale); border: 1.5px solid rgba(46,107,31,0.3);
    color: var(--verde); font-size: 11px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 30px; margin-bottom: 1.6rem;
    animation: fadeUp 0.7s ease both;
  }
  .hero h1 {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.04; color: var(--escuro); margin-bottom: 1.2rem;
    animation: fadeUp 0.7s ease 0.1s both;
  }
  .hero h1 .ao { color: var(--laranja); }
  .hero h1 .ag { color: var(--verde); }
  .hero-sub {
    font-size: 1.05rem; color: var(--cinza-texto); line-height: 1.85; margin-bottom: 2.2rem;
    animation: fadeUp 0.7s ease 0.2s both;
  }
  .hero-sub strong { color: var(--laranja); font-weight: 800; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }
  .btn-orange {
    background: var(--laranja); color: var(--branco);
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    padding: 15px 34px; border: none; border-radius: 50px;
    cursor: pointer; text-transform: uppercase;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn-orange:hover { background: var(--laranja-escuro); transform: translateY(-2px); box-shadow: 0 10px 28px var(--sombra); }
  .btn-wpp {
    background: #25D366; color: var(--branco);
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    padding: 15px 28px; border: none; border-radius: 50px;
    cursor: pointer; text-transform: uppercase;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-wpp:hover { background: #1ebe5a; transform: translateY(-2px); }
  .hero-visual {
    display: flex; flex-direction: column; align-items: center;
    animation: fadeLeft 0.8s ease 0.2s both;
  }
  @keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
  @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
  .mascot-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
  .mascot-glow {
    position: absolute; width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,114,26,0.2) 0%, transparent 70%);
  }
  .mascot-char {
    font-size: 170px; line-height: 1; position: relative; z-index: 1;
    animation: bob 3.5s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(232,114,26,0.22));
  }
  @keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
  .hero-chips {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 1.8rem;
  }
  .chip {
    background: var(--branco); border: 1.5px solid var(--cinza-light);
    border-radius: 50px; padding: 8px 18px;
    font-size: 13px; font-weight: 700; color: var(--escuro);
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: 6px;
  }

  /* STATS */
  .stats-bar {
    background: var(--laranja);
    padding: 1.3rem 3rem;
    display: flex; justify-content: center; align-items: stretch; gap: 0; flex-wrap: wrap;
  }
  .stat-item {
    text-align: center; padding: 0.4rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.25);
    display: flex; flex-direction: column; align-items: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: var(--branco); line-height: 1; }
  .stat-lbl { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

  /* SHARED */
  .wrap { max-width: 1060px; margin: 0 auto; padding: 5.5rem 3rem; }
  .stag {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px;
    color: var(--laranja); margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 10px;
  }
  .stag::before { content:''; display:inline-block; width:28px; height:3px; background:var(--laranja); border-radius:2px; }
  .stag.light { color: var(--laranja-claro); }
  .stag.light::before { background: var(--laranja-claro); }
  .stag.white { color: rgba(255,255,255,0.65); }
  .stag.white::before { background: rgba(255,255,255,0.4); }
  .stitle {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.06; margin-bottom: 1rem; color: var(--escuro);
  }
  .stitle .ao { color: var(--laranja); }
  .stitle .ag { color: var(--verde); }
  .stitle.w { color: var(--branco); }
  .sdesc { color: var(--cinza-texto); max-width: 560px; margin-bottom: 3rem; line-height: 1.8; }
  .sdesc.w { color: rgba(255,255,255,0.65); }

  /* SOBRE */
  #sobre { background: var(--off-white); }
  .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .sobre-p { color: var(--cinza-texto); line-height: 1.9; margin-bottom: 1.1rem; font-size: 1.02rem; }
  .sobre-p strong { color: var(--laranja); }
  .quote-box {
    background: var(--laranja); border-radius: 14px; padding: 1.8rem 2rem;
    color: var(--branco); font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 1.15rem; line-height: 1.5; margin-top: 1.5rem;
    position: relative; overflow: hidden;
  }
  .quote-box::after { content:'♻'; position:absolute; right:-10px; bottom:-20px; font-size:90px; opacity:0.12; }
  .sobre-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .scard {
    background: var(--branco); border-radius: 14px; padding: 1.5rem;
    text-align: center; border: 2px solid var(--cinza-light);
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .scard:hover { transform: translateY(-4px); box-shadow: 0 10px 28px var(--sombra); }
  .scard.o { background: var(--laranja-pale); border-color: rgba(232,114,26,0.25); }
  .scard .ico { font-size: 2.2rem; margin-bottom: 0.7rem; }
  .scard h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--escuro); margin-bottom: 0.3rem; }
  .scard p { font-size: 12px; color: var(--cinza-texto); line-height: 1.6; }

  /* SERVIÇOS */
  #servicos { background: var(--branco); }
  .srv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; }
  .srv-card {
    background: var(--off-white); border: 2px solid var(--cinza-light);
    border-radius: 16px; padding: 2rem 1.6rem;
    position: relative; overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .srv-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--laranja), var(--laranja-claro));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .srv-card:hover { border-color: rgba(232,114,26,0.4); transform: translateY(-5px); }
  .srv-card:hover::after { transform: scaleX(1); }
  .srv-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
  .srv-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--escuro); }
  .srv-card p { font-size: 14px; color: var(--cinza-texto); line-height: 1.7; }

  /* COMO FUNCIONA */
  #como { background: var(--escuro); }
  .como-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .steps { display: flex; flex-direction: column; position: relative; }
  .steps::before {
    content: ''; position: absolute; left: 27px; top: 30px; bottom: 30px; width: 2px;
    background: linear-gradient(to bottom, var(--laranja), rgba(232,114,26,0.1));
  }
  .step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; position: relative; z-index: 1; }
  .step-n {
    width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%;
    background: var(--laranja); color: var(--branco);
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 5px rgba(232,114,26,0.15);
  }
  .step-b { padding-top: 8px; }
  .step-b h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--branco); margin-bottom: 0.3rem; }
  .step-b p { font-size: 14px; color: var(--cinza-medio); line-height: 1.7; }
  .como-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 2rem; position: sticky; top: 90px;
  }
  .como-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--laranja-claro); margin-bottom: 1.5rem; }
  .crow {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
  }
  .crow:last-of-type { border-bottom: none; }
  .crow .cn { color: rgba(255,255,255,0.85); font-weight: 600; }
  .ctag {
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
    background: rgba(232,114,26,0.2); color: var(--laranja-claro);
  }
  .ctag.no { background: rgba(255,80,80,0.15); color: #ff9090; }
  .como-btn {
    display: block; width: 100%; margin-top: 1.5rem;
    background: var(--laranja); color: var(--branco);
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    text-align: center; padding: 14px; border: none; border-radius: 50px;
    cursor: pointer; text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
  }
  .como-btn:hover { background: var(--laranja-escuro); transform: translateY(-1px); }

  /* TIPOS */
  #tipos { background: var(--off-white); }
  .tipos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 1rem; }
  .tipo-c {
    background: var(--branco); border: 2px solid var(--cinza-light);
    border-radius: 12px; padding: 1.1rem 1.3rem;
    display: flex; align-items: center; gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .tipo-c:hover { border-color: var(--laranja); box-shadow: 0 6px 20px var(--sombra); transform: translateY(-3px); }
  .tipo-c .ti { font-size: 1.6rem; flex-shrink: 0; }
  .tipo-c .tn { font-size: 13px; font-weight: 700; color: var(--escuro); }
  .aviso {
    margin-top: 1.5rem; background: rgba(232,114,26,0.08);
    border: 1.5px solid rgba(232,114,26,0.2); border-radius: 10px;
    padding: 12px 18px; font-size: 13px; color: var(--cinza-texto);
  }

  /* DIFERENCIAIS */
  #diff { background: var(--verde); }
  .diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
  .diff-c {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px; padding: 1.6rem;
    transition: background 0.2s, transform 0.2s;
  }
  .diff-c:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
  .diff-c .di { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
  .diff-c h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--branco); margin-bottom: 0.4rem; }
  .diff-c p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

  /* DEPOIMENTOS — CARROSSEL */
  #dep { background: var(--branco); }

  .dep-carousel-wrap {
    position: relative;
    margin-top: 2.5rem;
  }

  .dep-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;        /* Firefox */
    padding-bottom: 4px;
  }
  .dep-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  /* ── CARD ── */
  .dep-c {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 visíveis no desktop */
    scroll-snap-align: start;
    background: var(--off-white); border: 2px solid var(--cinza-light);
    border-radius: 16px; padding: 1.8rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 260px;
    /* Garante que o autor fique sempre no rodapé */
    display: flex; flex-direction: column;
  }
  .dep-c:hover { border-color: rgba(232,114,26,0.35); box-shadow: 0 8px 24px var(--sombra); }

  .stars { color: var(--laranja); font-size: 17px; margin-bottom: 1rem; letter-spacing: 2px; }
  .dep-txt { font-size: 14px; color: var(--cinza-texto); line-height: 1.85; font-style: italic; margin-bottom: 1.2rem; flex: 1; /* empurra o autor para o fundo */ }
  .dep-au { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .dep-av {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--laranja); color: var(--branco);
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .dep-nm { font-weight: 800; font-size: 14px; color: var(--escuro); }
  .dep-rl { font-size: 12px; color: var(--cinza-texto); }

  /* Botões anterior / próximo */
  .dep-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--branco); border: 2px solid var(--cinza-light);
    color: var(--escuro); font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  }
  .dep-btn:hover:not(:disabled) { background: var(--laranja); border-color: var(--laranja); color: var(--branco); box-shadow: 0 6px 18px var(--sombra); }
  .dep-btn:disabled { opacity: 0.3; cursor: default; }
  .dep-btn-prev { left: -22px; }
  .dep-btn-next { right: -22px; }

  /* Bolinhas indicadoras */
  .dep-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 1.8rem;
  }
  .dep-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--cinza-light); border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
  }
  .dep-dot.active { background: var(--laranja); transform: scale(1.3); }

  /* Responsivo */
  @media (max-width: 960px) {
    .dep-c { flex: 0 0 calc((100% - 20px) / 2); } /* 2 visíveis em tablet */
  }
  @media (max-width: 600px) {
    .dep-c { flex: 0 0 100%; }                     /* 1 visível em mobile */
    .dep-btn-prev { left: -10px; }
    .dep-btn-next { right: -10px; }
  }

  /* CONTATO */
  #contato {
    background: linear-gradient(135deg, #FFF0E5 0%, #FBF8F5 50%, #EAF5E5 100%);
    padding: 6rem 3rem; position: relative; overflow: hidden;
  }
  #contato::before {
    content: ''; position: absolute; right: -120px; top: -120px;
    width: 540px; height: 540px; border-radius: 50%;
    border: 70px solid rgba(232,114,26,0.07); z-index: 0;
  }
  .contato-inner { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; }
  .contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .cinfo h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.06; margin-bottom: 1rem; color: var(--escuro); }
  .cinfo h2 .ao { color: var(--laranja); }
  .cinfo p { color: var(--cinza-texto); margin-bottom: 2rem; line-height: 1.8; }
  .canais { display: flex; flex-direction: column; gap: 1rem; }
  .canal {
    display: flex; align-items: center; gap: 14px;
    background: var(--branco); border-radius: 12px;
    padding: 1rem 1.4rem; border: 2px solid var(--cinza-light);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .canal:hover { border-color: var(--laranja); box-shadow: 0 6px 18px var(--sombra); transform: translateX(4px); }
  .canal-ico {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .o-bg { background: var(--laranja-pale); }
  .g-bg { background: #E7FAEE; }
  .p-bg { background: #F3EEFF; }
  .canal-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cinza-texto); }
  .canal-val { font-size: 14px; font-weight: 800; color: var(--escuro); margin-top: 1px; }
  .cform {
    background: var(--branco); border-radius: 20px; padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 2px solid var(--cinza-light);
    display: flex; flex-direction: column; gap: 14px;
  }
  .cform h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--escuro); margin-bottom: 0.4rem; }
  .frow { display: flex; gap: 12px; }
  .finput {
    flex: 1; width: 100%;
    background: var(--off-white); border: 2px solid var(--cinza-light);
    color: var(--escuro); font-family: 'Nunito', sans-serif; font-size: 15px;
    padding: 13px 16px; border-radius: 10px; outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .finput::placeholder { color: var(--cinza-medio); }
  .finput:focus { border-color: var(--laranja); background: var(--branco); }
  .fsubmit {
    background: var(--laranja); color: var(--branco);
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 15px;
    padding: 16px; border: none; border-radius: 50px;
    cursor: pointer; text-transform: uppercase; width: 100%;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .fsubmit:hover { background: var(--laranja-escuro); transform: translateY(-2px); box-shadow: 0 10px 28px var(--sombra); }

  /* FOOTER */
  footer { background: var(--escuro); padding: 3.5rem 3rem 2rem; }
  .footer-grid {
    max-width: 1060px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
  }
  .flogo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
  .flogo-ico { width: 44px; height: 44px; background: var(--laranja); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .flogo-txt { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.15rem; color: var(--branco); }
  .flogo-txt span { color: var(--verde); }
  .fdesc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 300px; }
  .fcol h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
  .fcol ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .fcol ul a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .fcol ul a:hover { color: var(--laranja-claro); }
  .footer-bot {
    max-width: 1060px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .fcopy { font-size: 12px; color: rgba(255,255,255,0.28); }
  .fbadges { display: flex; gap: 8px; flex-wrap: wrap; }
  .fb {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 20px;
    background: rgba(232,114,26,0.15); border: 1px solid rgba(232,114,26,0.28);
    color: var(--laranja-claro);
  }

  /* REVEAL */
  .rv { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .rv.vis { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { order: -1; }
    .mascot-char { font-size: 110px; }
    .mascot-glow { width: 180px; height: 180px; }
    .sobre-grid, .como-grid, .contato-grid, .footer-grid { grid-template-columns: 1fr; }
    .como-card { position: static; }
    .wrap { padding: 4rem 1.5rem; }
    #contato { padding: 4rem 1.5rem; }
    footer { padding: 2.5rem 1.5rem 1.5rem; }
    .stat-item { padding: 0.5rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
    .stat-item:last-child { border-bottom: none; }
  }
  @media (max-width: 600px) {
    .hero { padding: 3.5rem 1.5rem 2.5rem; }
    .frow { flex-direction: column; }
  }