/* =========================================================
   Brazil Landing Page
   Scope: .br-lp
   ========================================================= */

.br-lp {
  --br-bg: #02090d;
  --br-bg-soft: #04130f;

  --br-text: #ffffff;
  --br-muted: rgba(255, 255, 255, 0.72);
  --br-muted-soft: rgba(255, 255, 255, 0.52);

  --br-green: #00c968;
  --br-green-dark: #007f46;
  --br-yellow: #ffd522;
  --br-blue: #085ee8;

  --br-border: rgba(0, 206, 109, 0.42);
  --br-border-soft: rgba(0, 206, 109, 0.22);

  --br-card: rgba(2, 18, 18, 0.82);

  --br-max: 1120px;

  position: relative;

  min-height: 100vh;

  padding: 0 16px 70px;

  overflow-x: hidden;

  background-color: var(--br-bg);

  background-image:
    linear-gradient(
      180deg,
      rgba(0, 8, 15, 0.05) 0%,
      rgba(0, 8, 15, 0.12) 28%,
      rgba(0, 8, 12, 0.48) 55%,
      #02090d 82%,
      #02090d 100%
    ),
    url("https://maztool.com/wp-content/uploads/2026/08/br-lps-bg.webp");

  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;

  color: var(--br-text);

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;
}


/* =========================================================
   Container
   ========================================================= */

.br-lp .lp-container {
  position: relative;
  z-index: 2;

  width: min(var(--br-max), 100%);
  margin: 0 auto;
}


/* =========================================================
   Hero
   ========================================================= */

.br-lp .lp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 215px;

  text-align: center;
}


/* =========================================================
   Recommendation pill
   ========================================================= */

.br-lp .lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin: 0 auto 24px;
  padding: 11px 21px;

  border: 1px solid rgba(0, 218, 113, 0.72);
  border-radius: 999px;

  background: rgba(0, 20, 19, 0.65);

  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.01em;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(0, 201, 104, 0.04);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.br-lp .lp-dot {
  position: relative;

  width: 25px;
  height: 25px;

  flex: 0 0 25px;

  border-radius: 50%;

  background: var(--br-yellow);

  box-shadow: 0 0 18px rgba(255, 213, 34, 0.2);
}

/* Star inside existing dot */
.br-lp .lp-dot::after {
  content: "★";

  position: absolute;
  top: 50%;
  left: 50%;

  color: #075d38;

  font-size: 13px;
  line-height: 1;

  transform: translate(-50%, -53%);
}


/* =========================================================
   Heading
   ========================================================= */

.br-lp .lp-h1 {
  max-width: 1010px;

  margin: 0 auto;

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;

  font-size: clamp(45px, 4.6vw, 67px);
  font-weight: 900;
  line-height: 1.04;

  letter-spacing: -0.045em;

  color: #ffffff;

  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.72),
    0 1px 2px rgba(0, 0, 0, 0.85);
}


/* =========================================================
   Subtitle
   ========================================================= */

.br-lp .lp-sub {
  max-width: 850px;

  margin: 18px auto 26px;

  color: rgba(255, 255, 255, 0.77);

  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
  line-height: 1.48;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}


/* =========================================================
   Hero cards
   ========================================================= */

.br-lp .lp-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;

  width: min(990px, 100%);

  margin: 0 auto 18px;
  padding: 0;
}

.br-lp .lp-card {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-height: 190px;

  padding: 21px 24px 20px;

  overflow: hidden;

  border: 1px solid var(--br-border);
  border-radius: 19px;

  background:
    linear-gradient(
      180deg,
      rgba(0, 40, 32, 0.82) 0%,
      rgba(1, 17, 20, 0.9) 100%
    );

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);

  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.br-lp .lp-card::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      440px 180px at 50% 0%,
      rgba(0, 201, 104, 0.1),
      transparent 68%
    );
}

.br-lp .lp-card > * {
  position: relative;
  z-index: 1;
}


/* =========================================================
   Card icons
   ========================================================= */

.br-lp .lp-card-icon {
  display: grid;
  place-items: center;

  width: 58px;
  height: 58px;

  margin: 0 auto 14px;

  border: 1px solid rgba(0, 206, 109, 0.2);
  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(0, 129, 63, 0.94),
      rgba(0, 87, 47, 0.94)
    );

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.22),
    inset 0 0 18px rgba(0, 255, 123, 0.08);
}

.br-lp .lp-card-icon svg {
  width: 27px;
  height: 27px;

  fill: var(--br-yellow);

  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}


/* =========================================================
   Card typography
   ========================================================= */

.br-lp .lp-card h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;

  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;

  letter-spacing: -0.018em;
}

.br-lp .lp-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;
  line-height: 1.45;
}


/* =========================================================
   CTA row
   ========================================================= */

.br-lp .lp-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: min(980px, 100%);

  margin: 0 auto;

  gap: 0;

  text-align: center;
}


/* =========================================================
   CTA button
   ========================================================= */

.br-lp .lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  min-width: 300px;
  min-height: 58px;

  padding: 14px 32px;

  border: 0;
  border-radius: 13px;

  background:
    linear-gradient(
      100deg,
      #05cb68 0%,
      #06b975 31%,
      #0878db 68%,
      #064fe3 100%
    );

  color: #ffffff !important;

  font-size: 22px;
  font-weight: 900;
  line-height: 1;

  text-decoration: none !important;

  box-shadow:
    0 15px 35px rgba(0, 89, 213, 0.23),
    0 9px 28px rgba(0, 197, 102, 0.16);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.br-lp .lp-btn:hover {
  color: #ffffff !important;

  transform: translateY(-1px);

  filter: brightness(1.06);

  box-shadow:
    0 18px 42px rgba(0, 89, 213, 0.3),
    0 12px 34px rgba(0, 197, 102, 0.21);
}

.br-lp .lp-btn svg {
  flex: 0 0 19px;
}


/* =========================================================
   Trust
   ========================================================= */

.br-lp .lp-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-top: 13px;
  padding: 10px 19px;

  border: 1px solid rgba(0, 206, 109, 0.68);
  border-radius: 999px;

  background: rgba(0, 15, 17, 0.76);

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.br-lp .lp-trust svg {
  fill: var(--br-yellow) !important;
}


/* =========================================================
   Legal text
   ========================================================= */

.br-lp .lp-divider {
  width: min(900px, 100%);
  height: 1px;

  margin: 20px auto 14px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 206, 109, 0.38),
      transparent
    );
}

.br-lp .lp-fineprint,
.br-lp .lp-footnote {
  max-width: 940px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.br-lp .lp-fineprint {
  margin-top: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
  line-height: 1.5;
}

.br-lp .lp-footnote {
  margin-top: 7px;

  color: rgba(255, 255, 255, 0.46);

  font-size: 11px;
  line-height: 1.5;
}


/* =========================================================
   Features section
   ========================================================= */

.br-lp .lp-features {
  width: min(990px, 100%);

  margin: 78px auto 0;
  padding-top: 48px;

  border-top: 1px solid rgba(0, 206, 109, 0.16);
}

.br-lp .lp-features-title {
  max-width: 800px;

  margin: 0 auto 30px;

  color: #ffffff;

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;

  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.15;

  letter-spacing: -0.035em;

  text-align: center;
}


/* =========================================================
   Feature cards
   ========================================================= */

.br-lp .lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;

  margin-bottom: 28px;

  border: 0;
  border-radius: 0;

  background: transparent;

  box-shadow: none;

  overflow: visible;
}

.br-lp .lp-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 230px;

  padding: 27px 23px;

  gap: 0;

  border: 1px solid var(--br-border-soft) !important;
  border-radius: 19px;

  background:
    linear-gradient(
      180deg,
      rgba(0, 34, 29, 0.88),
      rgba(2, 14, 18, 0.94)
    );

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);

  text-align: center;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   Feature icons
   ========================================================= */

.br-lp .lp-feature-icon {
  display: grid;
  place-items: center;

  width: 58px;
  height: 58px;

  margin: 0 auto 17px;

  border: 1px solid rgba(0, 206, 109, 0.22);
  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(0, 129, 63, 0.94),
      rgba(0, 87, 47, 0.94)
    );
}

.br-lp .lp-feature-icon svg {
  width: 28px;
  height: 28px;

  fill: var(--br-yellow);
}


/* =========================================================
   Feature typography
   ========================================================= */

.br-lp .lp-feature-item h3 {
  margin: 0 0 10px;

  color: #ffffff;

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;

  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.br-lp .lp-feature-item p {
  max-width: 36ch;

  margin: 0;

  color: rgba(255, 255, 255, 0.66);

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;

  font-size: 15px;
  line-height: 1.58;
}


/* =========================================================
   Desktop adjustments
   ========================================================= */

@media (min-width: 1400px) {

  .br-lp .lp-hero {
    padding-top: 220px;
  }
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 900px) {

  .br-lp {
    background-size: auto 820px;
    background-position: center top;
  }

  .br-lp .lp-container {
    width: min(720px, 100%);
  }

  .br-lp .lp-hero {
    padding-top: 190px;
  }

  .br-lp .lp-h1 {
    font-size: clamp(40px, 7vw, 57px);
  }

  .br-lp .lp-cards,
  .br-lp .lp-features-grid {
    grid-template-columns: 1fr;

    max-width: 590px;

    margin-left: auto;
    margin-right: auto;
  }

  .br-lp .lp-card,
  .br-lp .lp-feature-item {
    min-height: auto;
  }

  .br-lp .lp-features {
    margin-top: 60px;
  }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

  .br-lp {
    padding:
      0
      14px
      50px;

    background-size: auto 590px;
    background-position: center top;
  }

  /*
   * Keep enough space for Brazilian flag
   * from the background image.
   */
  .br-lp .lp-hero {
    padding-top: 170px;
  }

  .br-lp .lp-pill {
    gap: 8px;

    margin-bottom: 18px;
    padding: 8px 14px;

    font-size: 11px;
  }

  .br-lp .lp-dot {
    width: 21px;
    height: 21px;

    flex-basis: 21px;
  }

  .br-lp .lp-dot::after {
    font-size: 11px;
  }

  .br-lp .lp-h1 {
    max-width: 100%;

    font-size: clamp(34px, 10.7vw, 46px);
    line-height: 1.03;

    letter-spacing: -0.043em;
  }

  .br-lp .lp-sub {
    margin: 16px auto 25px;

    font-size: 15px;
    line-height: 1.48;
  }

  .br-lp .lp-cards {
    gap: 14px;

    margin-bottom: 18px;
  }

  .br-lp .lp-card {
    padding: 21px 18px;

    border-radius: 17px;
  }

  .br-lp .lp-card-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 14px;

    border-radius: 13px;
  }

  .br-lp .lp-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .br-lp .lp-card h3 {
    font-size: 17px;
  }

  .br-lp .lp-card p {
    font-size: 15px;
  }

  .br-lp .lp-btn {
    width: 100%;

    min-width: 0;
    min-height: 54px;

    padding-left: 20px;
    padding-right: 20px;

    font-size: 19px;
  }

  .br-lp .lp-trust {
    max-width: 100%;

    padding: 9px 14px;

    font-size: 12px;
  }

  .br-lp .lp-divider {
    margin-top: 19px;
  }

  .br-lp .lp-fineprint {
    font-size: 11px;
  }

  .br-lp .lp-footnote {
    font-size: 10px;
  }

  .br-lp .lp-features {
    margin-top: 50px;
    padding-top: 38px;
  }

  .br-lp .lp-features-title {
    margin-bottom: 24px;

    font-size: 28px;
  }

  .br-lp .lp-features-grid {
    gap: 14px;

    margin-bottom: 24px;
  }

  .br-lp .lp-feature-item {
    padding: 23px 18px;

    border-radius: 17px;
  }
}


/* =========================================================
   Very small mobile
   ========================================================= */

@media (max-width: 390px) {

  .br-lp {
    background-size: auto 555px;
  }

  .br-lp .lp-hero {
    padding-top: 155px;
  }

  .br-lp .lp-h1 {
    font-size: 34px;
  }
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .br-lp .lp-btn {
    transition: none;
  }
}