/* CSS LANDING PAGE NEW 360 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:    #0D1B2E;
    --navy2:   #1A2B4A;
    --red:     #CC1B1B;
    --red2:    #991414;
    --gold:    #B8860B;
    --gold-lt: #D4A017;
    --white:   #FFFFFF;
    --off:     #F7F9FB;
    --gray:    #64748B;
    --gray-lt: #E8EDF2;
    --text:    #1E293B;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,27,46,0.97);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo img { height: 36px; }
  .nav-badge {
    font-size: 10px; font-weight: 700; letter-spacing: .14em;
    color: var(--gold-lt); text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 4px 10px; border-radius: 4px;
  }
  .nav-cta {
    background: var(--red); color: var(--white);
    border: none; border-radius: 6px;
    padding: 9px 20px; font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: 'Inter', sans-serif;
    text-decoration: none; display: inline-block;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--red2); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center;
    padding: 120px 6% 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(204,27,27,0.07) 100%);
  }
  .hero::after {
    content: '360°';
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(180px, 28vw, 340px);
    color: rgba(255,255,255,0.025);
    position: absolute; right: -2%; bottom: -6%;
    line-height: 1; pointer-events: none;
    letter-spacing: -4px;
  }
  .hero-inner {
    max-width: 700px; position: relative; z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .18em;
    color: var(--gold-lt); text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-eyebrow span {
    width: 32px; height: 2px; background: var(--gold);
    display: inline-block;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 88px);
    color: var(--white); line-height: .95;
    margin-bottom: 8px; letter-spacing: 1px;
  }
  .hero-title em {
    font-style: normal; color: var(--red);
  }
  .hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px; line-height: 1.4;
  }
  .hero-desc {
    font-size: 16px; color: rgba(255,255,255,0.7);
    max-width: 540px; line-height: 1.75; margin-bottom: 40px;
  }
  .hero-desc strong { color: var(--white); }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red); color: var(--white);
    padding: 16px 32px; border-radius: 8px;
    font-size: 15px; font-weight: 700;
    text-decoration: none; letter-spacing: .02em;
    transition: background .2s, transform .15s;
    border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  }
  .hero-cta:hover { background: var(--red2); transform: translateY(-2px); }
  .hero-cta svg { width: 18px; height: 18px; fill: currentColor; }
  .hero-note {
    margin-top: 14px;
    font-size: 12px; color: rgba(255,255,255,0.35);
    letter-spacing: .04em;
  }

  /* ── PROBLEMA ── */
  .section { padding: 96px 0%; }
  .section-label {
    font-size: 10px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 12px; display: block;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--navy); line-height: 1.05;
    margin-bottom: 16px;
  }
  .section-title em { font-style: normal; color: var(--red); }

  .problema { background: var(--off); }
  .problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 40px;
  }
  .prob-card {
    background: var(--white);
    border-radius: 10px; padding: 28px;
    border-left: 4px solid var(--red);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .prob-icon { font-size: 28px; margin-bottom: 12px; }
  .prob-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .prob-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }

  /* ── METODOLOGIA ── */
  .metodologia { background: var(--navy); }
  .metodologia .section-title { color: var(--white); }
  .metodologia .section-label { color: var(--gold-lt); }
  .metodologia-desc {
    font-size: 16px; color: rgba(255,255,255,0.65);
    max-width: 600px; line-height: 1.75; margin-bottom: 48px;
  }
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }
  .pilar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 24px 20px;
    transition: background .2s, border-color .2s;
  }
  .pilar:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(204,27,27,0.4);
  }
  .pilar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; color: var(--gold-lt);
    line-height: 1; margin-bottom: 8px;
  }
  .pilar-name {
    font-size: 13px; font-weight: 600;
    color: var(--white); line-height: 1.4;
    margin-bottom: 6px;
  }
  .pilar-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; }

  /* ── COMO FUNCIONA ── */
  .como { background: var(--white); }
  .steps { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
  .step {
    display: grid; grid-template-columns: 72px 1fr;
    gap: 24px; padding: 32px 0;
    border-bottom: 1px solid var(--gray-lt);
    align-items: start;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; color: var(--gray);
    line-height: 1; text-align: center;
  }
  .step-content {}
  .step-title {
    font-size: 18px; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
  }
  .step-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }
  .step-badge {
    display: inline-block; margin-top: 10px;
    font-size: 11px; font-weight: 600; color: var(--red);
    background: #FEF3F2; padding: 4px 10px; border-radius: 4px;
  }

  /* ── ENTREGA ── */
  .entrega { background: var(--off); }
  .entrega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px; margin-top: 40px;
  }
  .entrega-item {
    background: var(--white); border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-top: 3px solid var(--navy);
  }
  .entrega-icon { font-size: 24px; margin-bottom: 14px; }
  .entrega-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .entrega-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

  /* ── QUEM SOU ── */
  .quem { background: var(--navy2); }
  .quem .section-title { color: var(--white); }
  .quem .section-label { color: var(--gold-lt); }
  .quem-inner {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 48px; align-items: end; margin-top: 40px;
  }
  .quem-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; }
  .quem-text p { margin-bottom: 16px; }
  .quem-text strong { color: var(--white); }
  .quem-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 24px 20px; text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px; color: var(--red); line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--red);
    padding: 96px 6%; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  }
  .cta-final-label {
    font-size: 11px; font-weight: 700; letter-spacing: .18em;
    color: rgba(255,255,255,0.6); text-transform: uppercase;
    margin-bottom: 16px; display: block;
  }
  .cta-final-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    color: var(--white); line-height: 1.0;
    margin-bottom: 16px; position: relative; z-index: 1;
  }
  .cta-final-sub {
    font-size: 17px; color: rgba(255,255,255,0.8);
    max-width: 500px; margin: 0 auto 40px;
    line-height: 1.65; position: relative; z-index: 1;
  }
  .cta-final-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--white); color: var(--red);
    padding: 18px 40px; border-radius: 8px;
    font-size: 16px; font-weight: 700;
    text-decoration: none; letter-spacing: .02em;
    transition: transform .15s, box-shadow .15s;
    position: relative; z-index: 1;
    border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  }
  .cta-final-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
  .cta-final-btn svg { width: 20px; height: 20px; fill: #25D366; }
  .cta-final-note {
    margin-top: 20px; font-size: 13px;
    color: rgba(255,255,255,0.45); position: relative; z-index: 1;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); padding: 32px 6%;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  footer img { height: 28px; opacity: .7; }
  .footer-text { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 12px 4%; }
    .nav-badge { display: none; }
    .hero { padding: 100px 5% 60px; }
    .section { padding: 64px 5%; }
    .problema-grid { grid-template-columns: 1fr; }
    .pilares-grid { grid-template-columns: 1fr 1fr; }
    .quem-inner { grid-template-columns: 1fr; gap: 32px; }
    .step { grid-template-columns: 48px 1fr; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }

  @media (max-width: 480px) {
    .pilares-grid { grid-template-columns: 1fr; }
    .quem-stats { grid-template-columns: 1fr 1fr; }
  }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    background: #25D366; border-radius: 50%;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform .2s;
  }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float svg { width: 28px; height: 28px; fill: white; }
  
  /* FIM CSS LANDING PAGE NEW 360 */


  /* BOTÃO WHATSAPP */
.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:20px;
    right:25px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,.3);
    transition:transform .3s ease;
    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.12);
}

.whatsapp-icon{
    width:35px;
    height:35px;
}