:root {
      --bg: #071a4a;
      --bg-2: #0d2768;
      --bg-3: #f5f7fb;
      --card: rgba(255,255,255,0.08);
      --white: #ffffff;
      --text: #dfe7ff;
      --text-dark: #20304f;
      --muted: #9fb0d9;
      --primary: #ff6b1a;
      --primary-hover: #ff7e36;
      --border: rgba(255,255,255,0.12);
      --shadow: 0 20px 60px rgba(0,0,0,0.22);
      --radius: 18px;
      --max: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--white);
      line-height: 1.5;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 24px;
      border-radius: 999px;
      border: none;
      background: var(--primary);
      color: var(--white);
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 0.2px;
      transition: 0.2s ease;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(255, 107, 26, 0.3);
    }

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

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: none;
    }

    .section {
      padding: 88px 0;
    }

    .section-light {
      background: var(--bg-3);
      color: var(--text-dark);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      color: #ffd5c1;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 18px;
    }

    .eyebrow-light {
      border-color: rgba(32,48,79,0.12);
      background: rgba(7,26,74,0.04);
      color: #c75312;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.1;
      font-weight: 900;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .section-subtitle {
      font-size: 18px;
      max-width: 760px;
      color: var(--muted);
    }

    .section-light .section-subtitle {
      color: #5e708f;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(7,26,74,0.82);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-wrap img {
      height: 135px;
      width: 150px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--text);
      font-weight: 700;
      font-size: 15px;
    }

    .urgente {
      color: #ff1a1a;
      font-weight: 900;
      animation: pulse 0.8s infinite;
    }

    @keyframes pulse {
      0% {
        tranform: scale(1);
        text-shadow: 0 0 0 rgba(255, 26, 26, 0.7);
      }
      50% {
        transform: scale(1.35);
        text-shadow: 0 0 10px rgba(255, 26, 26, 1),
                     0 0 20px rgba(255, 26, 26, 0.9), 
                     0 0 30px rgba(255, 26, 26, 0.7);
      }
      100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 26, 26, 0.7);
      }

    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0 64px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,107,26,0.12), transparent 22%),
        radial-gradient(circle at 85% 15%, rgba(255,255,255,0.08), transparent 18%),
        linear-gradient(180deg, #071a4a 0%, #0a225e 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 42px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 68px);
      line-height: 0.98;
      font-weight: 900;
      letter-spacing: -1.8px;
      margin-bottom: 18px;
      max-width: 760px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      font-size: 19px;
      color: var(--text);
      max-width: 650px;
      margin-bottom: 26px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin: 26px 0 30px;
    }

    .point {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.07);
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--white);
      font-weight: 700;
    }

    .point-icon {
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,107,26,0.18);
      color: var(--primary);
      font-size: 14px;
      font-weight: 900;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 18px;
    }

    .hero-note {
      color: #ffd5c1;
      font-size: 14px;
      font-weight: 700;
    }

    .hero-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .hero-card .brand-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(7,26,74,0.8);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 13px;
      font-weight: 800;
      color: white;
    }

    .hero-card .brand-badge img {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      object-fit: cover;
    }

    .hero-visual {
      border-radius: 22px;
      overflow: hidden;
      min-height: 540px;
      background: linear-gradient(180deg, #0f3489, #091d4d);
      display: flex;
      align-items: end;
      justify-content: center;
      padding: 28px;
    }

    .hero-visual img {
      max-height: 500px;
      object-fit: contain;
    }

    .floating-box {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .mini-box {
      background: rgba(255,255,255,0.07);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
    }

    .mini-box strong {
      display: block;
      font-size: 24px;
      margin-bottom: 4px;
    }

    .mini-box span {
      color: var(--text);
      font-size: 14px;
    }

    .trust-bar {
      padding: 20px 0 0;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .trust-item {
      text-align: center;
      padding: 18px 14px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      font-weight: 800;
      color: var(--text);
    }

    .cards-3 {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .card {
      border-radius: 22px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .card-dark {
      background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
      border: 1px solid rgba(255,255,255,0.08);
    }

    .card-light {
      background: white;
      border: 1px solid rgba(15,33,75,0.08);
      box-shadow: 0 20px 50px rgba(16,38,84,0.08);
    }

    .card-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(255,107,26,0.14);
      color: var(--primary);
      font-size: 24px;
      margin-bottom: 18px;
    }

    .card h3 {
      font-size: 24px;
      line-height: 1.15;
      margin-bottom: 12px;
      font-weight: 900;
    }

    .card p {
      color: var(--muted);
      font-size: 16px;
    }

    .section-light .card p {
      color: #60718e;
    }

    .services-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-item {
      background: white;
      border: 1px solid rgba(15,33,75,0.08);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 15px 40px rgba(16,38,84,0.07);
    }

    .service-item h4 {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 900;
      color: #17284a;
    }

    .service-item p {
      color: #60718e;
      font-size: 15px;
    }

    .process {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step {
      position: relative;
      padding: 28px 22px;
      border-radius: 20px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .step-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .step h4 {
      font-size: 20px;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .step p {
      color: var(--text);
      font-size: 15px;
    }

    .guarantee-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
      margin-top: 38px;
    }

    .list {
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }

    .list-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .section-light .list-item {
      background: #f8faff;
      border-color: rgba(15,33,75,0.08);
    }

    .list-item .tick {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,107,26,0.15);
      color: var(--primary);
      font-weight: 900;
      margin-top: 1px;
    }

    .cta-box {
      margin-top: 48px;
      padding: 36px;
      border-radius: 28px;
      background: linear-gradient(135deg, #ff6b1a, #ff8c4c);
      color: white;
      box-shadow: 0 24px 70px rgba(255,107,26,0.26);
    }

    .cta-box h3 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.05;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .cta-box p {
      font-size: 18px;
      margin-bottom: 22px;
      max-width: 760px;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
    }

    .cta-box .btn {
      background: #071a4a;
      box-shadow: none;
    }

    .cta-box .btn:hover {
      background: #0a225e;
    }

    .faq {
      margin-top: 40px;
      display: grid;
      gap: 16px;
    }

    .faq-item {
      background: white;
      border: 1px solid rgba(15,33,75,0.08);
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 10px 30px rgba(16,38,84,0.05);
    }

    .faq-item h4 {
      color: #182949;
      margin-bottom: 8px;
      font-size: 18px;
      font-weight: 900;
    }

    .faq-item p {
      color: #60718e;
      font-size: 15px;
    }

    .footer {
      padding: 34px 0 80px;
      background: #041233;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      color: var(--text);
    }

    .footer .brand img {
      height: 90px;
      width: 100px;
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 99;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #25d366;
      color: white;
      font-size: 28px;
      box-shadow: 0 18px 40px rgba(37,211,102,0.35);
    }

    .mobile-cta {
      display: none;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .guarantee-wrap,
      .cards-3,
      .services-grid,
      .process,
      .trust-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero h1 {
        max-width: 100%;
      }
    }

    @media (max-width: 780px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 40px;
      }

      .hero-grid,
      .cards-3,
      .services-grid,
      .process,
      .guarantee-wrap,
      .trust-grid,
      .hero-points,
      .floating-box {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 360px;
      }

      .section {
        padding: 72px 0;
      }

      .cta-box {
        padding: 28px 22px;
      }

      .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 98;
        display: block;
        background: rgba(4,18,51,0.96);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      }

      .mobile-cta .btn {
        width: 100%;
      }

      .footer {
        padding-bottom: 110px;
      }
    }