:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #edf3f8;
  --ink: #101521;
  --muted: #5a6273;
  --line: #dde4ee;
  --brand: #243270;
  --brand-deep: #101b4f;
  --brand-soft: #e9eefb;
  --accent: #00a4c7;
  --spark: #c7f438;
  --signal: #ff7b4f;
  --whatsapp: #25d366;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 21, 33, 0.11);
  --max-width: 1180px;
  --topbar-height: 36px;
  --nav-height: 78px;
  --header-height: calc(var(--topbar-height) + var(--nav-height));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.page-top,
section {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a,
summary,
input,
select,
textarea {
  outline-offset: 4px;
}

address {
  font-style: normal;
}

.skip-link {
  background: var(--ink);
  color: #ffffff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

.section-pad {
  padding: 76px 0;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(0, 164, 199, 0.08), rgba(199, 244, 56, 0.08)),
    var(--surface-soft);
}

.section-dark {
  background: #0d1326;
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 228, 238, 0.9);
  backdrop-filter: blur(16px);
}

.header-top {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 760;
}

.header-top-grid {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: var(--topbar-height);
  justify-content: space-between;
}

.header-contact {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-width: 0;
}

.header-contact a {
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: anywhere;
}

.header-contact a:hover,
.header-contact a:focus {
  color: #ffffff;
}

.nav-shell {
  align-items: center;
  display: flex;
  min-height: var(--nav-height);
  justify-content: space-between;
  margin-inline: auto;
  width: min(100% - 32px, var(--max-width));
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.brand-logo {
  height: 48px;
  object-fit: contain;
  object-position: left center;
  width: min(238px, 58vw);
}

.nav-toggle {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 18px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  left: 16px;
  padding: 0.75rem;
  position: fixed;
  right: 16px;
  top: calc(var(--header-height) + 10px);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 760;
  padding: 0.8rem 0.9rem;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.btn {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 0.95rem 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(36, 50, 112, 0.24);
  color: #ffffff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #07140b;
}

.btn-light {
  background: #ffffff;
  color: var(--brand-deep);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.btn-small {
  min-height: 42px;
  padding: 0.8rem 1rem;
}

.btn-full {
  width: 100%;
}

.hero {
  align-items: center;
  color: #ffffff;
  display: grid;
  min-height: clamp(600px, 82svh, 780px);
  overflow: hidden;
  position: relative;
}

.hero-bg,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 10, 26, 0.96) 0%, rgba(7, 14, 34, 0.88) 35%, rgba(9, 19, 43, 0.36) 66%, rgba(9, 19, 43, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 10, 26, 0.5), rgba(5, 10, 26, 0.06));
  z-index: 1;
}

.hero-content {
  padding: 72px 0 54px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.15rem, 8vw, 4.15rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1.15rem;
  max-width: 900px;
}

h2 {
  font-size: clamp(1.8rem, 6vw, 3.12rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  max-width: 650px;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0;
}

.hero-points,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-points span,
.feature-list span,
.destination-panel span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  padding: 0.48rem 0.75rem;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  padding: 0.42rem 0.58rem;
}

.trust-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  gap: 1px;
}

.trust-grid div {
  padding: 1.2rem 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--brand-deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid span {
  color: var(--muted);
}

.split-layout,
.shipping-grid,
.contact-grid,
.social-grid,
.international-grid,
.map-block {
  display: grid;
  gap: 2rem;
}

.copy-block {
  color: var(--muted);
  font-size: 1.02rem;
}

.copy-block .feature-list {
  margin-top: 1.3rem;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 790px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.benefit-grid,
.catalog-grid,
.process-list,
.faq-list {
  display: grid;
  gap: 1.1rem;
}

.benefit-card,
.product-card,
.contact-form,
.process-list > div,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 21, 33, 0.05);
}

.benefit-card {
  border-top: 4px solid transparent;
  padding: 1.2rem;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.benefit-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(221, 228, 238, 0.8);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(16, 21, 33, 0.1);
  color: var(--brand);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 52px;
}

.benefit-icon svg {
  fill: none;
  height: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 27px;
}

.benefit-icon-location {
  color: #243270;
}

.benefit-icon-catalog {
  color: #007fa0;
}

.benefit-icon-whatsapp {
  color: #128c4a;
}

.benefit-icon-business {
  color: #a54b2f;
}

.benefit-icon-region {
  color: #5f4ccf;
}

.benefit-icon-support {
  color: #0f6c8f;
}

.catalog-preview-section {
  padding: 58px 0;
}

.catalog-preview-layout {
  display: grid;
  gap: 1.35rem;
}

.catalog-preview-copy {
  max-width: 760px;
}

.catalog-preview-copy h2 {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.catalog-preview-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
}

.catalog-stats {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.15rem;
}

.catalog-stats span {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.58rem 0.75rem;
}

.catalog-stats strong {
  color: var(--brand-deep);
  font-size: 1.18rem;
  line-height: 1;
}

.catalog-preview-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.category-summary-grid {
  display: grid;
  gap: 0.7rem;
}

.category-card {
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(16, 21, 33, 0.045);
  display: flex;
  gap: 0.82rem;
  min-height: 100%;
  padding: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.category-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(36, 50, 112, 0.1), rgba(0, 164, 199, 0.12));
  border: 1px solid rgba(0, 164, 199, 0.16);
  border-radius: 12px;
  color: var(--brand-deep);
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.category-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}

.category-body {
  display: grid;
  flex: 1;
  gap: 0.38rem;
  min-width: 0;
}

.category-heading {
  align-items: flex-start;
  display: flex;
  gap: 0.55rem;
  justify-content: space-between;
}

.category-heading h3 {
  margin-bottom: 0;
}

.category-count {
  background: var(--brand-soft);
  border-radius: 999px;
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.44rem;
  text-transform: uppercase;
}

.category-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

.category-link {
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

.category-link:hover,
.category-link:focus {
  color: var(--accent);
}

.catalog-page-hero {
  background:
    linear-gradient(90deg, rgba(8, 15, 39, 0.95), rgba(36, 50, 112, 0.88)),
    url("../assets/img/hero-movilidad-electrica.jpg") center / cover;
  color: #ffffff;
  padding: clamp(70px, 12vw, 128px) 0 clamp(52px, 8vw, 86px);
}

.catalog-page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
}

.catalog-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.catalog-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.catalog-notes span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.45rem 0.68rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 850;
  padding: 0.7rem 1rem;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-media {
  background: #f1f5fb;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.product-media img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.availability {
  background: linear-gradient(135deg, rgba(36, 50, 112, 0.94), rgba(0, 164, 199, 0.92));
  border-radius: 999px;
  bottom: 0.8rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  left: 0.8rem;
  padding: 0.38rem 0.58rem;
  position: absolute;
}

.product-body {
  display: grid;
  gap: 0.78rem;
  padding: 1.05rem;
}

.product-topline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: space-between;
}

.product-category {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-line {
  background: rgba(0, 164, 199, 0.1);
  border-radius: 999px;
  color: #00728b;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 0.25rem 0.48rem;
}

.product-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.spec-list {
  display: grid;
  gap: 0.42rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.spec-list li {
  align-items: center;
  background: #f6f9fc;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: flex;
  font-size: 0.86rem;
  font-weight: 780;
  min-height: 34px;
  padding: 0.38rem 0.55rem;
}

.spec-list li::before {
  background: var(--spark);
  border-radius: 999px;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-right: 0.48rem;
  width: 8px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.product-features span {
  background: var(--brand-soft);
  border-radius: 999px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 820;
  padding: 0.34rem 0.54rem;
}

.product-note {
  color: #6d7481;
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

.product-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.product-actions .btn-primary {
  background: var(--brand-soft);
  box-shadow: none;
  color: var(--brand-deep);
}

.international-section {
  background: #ffffff;
}

.international-grid {
  align-items: start;
}

.international-grid p {
  color: var(--muted);
  max-width: 690px;
}

.process-list > div {
  padding: 1rem;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  color: var(--brand-deep);
  margin-bottom: 0.3rem;
}

.process-list span {
  color: var(--muted);
}

.section-dark .eyebrow {
  color: var(--spark);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 660px;
}

.destination-panel {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.destination-panel span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.cta-section {
  background: var(--surface);
}

.cta-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(36, 50, 112, 0.98), rgba(0, 164, 199, 0.9)),
    var(--brand);
  border-radius: var(--radius);
  color: #ffffff;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.25rem, 4vw, 2.3rem);
}

.cta-panel .eyebrow {
  color: var(--spark);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  max-width: 680px;
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  padding: 1rem 1.1rem;
}

.faq-list p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0;
  padding: 0.95rem 1.1rem 1.1rem;
}

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

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.contact-list a,
.contact-list > span {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.95rem 1rem;
}

.contact-list strong {
  flex: 0 0 auto;
}

.contact-list span span,
.contact-list a span {
  color: var(--muted);
  text-align: right;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.form-row {
  display: grid;
  gap: 0.42rem;
}

.form-row label {
  font-weight: 820;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  width: 100%;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 164, 199, 0.18);
  outline: none;
}

.contact-form.is-submitted input:invalid,
.contact-form.is-submitted textarea:invalid {
  border-color: var(--signal);
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  min-height: 1.2em;
}

.map-block {
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding-top: 52px;
}

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

.map-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 340px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 340px;
  width: 100%;
}

.social-section {
  background: var(--surface-soft);
}

.social-links {
  display: grid;
  gap: 0.85rem;
}

.social-link {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 0.85rem;
  min-height: 70px;
  padding: 0.9rem 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus {
  border-color: rgba(0, 164, 199, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.social-icon {
  align-items: center;
  border-radius: 16px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 48px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.social-icon svg {
  fill: none;
  height: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 27px;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.social-link small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  margin-top: 0.12rem;
}

.social-instagram .social-icon {
  background: radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 32%, #d62976 56%, #962fbf 76%, #4f5bd5 100%);
}

.social-facebook .social-icon {
  background: #1877f2;
}

.social-tiktok .social-icon {
  background: linear-gradient(135deg, #111111, #20232d 58%, #00f2ea);
}

.social-whatsapp .social-icon {
  background: #25d366;
  color: #062e17;
}

.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 164, 199, 0.22), transparent 34%),
    linear-gradient(135deg, #0d1326, #111c42);
  color: #ffffff;
  padding: 56px 0 24px;
}

.footer-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.1rem;
}

.footer-cta strong,
.footer-cta span {
  display: block;
}

.footer-cta strong {
  font-size: 1.18rem;
}

.footer-cta span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-about {
  max-width: 430px;
}

.footer-logo {
  background: #ffffff;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.55rem;
}

.footer-logo img {
  height: auto;
  max-width: 260px;
}

.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h2 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.45rem;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  padding-top: 1.3rem;
}

.whatsapp-float {
  align-items: center;
  background: var(--whatsapp);
  border: 2px solid #ffffff;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 14px 30px rgba(16, 21, 33, 0.24);
  color: #07140b;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 18px;
  width: 58px;
  z-index: 90;
}

.whatsapp-float svg {
  fill: none;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 30px;
}

@media (min-width: 560px) {
  .hero-actions,
  .product-actions,
  .catalog-preview-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }

  .benefit-grid,
  .catalog-grid,
  .category-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .trust-grid div {
    border-right: 1px solid var(--line);
    padding-inline: 1rem;
  }

  .trust-grid div:last-child {
    border-right: 0;
  }
}

@media (min-width: 880px) {
  :root {
    --nav-height: 84px;
  }

  .section-pad {
    padding: 96px 0;
  }

  .catalog-preview-section {
    padding: 72px 0;
  }

  .brand-logo {
    height: 50px;
    width: 226px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    gap: 0.12rem;
    left: auto;
    padding: 0;
    position: static;
    right: auto;
    top: auto;
  }

  .nav-menu a {
    font-size: 0.76rem;
    padding: 0.64rem 0.34rem;
  }

  .nav-menu .btn {
    margin-left: 0.32rem;
    padding-inline: 0.62rem;
  }

  .hero {
    min-height: clamp(640px, 80svh, 790px);
  }

  .hero-content {
    padding-top: 84px;
  }

  .split-layout,
  .shipping-grid,
  .contact-grid,
  .social-grid,
  .international-grid,
  .map-block {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  }

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

  .catalog-preview-layout {
    align-items: start;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

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

  .faq-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }

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

  .footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .brand-logo {
    height: 56px;
    width: 280px;
  }

  .nav-menu a {
    font-size: 0.84rem;
    padding-inline: 0.62rem;
  }

  .nav-menu .btn {
    padding-inline: 0.82rem;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.72fr 0.88fr 1fr 0.72fr;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 70px;
    --topbar-height: 34px;
  }

  .header-top-grid {
    justify-content: center;
  }

  .header-top-grid > span,
  .header-contact a:first-child {
    display: none;
  }

  .header-contact {
    justify-content: center;
  }

  .brand-logo {
    height: 42px;
    width: min(218px, 62vw);
  }
}

@media (max-width: 420px) {
  .contact-list a,
  .contact-list > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-list span span,
  .contact-list a span {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
