:root {
    --navy: #1A1A2E;
    --navy-mid: #16213E;
    --navy-light: #0F3460;
    --gold: #7B7FC4;
    --gold-light: #9FA3D4;
    --gold-pale: #ECEDF8;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --gray-soft: #EEE9E0;
    --gray-mid: #C4B89A;
    --gray-text: #6B6355;
    --green-ok: #1D6E4A;
    --red-alert: #9B2626;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--navy);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(11,31,58,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
    filter: brightness(1.8) saturate(0.6);
  }
  .nav-logo-img:hover { opacity: 0.85; }

  .footer-brand .nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    filter: brightness(1.8) saturate(0.6);
    opacity: 0.9;
  }


  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px; font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-text {
    position: absolute; top: 50%; right: -2%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 700;
    color: rgba(201,168,76,0.05);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    user-select: none;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    color: var(--gold-light);
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
  }

  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    max-width: 700px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease 0.1s both;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: 18px; font-weight: 300;
    max-width: 520px;
    margin-bottom: 44px;
    animation: fadeUp 0.6s ease 0.2s both;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px; font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px; font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

  .hero-stats {
    display: flex; gap: 48px; flex-wrap: wrap;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.6s ease 0.4s both;
  }
  .stat-item {}
  .stat-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 13px; color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
  }

  /* ── PARCEIROS / LOGOS ── */
  #parceiros {
    background: var(--white);
    padding: 48px 5%;
    border-bottom: 1px solid var(--gray-soft);
  }
  .parceiros-label {
    text-align: center;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 32px;
    font-weight: 500;
  }
  .logos-row {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px;
  }
  .logo-badge {
    background: var(--cream);
    border: 1px solid var(--gray-soft);
    border-radius: 4px;
    padding: 10px 22px;
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    transition: all 0.2s;
  }
  .logo-badge:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  /* ── SECTION HEADER ── */
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    color: var(--gray-text);
    font-size: 17px; font-weight: 300;
    max-width: 580px; margin: 0 auto;
    line-height: 1.7;
  }

  /* ── SOLUÇÕES ── */
  #solucoes {
    padding: 100px 5%;
    background: var(--cream);
  }

  .solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--gray-soft);
    border: 1px solid var(--gray-soft);
    border-radius: 8px;
    overflow: hidden;
  }

  .solucao-card {
    background: var(--white);
    padding: 40px 36px;
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .solucao-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .solucao-card:hover { background: var(--navy); }
  .solucao-card:hover::before { transform: scaleX(1); }

  .solucao-icon {
    width: 48px; height: 48px;
    background: var(--cream);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
    transition: background 0.25s;
  }
  .solucao-card:hover .solucao-icon { background: rgba(201,168,76,0.15); }

  .solucao-num {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; color: var(--gray-mid);
    margin-bottom: 8px;
    transition: color 0.25s;
  }
  .solucao-card:hover .solucao-num { color: rgba(201,168,76,0.6); }

  .solucao-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
    transition: color 0.25s;
  }
  .solucao-card:hover .solucao-title { color: var(--white); }

  .solucao-desc {
    font-size: 14px; color: var(--gray-text);
    line-height: 1.65;
    transition: color 0.25s;
  }
  .solucao-card:hover .solucao-desc { color: rgba(255,255,255,0.6); }

  .solucao-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 24px;
    font-size: 13px; font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s;
  }
  .solucao-card:hover .solucao-link { gap: 10px; }

  /* ── COMO FUNCIONA ── */
  #processo {
    padding: 100px 5%;
    background: var(--navy);
  }
  #processo .section-title { color: var(--white); }
  #processo .section-desc { color: rgba(255,255,255,0.5); }

  .steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    max-width: 900px; margin: 0 auto;
    position: relative;
  }
  .steps-row::before {
    content: '';
    position: absolute;
    top: 32px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3) 20%, rgba(201,168,76,0.3) 80%, transparent);
  }

  .step-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
  }
  .step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    color: var(--gold);
    position: relative; z-index: 1;
    background: var(--navy);
  }
  .step-title {
    font-size: 15px; font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 13px; color: rgba(255,255,255,0.4);
    line-height: 1.6;
  }
  .step-prazo {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 2px 8px; border-radius: 2px;
  }

  /* ── CALCULADORA ── */
  #calculadora {
    padding: 100px 5%;
    background: var(--cream);
  }

  .calc-wrap {
    max-width: 860px; margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-soft);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .calc-form {
    padding: 48px;
    border-right: 1px solid var(--gray-soft);
  }
  .calc-result {
    padding: 48px;
    background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
  }

  .form-group { margin-bottom: 24px; }
  .form-label {
    display: block;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 8px;
  }
  .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-soft);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-input:focus { border-color: var(--gold); background: var(--white); }

  .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-soft);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: var(--cream);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236B6355'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }

  .calc-btn {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 15px; font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s;
    margin-top: 8px;
  }
  .calc-btn:hover { background: var(--gold-light); }

  .result-label {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
  }
  .result-value {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .result-unit {
    font-size: 14px; color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
  }
  .result-divider {
    width: 40px; height: 1px;
    background: rgba(201,168,76,0.4);
    margin: 24px 0;
  }
  .result-item {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 14px;
  }
  .result-item-label { font-size: 13px; color: rgba(255,255,255,0.45); }
  .result-item-val { font-size: 15px; font-weight: 500; color: var(--white); }
  .result-item-val.good { color: #5EC98E; }
  .result-item-val.bad { color: #E27070; }
  .result-economia {
    margin-top: 24px;
    padding: 16px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 4px;
  }
  .economia-label { font-size: 11px; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
  .economia-val {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 500;
    color: var(--gold);
  }

  /* ── LINHAS DE CRÉDITO ── */
  #linhas {
    padding: 100px 5%;
    background: var(--white);
  }

  .linhas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .linha-card {
    border: 1px solid var(--gray-soft);
    border-radius: 6px;
    padding: 28px;
    transition: all 0.2s;
    position: relative;
  }
  .linha-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(11,31,58,0.08);
  }
  .linha-badge {
    display: inline-block;
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px; border-radius: 2px;
    margin-bottom: 16px;
  }
  .badge-bndes { background: #E8F0FB; color: #1E4B8F; }
  .badge-bnb { background: #E8F5EC; color: #1A6E34; }
  .badge-desenbahia { background: #FDF2DC; color: #7A4F0A; }
  .badge-pronampe { background: #F0EAFB; color: #5B2D8E; }
  .badge-soberano { background: #FDEAEA; color: #8B1A1A; }
  .badge-privado { background: #EEE9E0; color: #4A3F2F; }

  .linha-nome {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .linha-desc {
    font-size: 13px; color: var(--gray-text);
    line-height: 1.6; margin-bottom: 20px;
  }
  .linha-specs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid var(--gray-soft);
    padding-top: 16px;
  }
  .spec-item {}
  .spec-label { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
  .spec-val { font-size: 15px; font-weight: 500; color: var(--navy); }

  .linha-tag-destaque {
    position: absolute; top: -1px; right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0 0 4px 4px;
  }

  /* ── DEPOIMENTOS ── */
  #depoimentos {
    padding: 100px 5%;
    background: var(--cream);
  }

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .depo-card {
    background: var(--white);
    border: 1px solid var(--gray-soft);
    border-radius: 6px;
    padding: 36px;
    position: relative;
  }
  .depo-card::before {
    content: '"';
    position: absolute; top: 20px; right: 28px;
    font-family: var(--font-display);
    font-size: 80px; font-weight: 700;
    color: var(--gold-pale);
    line-height: 1;
  }

  .depo-valor {
    display: inline-block;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--green-ok);
    background: #E8F5EC;
    padding: 3px 10px; border-radius: 2px;
    margin-bottom: 20px;
  }
  .depo-text {
    font-size: 15px; color: var(--gray-text);
    line-height: 1.7; font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
  }
  .depo-author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--gray-soft);
    padding-top: 20px;
  }
  .depo-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 15px; font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
  }
  .depo-name { font-size: 14px; font-weight: 500; color: var(--navy); }
  .depo-company { font-size: 12px; color: var(--gray-mid); }

  /* ── CONTATO ── */
  #contato {
    padding: 100px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  #contato::before {
    content: 'AMPLA';
    position: absolute; bottom: -40px; right: -20px;
    font-family: var(--font-display);
    font-size: 200px; font-weight: 700;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    line-height: 1;
  }

  .contato-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 960px; margin: 0 auto;
    align-items: start;
  }

  .contato-info {}
  #contato .section-title { color: var(--white); text-align: left; }
  #contato .section-desc { text-align: left; margin-left: 0; color: rgba(255,255,255,0.5); }

  .contato-items {
    margin-top: 40px;
    display: flex; flex-direction: column; gap: 24px;
  }
  .contato-item {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .contato-icon {
    width: 40px; height: 40px; border-radius: 4px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .contato-item-label {
    font-size: 11px; color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 4px;
  }
  .contato-item-val {
    font-size: 15px; color: var(--white);
    font-weight: 400;
  }

  .contato-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 40px;
  }
  .contato-form .form-label { color: rgba(255,255,255,0.45); }
  .contato-form .form-input {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
  }
  .contato-form .form-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
  }
  .contato-form .form-input::placeholder { color: rgba(255,255,255,0.2); }
  .contato-form .form-select {
    background-color: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  }
  .contato-form .form-select option { background: var(--navy-mid); }
  .contato-form textarea.form-input {
    min-height: 100px; resize: vertical;
  }
  .contato-form .calc-btn { background: var(--gold); }
  .contato-form .calc-btn:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: #071527;
    padding: 48px 5% 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand .nav-logo { display: inline-block; margin-bottom: 12px; font-size: 24px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; }

  .footer-col-title {
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 14px; color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

  /* ── WHATSAPP ── */
  .wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 200;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: all 0.2s;
    animation: pulse-wa 3s ease infinite;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  .wa-float svg { width: 28px; height: 28px; fill: white; }

  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); }
  }

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

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-stats { gap: 28px; }
    .calc-wrap { grid-template-columns: 1fr; }
    .calc-form { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px 24px; }
    .calc-result { padding: 32px 24px; }
    .contato-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .steps-row::before { display: none; }
  }