/* SuperEstanco / SuperGrow — static home (bridge-inspired) */
:root {
  --brand: #55bcb9;
  --brand-dark: #3bb5bb;
  --accent-red: #e95751;
  --accent-grow: #ceda00;
  --text: #262626;
  --text-muted: #666666;
  --footer: #0a0a0a;
  --header-bg: #2b2b2b;
  --bg-soft: #f7f7f9;
  --white: #ffffff;
  --font: "Montserrat", system-ui, sans-serif;
  --header-h: 72px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  border-bottom: 0;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.2s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav > li > a:hover,
.main-nav > li:hover > a {
  color: var(--brand);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  padding: 8px 0;
}

.main-nav > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
}

.submenu a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}

/* Hero — static banner (no slider) */
.hero {
  margin-top: var(--header-h);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 36px 24px;
}

.hero-banner {
  width: min(100%, 980px);
  height: auto;
  margin: 0 auto;
}

/* Shop entries */
.shop-entries {
  padding: 70px 0;
  background: url("../img/superestanco-fondo-001.jpg") center / cover no-repeat;
  background-color: #e8e2d6;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.shop-card {
  text-align: center;
  padding: 36px 28px 32px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.shop-card img {
  margin: 0 auto;
  max-height: 160px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 11px 22px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: var(--white);
  color: var(--brand);
}

.btn-outline {
  background: var(--white);
  color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

.btn-estanco {
  border-color: var(--accent-red);
  background: var(--accent-red);
  border-radius: 0;
  min-width: 140px;
}

.btn-estanco:hover {
  background: var(--white);
  color: var(--accent-red);
}

.btn-grow {
  border-color: var(--accent-grow);
  background: var(--accent-grow);
  color: var(--white);
  border-radius: 0;
  min-width: 140px;
}

.btn-grow:hover {
  background: var(--white);
  color: #6a9f2c;
  border-color: #6a9f2c;
}

.btn-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-light:hover {
  background: var(--white);
  color: var(--text);
}

/* Features */
.features {
  padding: 50px 0 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.features h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.features p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Content bands */
.band {
  padding: 90px 0;
}

/* ¿Por qué elegirnos? — panel menta + foto solapada */
.band-why {
  background: var(--white);
  padding: 80px 0 70px;
}

.why-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 1fr);
  gap: 36px 48px;
  align-items: center;
  background: #e8f3f3;
  border-radius: 28px;
  padding: 42px 48px 42px 0;
  margin-left: 48px;
}

.why-media {
  margin-left: -48px;
}

.why-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.why-copy h1 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -1px;
  line-height: 1.15;
}

.why-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.why-copy strong {
  color: var(--text);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}
.split.reverse > * {
  direction: ltr;
}

.split h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-weight: 500;
  font-size: 18px;
}

.split h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.split p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 22px;
}

.split img {
  width: 100%;
  object-fit: cover;
}

.band-product {
  background: url("../img/producto-background-1024x413.png") center / cover
    no-repeat;
  background-color: #eef3f4;
}

.band-trust {
  background: url("../img/h1-background-staff-1024x413.jpg") center / cover
    no-repeat;
  background-color: var(--bg-soft);
}

.band-jobs {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: url("../img/trabajo2.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.band-jobs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.band-jobs .container {
  position: relative;
  z-index: 1;
}

.band-jobs h2 {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 34px);
}

/* Contact */
.contact {
  padding: 90px 0;
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1px;
}

.contact .lead {
  color: var(--text-muted);
  margin: 0 0 28px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-meta a,
.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.dot-mail {
  color: var(--brand-dark);
}
.dot-phone {
  color: var(--accent-red);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: var(--white);
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  border-radius: 2px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(85, 188, 185, 0.35);
  border-color: var(--brand);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #b2b2b2;
  padding: 36px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a:hover {
  color: var(--brand);
}

.hours {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 24px;
  }

  .why-panel {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 28px;
    gap: 24px;
  }

  .why-media {
    margin-left: 0;
  }

  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > li > a {
    padding: 14px 24px;
  }

  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    display: none;
    padding-left: 12px;
    background: #222;
  }

  .submenu a {
    color: var(--white);
  }

  .main-nav > li.is-open .submenu {
    display: block;
  }

  .hero {
    min-height: 100px;
    padding: 28px 20px;
  }

  .shop-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    max-width: 320px;
    margin-inline: auto;
  }

  .band {
    padding: 60px 0;
  }
}
