:root {
  --black: #080808;
  --charcoal: #141414;
  --ink: #181818;
  --muted: #646464;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --white: #ffffff;
  --red: #c40000;
  --red-dark: #970000;
  --green: #25d366;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 72px;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.88rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.topbar span {
  display: none;
}

.topbar a {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 58px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
}

.brand > span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand strong {
  display: block;
  max-width: 190px;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.05;
}

.brand span span {
  display: none;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.1;
}

.nav-links {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #252525;
  font-weight: 800;
  line-height: 1.1;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #fff0f0;
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-actions .btn {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  background: var(--black);
  border-radius: 999px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(196, 0, 0, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  border-color: var(--black);
  background: var(--white);
  color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(196, 0, 0, 0.28), transparent 28rem),
    linear-gradient(135deg, #070707 0%, #171717 62%, #242424 100%);
  color: var(--white);
  padding: 46px 0 42px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.dark-section .eyebrow,
.cta .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #ffdddd;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2rem, 10vw, 4.2rem);
}

h2 {
  font-size: clamp(1.65rem, 7vw, 2.75rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 690px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 3.4vw, 1.16rem);
}

.hero-actions,
.cta-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hero-actions .btn,
.cta-actions .btn {
  width: 100%;
}

.hero-card {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: min(100%, 210px);
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.hero-card h2 {
  font-size: clamp(1.35rem, 6vw, 2rem);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

section {
  padding: 52px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.soft {
  background: var(--soft);
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.dark-section p,
.dark-section .muted {
  color: rgba(255, 255, 255, 0.74);
}

.grid {
  display: grid;
  gap: 14px;
}

.cards-3,
.cards-4,
.feature-list,
.footer-grid,
.form-grid {
  grid-template-columns: 1fr;
}

.card,
.panel,
.form-section,
details,
.feature-list li,
.area-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card {
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: #fff0f0;
  color: var(--red);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 15px;
  font-weight: 900;
  color: var(--black);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--red);
  vertical-align: 1px;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-pill {
  max-width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1.2;
}

.area-pill strong {
  color: var(--red);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 16px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.3;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta {
  background:
    radial-gradient(circle at 88% 14%, rgba(196, 0, 0, 0.35), transparent 24rem),
    linear-gradient(135deg, #050505 0%, #151515 100%);
  color: var(--white);
  padding: 48px 0;
}

.cta-box {
  display: grid;
  gap: 24px;
}

.cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(196, 0, 0, 0.26), transparent 24rem),
    var(--black);
  color: var(--white);
  padding: 48px 0;
}

.page-hero p {
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 3vw, 1.1rem);
}

.split {
  display: grid;
  gap: 24px;
  align-items: start;
}

.panel {
  min-width: 0;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.panel-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.panel-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.copy p {
  color: var(--muted);
}

.quote-form,
form[name="quote"] {
  display: grid;
  gap: 18px;
}

.form-section {
  padding: 18px;
}

.form-section h2 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 900;
}

.req {
  color: var(--red);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 1px solid #d4d4d4;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(196, 0, 0, 0.15);
  border-color: var(--red);
}

.helper {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.field .helper {
  margin-top: 0;
}

.form-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid #b8b8b8;
  border-radius: var(--radius);
  background: #f4f4f4;
  color: #363636;
  font-weight: 800;
}

.form-note.is-warning {
  border-left-color: var(--red);
  background: #fff2f2;
  color: #a40000;
}

.form-note.is-success {
  border-left-color: #138a3d;
  background: #effaf3;
  color: #0f6b31;
}

.site-footer {
  background: #050505;
  color: var(--white);
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  width: 104px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--white);
}

.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 86px;
  z-index: 75;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  line-height: 0;
  border: 2px solid rgba(255, 255, 255, 0.86);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1fc35b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  display: block;
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.14);
}

.mobile-actions a {
  min-width: 0;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.mobile-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-actions a:nth-child(2) {
  background: var(--green);
  color: var(--white);
}

.mobile-actions a:nth-child(2) svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.mobile-actions a:nth-child(3) {
  background: var(--red);
  color: var(--white);
}

@media (min-width: 540px) {
  .container {
    width: min(100% - 44px, var(--max));
  }

  .brand span span {
    display: block;
  }

  .hero-actions,
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: auto;
  }

  .cards-3,
  .cards-4,
  .feature-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .topbar .container {
    justify-content: space-between;
    text-align: left;
  }

  .topbar span {
    display: inline;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand img {
    width: 70px;
    height: 56px;
  }

  .brand strong {
    max-width: none;
    font-size: 1.05rem;
  }

  .menu-toggle {
    display: none;
  }

  .header-actions .btn {
    display: inline-flex;
  }

  .nav-links,
  .nav-links.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-links a {
    min-height: 42px;
    padding: 10px 11px;
    font-size: 0.94rem;
  }

  .hero {
    padding: 72px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.92fr);
    gap: 38px;
  }

  .hero-card {
    padding: 24px;
  }

  section {
    padding: 70px 0;
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 28px;
    margin-bottom: 30px;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 32px;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .mobile-actions {
    display: none;
  }

  .floating-whatsapp {
    bottom: 26px;
    right: 26px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 759px) {
  .floating-whatsapp {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-links a {
    padding-inline: 13px;
  }

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

  .cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.75fr 0.8fr;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand strong {
    max-width: 150px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .btn {
    padding-inline: 14px;
  }
}

  
