:root {
  --navy: #092b43;
  --blue: #0b5f94;
  --aqua: #22a6c8;
  --ice: #eef7fa;
  --sand: #f7f3ec;
  --text: #18303a;
  --muted: #5e737b;
  --white: #ffffff;
  --border: rgba(24, 48, 58, 0.14);
  --shadow: 0 22px 70px rgba(10, 47, 69, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(9, 43, 67, 0.97), rgba(11, 95, 148, 0.88)),
    radial-gradient(circle at 82% 24%, rgba(34, 166, 200, 0.35), transparent 34%);
  min-height: 760px;
}
.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  position: relative;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: 250px;
  max-width: 48vw;
  height: auto;
  background: white;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .95rem; }
.nav-links a { opacity: .9; font-weight: 700; }
.nav-links a:hover { opacity: 1; }
.nav-toggle { display: none; border: 0; background: transparent; color: white; font-size: 1.8rem; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0 130px;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
  font-size: .78rem;
  color: var(--aqua);
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.55rem, 5vw, 5rem); line-height: .98; letter-spacing: -0.05em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); line-height: 1.05; letter-spacing: -0.045em; margin-bottom: 22px; }
h3 { font-size: 1.15rem; line-height: 1.2; margin-bottom: 10px; }
.hero-text { font-size: 1.18rem; max-width: 650px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  border-radius: 999px; padding: 13px 22px;
  font-weight: 850; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--aqua); color: white; box-shadow: 0 12px 30px rgba(47,159,189,.25); }
.btn.secondary { border-color: rgba(255,255,255,.38); color: white; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card-line {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.card-line:last-child { border-bottom: 0; }
.card-line strong { font-size: 1.45rem; }
.card-line span { color: rgba(255,255,255,.82); }
.section { padding: 92px 0; }
.light { background: var(--ice); }
.dark { background: var(--navy); color: white; }
.dark p { color: rgba(255,255,255,.80); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.align-center { align-items: center; }
.intro { background: var(--sand); }
.intro p, .section-heading p, .two-col p { color: var(--muted); font-size: 1.03rem; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.values-grid, .product-grid, .steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.values-grid article, .product-card, .steps article, .contact-form, .brand-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 32px rgba(10, 47, 69, 0.06);
}
.values-grid p, .product-card p, .steps p, .brand-card p { color: var(--muted); margin-bottom: 0; }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--aqua);
  font-weight: 900;
  letter-spacing: .08em;
}
.brands { background: white; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.brand-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 20px;
}
.brand-card.featured img { height: 126px; }
.client-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.client-list div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  font-weight: 750;
}
.process { background: white; }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps span {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--ice); color: var(--blue);
  border-radius: 50%; font-weight: 900;
  margin-bottom: 18px;
}
.contact { background: var(--sand); }
.contact-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-details a { color: var(--blue); font-weight: 850; }
.contact-form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 850; font-size: .92rem; }
input, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 14px;
  padding: 13px 14px; font: inherit; color: var(--text); background: #fbfbfb;
}
input:focus, textarea:focus { outline: 2px solid rgba(47,159,189,.3); border-color: var(--aqua); }
.form-note { color: var(--muted); font-size: .86rem; margin-bottom: 0; }
.footer { background: #061d2b; color: white; padding: 34px 0; }
.footer-content { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer p { color: rgba(255,255,255,.68); margin-bottom: 0; }
.footer a { margin-left: 18px; color: rgba(255,255,255,.78); font-weight: 700; }
.footer a:hover { color: white; }

@media (max-width: 980px) {
  .site-header { min-height: auto; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: 78px;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    color: var(--text);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    width: min(280px, 90vw);
    z-index: 2;
  }
  .nav-links.open { display: flex; }
  .hero, .two-col { grid-template-columns: 1fr; }
  .hero { padding: 62px 0 88px; }
  .product-grid, .steps, .client-list, .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container, .navbar { width: min(100% - 28px, 1120px); }
  .section { padding: 68px 0; }
  .brand-logo { width: 200px; max-width: 70vw; }
  .hero-card { padding: 24px; }
  .card-line { grid-template-columns: 1fr; gap: 4px; }
  .values-grid, .product-grid, .steps, .client-list, .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: auto; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .footer a { margin: 0 16px 0 0; }
}



.nav-whatsapp,
.btn.whatsapp,
.inline-whatsapp,
.floating-whatsapp {
  background: #25d366;
  color: white !important;
  border-color: #25d366 !important;
}

.nav-whatsapp,
.btn.whatsapp,
.inline-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-whatsapp {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-whatsapp img,
.btn.whatsapp img,
.inline-whatsapp img,
.floating-whatsapp img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.btn.whatsapp {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.24);
}

.inline-whatsapp {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 850;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

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

@media (max-width: 620px) {
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 13px 16px; }
}


/* --- Visual refinement: alignment, spacing, justified copy --- */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero-text,
.hero-card span,
.footer p,
.nav-links a,
.btn,
.client-list div,
.contact-details a,
.section-heading.centered,
.section-heading.centered p,
.eyebrow {
  text-align: inherit;
}

.section-heading.centered h2,
.section-heading.centered p,
.section-heading.centered .eyebrow {
  text-align: center;
}

.intro p,
.section-heading p,
.two-col p,
.values-grid p,
.product-card p,
.steps p,
.brand-card p,
.contact-details p,
.form-note {
  line-height: 1.75;
}

.values-grid,
.product-grid,
.brand-grid,
.steps,
.client-list {
  align-items: stretch;
}

.values-grid article,
.product-card,
.steps article,
.brand-card,
.client-list div {
  height: 100%;
}

.values-grid article,
.product-card,
.steps article,
.brand-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
}

.values-grid article h3,
.product-card h3,
.steps article h3,
.brand-card h3 {
  min-height: 2.8em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.values-grid article p,
.product-card p,
.steps article p,
.brand-card p {
  flex: 1;
  margin-bottom: 0;
}

.product-card .icon,
.steps article span {
  margin-bottom: 8px;
}

.section-heading {
  margin-bottom: 50px;
}

.client-list div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 96px;
  padding: 20px;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-form {
  padding: 30px;
}

.contact-form .btn {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .values-grid article h3,
  .product-card h3,
  .steps article h3,
  .brand-card h3 {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  p {
    text-align: left;
    hyphens: none;
  }

  .client-list div {
    min-height: auto;
  }

  .values-grid article,
  .product-card,
  .steps article,
  .brand-card,
  .contact-form {
    padding: 24px;
  }
}


/* WhatsApp final: solo icono flotante redondo */
.nav-whatsapp,
.btn.whatsapp,
.inline-whatsapp {
  display: none !important;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding: 0;
  border-radius: 50%;
  background: transparent !important;
  color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.floating-whatsapp img {
  width: 76px;
  height: 76px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.floating-whatsapp span {
  display: none !important;
}

@media (max-width: 620px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 66px;
    height: 66px;
  }
  .floating-whatsapp img {
    width: 66px;
    height: 66px;
  }
}


/* Campo anti-spam oculto para bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
