:root {
      --blue: #3157ff;
      --blue-dark: #1837d8;
      --brand-red: #a11f33;
      --black: #050505;
      --text: #3f4754;
      --muted: #7a8190;
      --line: #e8ebf3;
      --soft: #f6f7fb;
      --soft-blue: #f1f4ff;
      --white: #ffffff;
      --max: 1160px;
      --radius: 22px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
    }

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

    .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(232,235,243,.8);
    }

    .header {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .brand img {
      display: block;
      height: 52px;
      width: auto;
      max-width: 280px;
      object-fit: contain;
    }

    .nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 800; }

    .nav a { color: #111; opacity: .84; }
    .nav a:hover { color: var(--brand-red); opacity: 1; }

    .nav .cta-small {
      color: #fff;
      background: var(--blue);
      padding: 12px 18px;
      border-radius: 999px;
      opacity: 1;
      box-shadow: 0 12px 30px rgba(49,87,255,.2);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
      gap: 54px;
      align-items: center;
      min-height: calc(100vh - 76px);
      padding: 54px 0 72px;
    }
    
    .hero-map-bg{
    position:relative;
    overflow:hidden;
}

.hero-map-bg::before{
    content:"";
    position:absolute;
    inset:-80px calc((100vw - 100%) / -2);
    background:
        linear-gradient(
            rgba(255,255,255,.78),
            rgba(255,255,255,.78)
        ),
        url("https://www.fonsecasantosadvogados.com/images/world-map-homologacao.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    z-index:-1;
}

    .eyebrow {
      margin: 0 0 24px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 7px;
      text-transform: uppercase;
    }

   h1 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
}

    h1 span { color: var(--blue); display: inline-block; }

    .lead {
      margin: 36px 0 0;
      max-width: 650px;
      color: var(--text);
      font-size: clamp(19px, 2vw, 24px);
      line-height: 1.36;
      font-weight: 500;
    }

    .actions { margin-top: 46px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 0 34px;
      border: 0;
      border-radius: 7px;
      background: var(--blue);
      color: #fff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 20px 42px rgba(49,87,255,.26);
      transition: .2s ease;
    }

    .btn:hover { transform: translateY(-2px); background: var(--blue-dark); }

    .plain-link { font-size: 17px; font-weight: 900; color: #111; }
    .plain-link:hover { color: var(--brand-red); }

    .hero-card {
      position: relative;
      border: 1px solid var(--line);
      border-radius: 32px;
      background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
      box-shadow: 0 34px 90px rgba(20, 30, 80, .13);
      padding: 34px;
    }

    .hero-card:before {
      content: "";
      position: absolute;
      inset: 18px -18px -18px 18px;
      border-radius: 32px;
      background: var(--soft-blue);
      z-index: -1;
    }

    .card-kicker { color: var(--brand-red); font-weight: 900; letter-spacing: 4px; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; }
    .card-title { font-size: 34px; line-height: 1.02; letter-spacing: -.05em; margin: 0 0 20px; font-weight: 950; }

    .checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
    .checklist li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; color: var(--text); font-size: 16px; line-height: 1.45; }
    .tick { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }

    .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 0 82px; }
    .stat { border-top: 1px solid var(--line); padding-top: 25px; }
    .stat strong { display: block; font-size: clamp(31px, 4vw, 52px); line-height: 1; letter-spacing: -.06em; font-weight: 950; }
    .stat span { display: block; margin-top: 10px; color: var(--text); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }

    section { scroll-margin-top: 96px; }

    .section { padding: 92px 0; }
    .soft { background: var(--soft); }

    .section-head { max-width: 760px; margin-bottom: 54px; }
    .section-label { margin: 0 0 12px; color: var(--brand-red); font-weight: 900; letter-spacing: 5px; text-transform: uppercase; font-size: 12px; }
  h2 {
    margin: 0;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 850;
}
    h2 span { color: var(--blue); }

    .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .feature { position: relative; min-height: 250px; padding: 34px 26px 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
    .feature:before { content: attr(data-num); position: absolute; top: 8px; right: 18px; font-size: 100px; font-weight: 950; letter-spacing: -.08em; color: rgba(49,87,255,.08); line-height: 1; }
    .feature h3 { position: relative; margin: 80px 0 14px; font-size: 24px; line-height: 1.05; letter-spacing: -.04em; }
    .feature p { position: relative; margin: 0; color: var(--text); line-height: 1.58; }

    .process { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
    .step { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
    .badge { width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 950; }
    .step h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
    .step p { margin: 0; color: var(--text); line-height: 1.55; }

    .countries { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 12px; }
    .country { padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--text); font-weight: 800; }

    .cases { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .case { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 14px; transition: .25s; cursor: pointer; }
    .case:hover { transform: translateY(-4px); border-color: var(--brand-red); box-shadow: 0 12px 30px rgba(161,31,51,.12); }
    .case strong { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
    .case span { display: block; margin-top: 8px; color: var(--brand-red); font-size: 14px; font-weight: 700; }

    .case-featured { margin-top: 40px; padding: 32px; border-radius: 20px; background: #fff; border: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
    .case-featured h3 { margin: 0 0 10px; font-size: 32px; font-weight: 900; letter-spacing: -.03em; }
    .case-featured p { margin: 0; color: var(--text); line-height: 1.6; max-width: 700px; }
    .case-featured small { display: block; margin-top: 12px; color: var(--brand-red); font-weight: 900; font-size: 14px; }

    .quote { margin-top: 52px; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 42px; box-shadow: 0 20px 70px rgba(20,30,80,.08); }
    .quote p { margin: 0; font-size: clamp(24px, 3vw, 38px); line-height: 1.12; letter-spacing: -.045em; font-weight: 900; }
    .author { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 800; }
    .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; }

    .contact { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: start; }
    .contact p { color: var(--text); font-size: 20px; line-height: 1.5; margin: 24px 0 0; }

    .form { display: grid; gap: 14px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 20px 70px rgba(20,30,80,.08); }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 16px 15px; font: inherit; color: #111; background: #fff; outline: none; }
    textarea { min-height: 128px; resize: vertical; }
    input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(49,87,255,.10); }
    .fine { margin: 2px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

    .footer { border-top: 3px solid var(--brand-red); padding: 30px 0; color: var(--text); font-size: 14px; }
    .footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

    @media (max-width: 980px) {
      .hero, .contact { grid-template-columns: 1fr; }
      .hero-card:before { display: none; }
      .features { grid-template-columns: 1fr; }
      .process { grid-template-columns: 1fr; }
      .cases { grid-template-columns: repeat(3, 1fr); }
      .nav a:not(.cta-small) { display: none; }
    }

    @media (max-width: 640px) {
      .wrap { width: min(100% - 28px, var(--max)); }
      .header { height: 68px; }
      .brand img { height: 44px; max-width: 230px; }
      .nav .cta-small { display: none; }

      .hero {
        padding: 38px 0 54px;
        min-height: auto;
      }

      h1 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.1;
        max-width: 100%;
      }

      h2 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.1;
        letter-spacing: -.02em;
      }

      .card-title {
        font-size: 26px;
        line-height: 1.1;
      }

      .lead {
        margin-top: 26px;
        font-size: 18px;
      }

      .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
      }

      .btn { width: 100%; }

      .stats {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-bottom: 58px;
      }

      .section { padding: 66px 0; }
      .grid-2 { grid-template-columns: 1fr; }
      .cases { grid-template-columns: 1fr 1fr; }
      .quote { padding: 28px; }

      .quote p {
        font-size: 24px;
      }

      .faq-item summary {
        font-size: 18px;
        padding: 20px 22px;
      }

      .faq-content {
        padding: 0 22px 20px;
      }

      .hero-card {
        padding: 24px;
      }

      .country-item {
        font-size: 18px;
      }
    }
    
    .whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    transition:.2s;
}

.faq-item:hover{
    border-color:var(--brand-red);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:24px 28px;
    font-size:20px;
    font-weight:800;
    position:relative;
}

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

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:28px;
    top:50%;
    transform:translateY(-50%);
    color:var(--brand-red);
    font-size:30px;
    font-weight:700;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-content{
    padding:0 28px 24px;
    color:var(--text);
    line-height:1.8;
    font-size:16px;
}

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:30px;
    padding:22px 42px;
    background:#169C4A;
    color:#fff;
    border-radius:12px;
    font-size:20px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(37,211,102,.25);
    transition:.2s;
}

.btn-whatsapp:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(37,211,102,.35);
}

.btn-whatsapp img{
    width:22px;
    height:22px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

.whatsapp-float img{
    width:32px;
    height:32px;
    object-fit:contain;
    display:block;
}

.contact-box{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.documentos{
    list-style:none;
    padding:0;
    margin:0;
}

.documentos li{
    margin-bottom:12px;
    padding-left:28px;
    position:relative;
}

.documentos li::before{
    content:"✓";
    color:var(--brand-red);
    font-weight:900;
    position:absolute;
    left:0;
}

.video-box{
    max-width:900px;
    margin:0 auto;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.video-box iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    display:block;
}

.countries-scroll{
    overflow:hidden;
    width:100%;
    padding:24px 0;
    position:relative;
}

.countries-track{
    display:flex;
    width:max-content;
    animation:scrollCountries 30s linear infinite;
}

.country-item{
    display:flex;
    align-items:center;
    white-space:nowrap;

    font-size:22px;
    font-weight:800;
    letter-spacing:.12em;
    color:#48505f;

    margin-right:50px;
}

.country-item::after{
    content:"•";
    margin-left:50px;
    color:#a1203a;
}

@keyframes scrollCountries{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.site-footer{
    background:#1d2230;
    color:#dfe5f2;
    padding:60px 0 0;
    border-top:4px solid var(--brand-red);
}

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

.footer-brand img{
    max-width:260px;
    background:#fff;
    padding:10px;
    border-radius:8px;
    margin-bottom:20px;
}

.footer-brand p,
.footer-col p{
    color:#c7cfdd;
    line-height:1.7;
    font-size:15px;
}

.footer-col h3{
    color:#fff;
    font-size:18px;
    margin-bottom:18px;
}

.footer-col a{
    display:block;
    color:#c7cfdd;
    margin-bottom:12px;
    text-decoration:none;
}

.footer-col a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:50px;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.12);
    font-size:14px;
    color:#b7bfcc;
}

.footer-bottom .wrap{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:900px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:640px){
    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-brand img{
        max-width:220px;
    }
}
