:root {
      --sant-red: #EC0000;
      --sant-dark: #a80000;
      --sant-rosa: #FAEBEB;
      --sant-gray-dark: #424242;
      --sant-gray-mid: #808080;
      --sant-gray-light: #EFEFEF;
      --mysim-orange: #ff5000;
      --light-bg: #f9f5f5;
      --text-dark: #1a1a2e;
      --text-muted: #5a6478;
    }
 
    * { margin: 0; padding: 0; box-sizing: border-box; }
 
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-dark);
      overflow-x: hidden;
    }
 
    /* ==============================
       NAVBAR
    ============================== */
    .top-bar {
      background: #fff;
      padding: 12px 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .top-bar .logo-bar {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .top-bar .logo-bar .logo-mysim {
      height: 30px;
    }
    .top-bar .logo-bar .divider {
      width: 1px;
      height: 28px;
      background: rgba(255,255,255,0.4);
    }
    .top-bar .logo-bar .logo-sant {
      height: auto;
      width: 150px;
    }
 
    /* ==============================
       HERO
    ============================== */
    .hero {
      margin-top: 54px;
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #b30000 0%, var(--sant-red) 50%, #ff1a1a 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('imagens/conexao-segura.png') no-repeat center center/cover;
      opacity: 0.15;
      mix-blend-mode: luminosity;
    }
    .hero::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 120px;
      background: linear-gradient(to top, #fff 0%, transparent 100%);
    }
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-particles span {
      position: absolute;
      width: 4px; height: 4px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      animation: float 8s infinite ease-in-out;
    }
    .hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .hero-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; width: 6px; height: 6px; }
    .hero-particles span:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; }
    .hero-particles span:nth-child(4) { top: 80%; left: 30%; animation-delay: 1s; width: 3px; height: 3px; }
    .hero-particles span:nth-child(5) { top: 15%; left: 70%; animation-delay: 3s; width: 5px; height: 5px; }
    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
      50% { transform: translateY(-30px) scale(1.5); opacity: 0.7; }
    }
 
    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 680px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 24px;
      color: #fff;
    }
    .hero-badge i { color: #fff; }
    .hero h1 {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }
    .hero h1 .accent { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 6px; }
    .hero p.lead {
      font-size: 1.15rem;
      opacity: 0.92;
      line-height: 1.7;
      margin-bottom: 35px;
      font-weight: 400;
    }
    .hero p.lead strong { color: #fff; font-weight: 700; }
    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--sant-red);
      padding: 16px 36px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all .3s ease;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      border: none;
    }
    .btn-hero:hover {
      background: #f5f5f5;
      color: var(--sant-dark);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
 
    .hero-img-col {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
    }
    .hero-img-wrapper {
      position: relative;
    }
    .hero-img-wrapper img {
      width: 100%;
      max-width: 400px;
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.35);
      object-fit: cover;
    }
    .hero-float-card {
      position: absolute;
      bottom: -20px;
      left: -30px;
      background: #fff;
      border-radius: 16px;
      padding: 14px 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: floatCard 3s infinite ease-in-out;
    }
    .hero-float-card .icon-circle {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--sant-red);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
    }
    .hero-float-card .fc-text {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.3;
    }
    .hero-float-card .fc-text strong {
      display: block;
      font-size: 1rem;
      color: var(--text-dark);
    }
    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
 
    /* ==============================
       LOGOS STRIP
    ============================== */
    .logos-strip {
      background: #fff;
      padding: 50px 0 30px;
      text-align: center;
    }
    .logos-strip p {
      font-size: 0.9rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 30px;
    }
    .logos-strip .logos-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
    }
    .logos-strip .logos-row img {
      height: 38px;
      opacity: 0.85;
      transition: opacity .3s;
    }
    .logos-strip .logos-row img:hover { opacity: 1; }
 
    /* ==============================
       BENEFITS
    ============================== */
    .benefits {
      background: var(--light-bg);
      padding: 90px 0;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--sant-red);
      margin-bottom: 14px;
    }
    .section-label::before {
      content: "";
      width: 30px; height: 2px;
      background: var(--sant-red);
    }
    .section-title {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 15px;
      letter-spacing: -0.02em;
    }
    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.7;
    }
    .benefit-card {
      background: #fff;
      border-radius: 20px;
      padding: 35px 28px;
      height: 100%;
      transition: all .4s cubic-bezier(.25,.46,.45,.94);
      border: 1px solid rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
    }
    .benefit-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--sant-red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }
    .benefit-card:hover::before { transform: scaleX(1); }
    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(236,0,0,0.1);
    }
    .benefit-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .benefit-icon.red { background: var(--sant-rosa); color: var(--sant-red); }
    .benefit-icon.orange { background: rgba(255,80,0,0.08); color: var(--mysim-orange); }
    .benefit-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-dark);
    }
    .benefit-card p {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }
 
    /* ==============================
       CTA SECTIONS
    ============================== */
    .cta-1 {
      padding: 100px 0;
      background: #fff;
      position: relative;
    }
    .cta-1::before {
      content: "";
      position: absolute;
      top: 0; right: 0;
      width: 50%; height: 100%;
      background: linear-gradient(135deg, rgba(236,0,0,0.02) 0%, rgba(236,0,0,0.05) 100%);
      border-radius: 0 0 0 80px;
    }
    .cta-1 .cta-text { position: relative; z-index: 2; }
    .cta-1 .cta-text h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 20px;
    }
    .cta-1 .cta-text h2 .accent { color: var(--sant-red); }
    .cta-1 .cta-text p {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 15px;
    }
    .cta-1 .cta-text p strong { color: var(--text-dark); }
 
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--sant-red);
      color: #fff;
      padding: 16px 38px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all .3s ease;
      box-shadow: 0 8px 25px rgba(236,0,0,0.3);
      border: none;
    }
    .btn-cta:hover {
      background: var(--sant-dark);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(236,0,0,0.4);
    }
 
    .cta-img-wrapper {
      position: relative;
    }
    .cta-img-wrapper img {
      width: 100%;
      max-width: 480px;
      border-radius: 24px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.15);
      object-fit: cover;
    }
    .floating-stat {
      position: absolute;
      top: 20px; right: -15px;
      background: #fff;
      border-radius: 14px;
      padding: 14px 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: floatCard 4s infinite ease-in-out;
    }
    .floating-stat .fs-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--sant-rosa);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sant-red);
    }
    .floating-stat .fs-text { font-size: 0.78rem; color: var(--text-muted); }
    .floating-stat .fs-text strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
 
    /* CTA 2 */
    .cta-2 {
      padding: 100px 0;
      background: var(--light-bg);
    }
    .cta-2 h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 25px;
    }
    .cta-2-img img {
      width: 100%;
      max-width: 480px;
      border-radius: 24px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.12);
      object-fit: cover;
    }
 
    .benefit-list-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      height: 100%;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .benefit-list-card h5 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--sant-red);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .benefit-list-card h5 .tag {
      background: var(--sant-red);
      color: #fff;
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 50px;
      font-weight: 700;
    }
    .benefit-list-card ul { list-style: none; padding: 0; margin: 0; }
    .benefit-list-card ul li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      font-size: 0.93rem;
      color: var(--text-muted);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .benefit-list-card ul li:last-child { border-bottom: none; }
    .benefit-list-card ul li i { color: var(--sant-red); margin-top: 3px; font-size: 0.75rem; }
    .benefit-list-card ul li strong { color: var(--text-dark); }
 
    /* ==============================
       HOW IT WORKS
    ============================== */
    .how-it-works { padding: 90px 0; background: #fff; }
    .step-card { text-align: center; padding: 30px 20px; }
    .step-number {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--sant-red);
      color: #fff;
      font-size: 1.3rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 8px 25px rgba(236,0,0,0.25);
    }
    .step-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
    .step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
    .step-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ccc;
      font-size: 1.4rem;
      padding-top: 20px;
    }
 
    /* ==============================
       FAQ
    ============================== */
    .faq-section { background: var(--light-bg); padding: 90px 0; }
    .accordion-item {
      border: none;
      margin-bottom: 10px;
      border-radius: 14px !important;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .accordion-button {
      font-weight: 600;
      font-size: 0.95rem;
      padding: 18px 24px;
      background: #fff;
      color: var(--text-dark);
      border-radius: 14px !important;
    }
    .accordion-button:not(.collapsed) {
      background: var(--sant-red);
      color: #fff;
      box-shadow: none;
    }
    .accordion-button:focus { box-shadow: none; }
    .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
    .accordion-body { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; padding: 16px 24px; }
 
    /* ==============================
       CTA FINAL
    ============================== */
    .cta-final {
      padding: 90px 0;
      background: linear-gradient(135deg, #b30000 0%, var(--sant-red) 50%, #ff1a1a 100%);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('imagens/banner-topo.png') no-repeat center center/cover;
      opacity: 0.08;
    }
    .cta-final .content { position: relative; z-index: 2; }
    .cta-final h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 18px; }
    .cta-final p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 35px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .btn-cta-final {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--sant-red);
      padding: 18px 44px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all .3s ease;
      box-shadow: 0 10px 35px rgba(0,0,0,0.2);
      border: none;
    }
    .btn-cta-final:hover {
      background: #f5f5f5;
      color: var(--sant-dark);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    }
 
    /* ==============================
       FOOTER
    ============================== */
    .footer { background: #1a1a1a; color: #fff; padding: 60px 0 30px; }
    .footer-logo { height: 30px; margin-bottom: 15px; }
    .footer-logo-sant { height: 24px; margin-bottom: 15px; }
    .footer p.small { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }
    .footer h6 {
      color: var(--sant-red);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 18px;
    }
    .footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: .3s; font-size: 0.9rem; }
    .footer-link:hover { color: var(--sant-red); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 40px;
      padding-top: 25px;
      color: rgba(255,255,255,0.35);
      font-size: 0.8rem;
    }
    .footer-logos { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
    .footer-logos img { height: 24px; }
 
    /* ==============================
       ANIMATIONS
    ============================== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all .7s cubic-bezier(.25,.46,.45,.94);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
 
    /* ==============================
       RESPONSIVE
    ============================== */
    @media (max-width: 992px) {
      .hero { min-height: 500px; padding: 80px 0 100px; }
      .hero h1 { font-size: 2.4rem; }
      .hero-img-col { margin-top: 40px; }
      .hero-float-card { display: none; }
      .cta-1 .row, .cta-2 .row { flex-direction: column-reverse !important; text-align: center; }
      .cta-img-wrapper, .cta-2-img { margin-bottom: 30px; }
      .cta-img-wrapper img, .cta-2-img img { max-width: 80%; }
      .floating-stat { display: none; }
      .section-desc { margin-left: auto; margin-right: auto; }
      .step-connector { display: none; }
    }
 
    @media (max-width: 576px) {
      .hero h1 { font-size: 1.9rem; }
      .hero p.lead { font-size: 1rem; }
      .section-title { font-size: 1.8rem; }
      .cta-1 .cta-text h2, .cta-2 h2, .cta-final h2 { font-size: 1.8rem; }
      .top-bar .logo-bar .logo-mysim { height: 24px; }
      .top-bar .logo-bar .logo-sant { height: 18px; }
    }