:root {
  --yellow: #F2D852;
  --yellow-hover: #F2E085;
  --black: #111111;
  --graphite: #1f2933;
  --text-dark: #374151;
  --text-mid: #6b7280;
  --bg-light: #f3f4f6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-alt,
.section-soft {
  background: var(--bg-light);
}

.section-dark {
  background: var(--graphite);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-intro {
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(31, 41, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text span {
  color: var(--yellow-hover);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover {
  color: var(--yellow-hover);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
}

.hero-grid,
.contact-grid,
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.kicker {
  color: var(--yellow-hover);
  font-weight: 700;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-dark);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 420px;
}

.quick-info {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--text-dark);
}

.quick-info li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quick-info i {
  width: 18px;
  text-align: center;
  color: var(--graphite);
  flex-shrink: 0;
}

.quick-info strong {
  color: var(--black);
}

.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

/* CTA principal (WhatsApp o acción fuerte) */
.btn-primary,
.btn-tienda {
  background: var(--yellow);
  color: var(--black);
}

/* tienda */
/* CTA secundaria (Tienda) */
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

/* hover principal */
.btn-primary:hover,
.btn-tienda:hover {
  background: var(--yellow-hover);
}

/* hover secundaria */
.btn-secondary:hover {
  background: var(--black);
  color: var(--yellow);
}

.btn-outline {
  border-color: #d1d5db;
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--yellow-hover);
  color: var(--black);
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.card h3 {
  font-size: 1.05rem;
}

.card-pain {
  border-left: 4px solid var(--yellow);
}

.card-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.step {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.note-box {
  background: var(--white);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.note-box h3 {
  margin-bottom: 0.5rem;
}

.brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.brand {
  min-height: 92px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
  display: grid;
  place-items: center;
}

.brand img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  color: #4b5563;
  font-weight: 700;
}

.contact-inline-link {
  font-weight: 600;
  color: var(--yellow-hover);
}

.contact-inline-link:hover {
  text-decoration: underline;
}

.testimonial-grid {
  align-items: stretch;
}

.testimonial {
  text-align: left;
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.testimonial h3 {
  margin: 0;
}

.testimonial-role {
  margin: 0.2rem 0 0.8rem;
  color: var(--text-mid);
  font-weight: 600;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  font-weight: 500;
  color: #1f2937;
}

.cta-final {
  background: var(--black);
  color: var(--white);
}

.cta-final h2,
.cta-final p {
  color: var(--white);
}

.cta-final-inner {
  text-align: center;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 340px;
  border-radius: var(--radius);
}

.center-text {
  text-align: center;
}

.emphasise {
  margin-top: 1.6rem;
  font-weight: 600;
}

.site-footer {
  background: var(--black);
  color: #d1d5db;
  padding: 56px 0 22px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .cards-4,
  .cards-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .steps,
  .brands {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    left: 4%;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero-grid,
  .contact-grid,
  .logistics-grid,
  .cards-3,
  .cards-4,
  .cards-5,
  .steps,
  .brands {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }
}
