:root {
    --primary: #2c3e8c;
    --primary-dark: #1e2d6a;
    --primary-light: #3a50b0;
    --accent: #4f63c8;
    --accent-soft: #e8ecfa;
    --accent-glow: rgba(79,99,200,0.15);
    --bg: #ffffff;
    --bg-soft: #f5f7fb;
    --bg-warm: #fafbff;
    --text: #1a1d2e;
    --text-secondary: #5b6180;
    --text-light: #8c90a8;
    --border: #dfe3ef;
    --green: #25D366;
    --shadow-sm: 0 1px 3px rgba(44,62,140,0.06);
    --shadow-md: 0 4px 20px rgba(44,62,140,0.08);
    --shadow-lg: 0 8px 40px rgba(44,62,140,0.12);
    --shadow-xl: 0 20px 60px rgba(44,62,140,0.15);
    --radius: 12px;
    --radius-lg: 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
   height: 72px;
  }
  .logo {
    font-size: 1.5rem; font-weight: 700; color: var(--primary);
    display: flex; align-items: center; gap: 8px; text-decoration: none;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--primary); }
  .nav-cta {
    background: var(--primary) !important; color: #fff !important;
    padding: 10px 24px; border-radius: 8px;
    font-weight: 600; transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

  /* ─── SECTIONS ─── */
  section { padding: 80px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }

  /* ─── HERO ─── */
  .hero {
    padding-top: 120px; padding-bottom: 60px;
    background: linear-gradient(160deg, var(--bg-warm) 0%, var(--accent-soft) 40%, var(--bg-warm) 100%);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -300px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(79,99,200,0.06) 0%, transparent 70%);
  }
  .hero::after {
    content: ''; position: absolute; bottom: -150px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(79,99,200,0.04) 0%, transparent 70%);
  }
  .hero .container {
    display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start;
    position: relative;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; padding: 8px 18px; border-radius: 50px;
    box-shadow: var(--shadow-sm); margin-bottom: 28px;
    font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
    border: 1px solid var(--border);
  }
  .hero-badge-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--accent-soft); display: flex;
    align-items: center; justify-content: center;
  }
  .hero-badge-icon svg { width: 15px; height: 15px; color: var(--primary); }
  .hero h1 {
    font-size: 3rem; line-height: 1.12; font-weight: 800;
    color: var(--text); margin-bottom: 20px; letter-spacing: -0.5px;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-desc {
    font-size: 1.05rem; color: var(--text-secondary);
    line-height: 1.7; margin-bottom: 28px; max-width: 500px; font-weight: 400;
  }
  .hero-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
  .hero-feature { display: flex; align-items: flex-start; gap: 12px; }
  .hero-feature .check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--primary); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; margin-top: 3px;
  }
  .hero-feature .check svg { width: 12px; height: 12px; color: white; }
  .hero-feature div h4 { font-size: 0.92rem; font-weight: 600; color: var(--text); }
  .hero-feature div p { font-size: 0.82rem; color: var(--text-secondary); font-weight: 400; }
  .hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: white; padding: 14px 32px;
    border-radius: 10px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(44,62,140,0.25);
    border: 2px solid var(--primary);
  }
  .hero-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(44,62,140,0.3); }

  /* Hero Form */
  .hero-form {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  }
  .hero-form-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
  }
  .hero-form-header svg { color: var(--primary); }
  .hero-form-header span {
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--primary);
  }
  .hero-form h3 {
    font-size: 1.35rem; font-weight: 700; color: var(--text);
    margin-bottom: 24px; line-height: 1.3;
  }
  .hf-group { margin-bottom: 14px; }
  .hf-group label {
    display: block; font-size: 0.8rem; font-weight: 600;
    color: var(--text); margin-bottom: 5px;
  }
  .hf-group input, .hf-group select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: inherit; font-size: 0.88rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-soft); color: var(--text);
  }
  .hf-group input:focus, .hf-group select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--accent-glow); background: white;
  }
  .hf-group input::placeholder { color: var(--text-light); font-weight: 400; }
  .hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-form-submit {
    width: 100%; padding: 13px; margin-top: 6px;
    background: var(--primary); color: white; border: none;
    border-radius: 10px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
  }
  .hero-form-submit:hover {
    background: var(--primary-dark); transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44,62,140,0.3);
  }
  .hero-form-note {
    text-align: center; font-size: 0.72rem; color: var(--text-light); margin-top: 12px;
  }

  /* ─── STATS BAR ─── */
  .stats-bar { background: var(--primary); padding: 36px 24px; }
  .stats-bar .container {
    display: flex; justify-content: space-around; align-items: center;
  }
  .stat-item { text-align: center; color: white; }
  .stat-item strong {
    font-size: 2rem; font-weight: 800; display: block;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-item span { font-size: 0.82rem; opacity: 0.7; font-weight: 400; }
  .stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

  /* ─── BANNER ─── */
  .banner {
    background: var(--primary-dark); padding: 60px 24px;
    text-align: center; color: white; position: relative; overflow: hidden;
  }
  .banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .banner h2 {
    font-size: 1.8rem; font-weight: 700; margin-bottom: 16px;
    position: relative; letter-spacing: -0.3px;
  }
  .banner p {
    max-width: 640px; margin: 0 auto; font-size: 0.95rem;
    opacity: 0.8; line-height: 1.7; position: relative; font-weight: 400;
  }

  /* ─── SECTION HEADERS ─── */
  .section-label {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px; color: var(--primary);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: 2.2rem; color: var(--text); margin-bottom: 16px;
    font-weight: 700; letter-spacing: -0.3px;
  }
  .section-desc {
    font-size: 1rem; color: var(--text-secondary);
    max-width: 680px; line-height: 1.7; font-weight: 400;
  }
  .section-header { margin-bottom: 48px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-desc { margin: 0 auto; }

  /* ─── MODALIDADES ─── */
  .modalidades { background: var(--bg-soft); }
  .modal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .modal-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.3s;
    border: 1px solid var(--border);
  }
  .modal-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg);
    border-color: var(--accent);
  }
  .modal-card-img {
    height: 180px; overflow: hidden; position: relative;
  }
  .modal-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
    display: block; position: relative; z-index: 1;
  }
  .modal-card:hover .modal-card-img img { transform: scale(1.08); }
  .modal-card-img .img-fallback {
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); opacity: 0.3;
  }
  .modal-card-img .img-fallback svg { width: 48px; height: 48px; }
  .modal-card:nth-child(1) .modal-card-img { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
  .modal-card:nth-child(2) .modal-card-img { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
  .modal-card:nth-child(3) .modal-card-img { background: linear-gradient(135deg, #e8ecfa, #d4daf7); }
  .modal-card:nth-child(4) .modal-card-img { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
  .modal-card-body { padding: 24px; }
  .modal-card-body h3 {
    font-size: 0.95rem; font-weight: 700; margin-bottom: 8px;
    color: var(--text); text-transform: uppercase; letter-spacing: 0.5px;
  }
  .modal-card-body p {
    font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; font-weight: 400;
  }
  .modal-tag {
    display: inline-block; background: var(--accent-soft);
    color: var(--primary); font-size: 0.68rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }

  /* ─── SETORES ─── */
  .setores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .setor-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px 24px;
    text-align: center; transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .setor-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .setor-card:hover::before { transform: scaleX(1); }
  .setor-card:hover { box-shadow: var(--shadow-md); }
  .setor-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--accent-soft); display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--primary);
  }
  .setor-card h3 {
    font-size: 0.88rem; font-weight: 700; margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.5px; color: var(--text);
  }
  .setor-card p {
    font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; font-weight: 400;
  }

  /* ─── COBERTURA ─── */
  .cobertura { background: var(--bg-soft); }
  .cobertura .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .flag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .flag-item {
    background: white; border-radius: 10px; padding: 16px 12px;
    text-align: center; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); transition: all 0.3s;
  }
  .flag-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .flag-emoji { font-size: 2rem; margin-bottom: 6px; display: block; }
  .flag-name { font-size: 0.7rem; color: var(--text-secondary); font-weight: 500; }
  .cobertura-text h2 {
    font-size: 2rem; color: var(--text); margin-bottom: 20px;
    font-weight: 700; letter-spacing: -0.3px;
  }
  .cobertura-text p {
    font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 16px; font-weight: 400;
  }
  .highlight-box {
    background: white; border-left: 4px solid var(--primary);
    padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 24px; box-shadow: var(--shadow-sm);
  }
  .highlight-box strong { color: var(--primary); }

  /* ─── CONTATO ─── */
  .contato { background: var(--bg-soft); }

  .contato .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  }
  .contato-info h2 {
    font-size: 2rem; color: var(--text); margin-bottom: 16px;
    font-weight: 700; letter-spacing: -0.3px;
  }
  .contato-info > p {
    font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 36px; font-weight: 400;
  }
  .contato-channels { display: flex; flex-direction: column; gap: 20px; }
  .contato-channel { display: flex; align-items: center; gap: 16px; }
  .contato-channel-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--accent-soft); display: flex;
    align-items: center; justify-content: center;
    color: var(--primary); flex-shrink: 0;
  }
  .contato-channel-label { font-size: 0.8rem; color: var(--text-light); font-weight: 400; }
  .contato-channel-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }
  .form-card {
    background: white; border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  }
  .form-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
  .form-card > p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 28px; }
  .form-row-c { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: 8px; font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-soft); color: var(--text);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--accent-glow); background: white;
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-submit {
    width: 100%; padding: 14px; background: var(--primary);
    color: white; border: none; border-radius: 10px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; font-family: inherit;
  }
  .form-submit:hover {
    background: var(--primary-dark); transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44,62,140,0.3);
  }

  /* ─── FOOTER ─── */
  footer { background: var(--primary-dark); color: white; padding: 48px 24px 120px; }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
  }
  .footer-brand { font-size: 1.3rem; font-weight: 700; }
  .footer-brand span { color: rgba(255,255,255,0.5); }
  .footer-copy { font-size: 0.8rem; opacity: 0.5; margin-top: 8px; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 0.85rem; transition: color 0.2s; font-weight: 400;
  }
  .footer-links a:hover { color: white; }

  /* ─── WHATSAPP STICKY ─── */
  .whatsapp-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: #25D366; padding: 14px 24px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; text-decoration: none; color: white;
    font-weight: 700; font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15); transition: background 0.2s;
  }
  .whatsapp-bar:hover { background: #20bd5a; }
  .whatsapp-bar svg { width: 24px; height: 24px; }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-form { max-width: 480px; }
    .modal-grid { grid-template-columns: repeat(2, 1fr); }
    .cobertura .container { grid-template-columns: 1fr; }
    .contato .container { grid-template-columns: 1fr; }
    .stats-bar .container { flex-wrap: wrap; gap: 24px; }
    .stat-divider { display: none; }
  }
  @media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
    .modal-grid { grid-template-columns: 1fr; }
    .setores-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row-c { grid-template-columns: 1fr; }
    .hf-row { grid-template-columns: 1fr; }
    section { padding: 60px 20px; }
    .flag-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 480px) {
    .setores-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .flag-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .whatsapp-bar{
  animation: smartPulse 6s infinite;
}

.whatsapp-bar:hover{
  transform:scale(1.04);
  background:#20bd5a;
}


  @keyframes smartPulse{

  0%{ transform:scale(1); }

  5%{ transform:scale(1.04); }

  10%{ transform:scale(1); }

  100%{ transform:scale(1); }

}

.whatsapp-bar{
  animation: smartPulse 5s infinite;
}
