/* Subpáginas — estilo unificado claro / alegre */
.site-chrome-page {
  --chrome-bg: #ffffff;
  --chrome-accent: #0284c7;
  --chrome-ink: #0b2a4a;
  background: #f7fafc;
  color: #1e293b;
  font-family: 'Outfit', system-ui, sans-serif;
}

.site-chrome-page .site-chrome-header,
.site-chrome-page .header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  color: var(--chrome-ink);
}

.site-chrome-page .header__logo-text,
.site-chrome-page .header__nav a {
  color: var(--chrome-ink);
}

.site-chrome-page .header__nav a:hover {
  color: var(--chrome-accent);
}

.site-chrome-page .page-hero {
  background: #fff;
  color: var(--chrome-ink);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-chrome-page .page-hero h1 {
  color: var(--chrome-ink);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-chrome-page .page-hero p {
  color: #64748b;
}

.site-chrome-page .site-chrome-footer,
.site-chrome-page .footer {
  background: #0b2a4a;
  color: rgba(255, 255, 255, 0.7);
}

.site-chrome-page .mobile-nav {
  color: var(--chrome-ink);
  background: #fff;
}

.site-chrome-page .whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.site-chrome-page .footer__admin {
  color: var(--chrome-accent);
}

/* ── Layout subpáginas ── */
.site-chrome-page .container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-chrome-page .header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem clamp(1rem, 4vw, 2rem);
  min-height: 72px;
}

.site-chrome-page .header__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.site-chrome-page .header__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-chrome-page .header__logo-text {
  font-family: var(--display, system-ui);
  font-weight: 800;
  font-size: .82rem;
  line-height: 1.15;
}

.site-chrome-page .header__nav {
  display: none;
  align-items: center;
  gap: .1rem;
}

@media (min-width: 1100px) {
  .site-chrome-page .header__nav {
    display: flex;
  }

  .site-chrome-page .header__nav a {
    padding: .4rem .7rem;
    font-size: .78rem;
    font-weight: 600;
    border-radius: 999px;
    transition: color .2s, background .2s;
  }

  .site-chrome-page .header__nav a:hover {
    background: rgba(69, 216, 247, .12);
  }
}

.site-chrome-page .header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}

.site-chrome-page .header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(15, 23, 42, .04);
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 10px;
  cursor: pointer;
}

.site-chrome-page .header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0b2a4a;
  margin: 0 auto;
  border-radius: 2px;
}

.site-chrome-page .lang-select {
  color: #0b2a4a;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

@media (min-width: 1100px) {
  .site-chrome-page .header__toggle {
    display: none;
  }
}

.site-chrome-page .mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.site-chrome-page .mobile-nav.open {
  display: flex;
}

.site-chrome-page .mobile-nav a {
  padding: .9rem 1.5rem;
  color: #0b2a4a;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-chrome-page .page-hero {
  padding: calc(72px + 2.5rem) 0 3rem;
}

.site-chrome-page .page-hero p {
  margin-top: .75rem;
  font-size: 1.02rem;
  opacity: .88;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

.site-chrome-page .section--white {
  background: #f8fbfd;
  color: #0c4a6e;
}

.site-chrome-page .section__title {
  font-family: var(--display, system-ui);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0c4a6e;
  line-height: 1.15;
}

.site-chrome-page .section__desc {
  max-width: 640px;
  line-height: 1.7;
  color: #475569;
  font-size: 1rem;
}

.feature-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .feature-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.feature-split__img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* ── Merchandising ── */
.page-hero--merch {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 19, 29, .9) 0%, rgba(15, 34, 51, .85) 45%, rgba(19, 78, 106, .8) 100%),
    url('../assets/images/merch/tumblers-collection.png') center 55% / cover no-repeat;
}

.merch-hero__tag {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chrome-accent);
  background: rgba(69, 216, 247, .15);
  border: 1px solid rgba(69, 216, 247, .25);
}

.merch-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 5rem);
}

.merch-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}

.merch-intro__text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #475569;
}

.merch-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.merch-perks li {
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  color: #0e7490;
  background: rgba(69, 216, 247, .12);
  border: 1px solid rgba(69, 216, 247, .22);
}

.site-chrome-page .merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .site-chrome-page .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .site-chrome-page .merch-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .site-chrome-page .merch-card--featured .merch-card__img {
    aspect-ratio: auto;
    min-height: 240px;
  }
}

@media (min-width: 1024px) {
  .site-chrome-page .merch-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .site-chrome-page .merch-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }

  .site-chrome-page .merch-card--featured .merch-card__img {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .site-chrome-page .merch-card:not(.merch-card--featured) {
    grid-column: span 2;
  }
}

.site-chrome-page .merch-card {
  background: #fff;
  border: 1px solid rgba(14, 116, 144, .1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 116, 144, .07);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.site-chrome-page .merch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(14, 116, 144, .13);
  border-color: rgba(69, 216, 247, .3);
}

.site-chrome-page .merch-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f4f8, #d4eef5);
}

.site-chrome-page .merch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.site-chrome-page .merch-card:hover .merch-card__img img {
  transform: scale(1.04);
}

.site-chrome-page .merch-card__body {
  padding: 1.2rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.site-chrome-page .merch-card__badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: .5rem;
  padding: .2rem .55rem;
  border-radius: 6px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0e7490;
  background: rgba(69, 216, 247, .15);
}

.site-chrome-page .merch-card__body h4 {
  font-family: var(--display, system-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: .4rem;
  line-height: 1.25;
}

.site-chrome-page .merch-card__desc {
  font-size: .86rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.site-chrome-page .merch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .25rem;
}

.site-chrome-page .merch-card__price {
  font-weight: 800;
  font-size: 1.12rem;
  color: #d97706;
  margin: 0;
}

.site-chrome-page .merch-card__btn {
  white-space: nowrap;
}

.merch-cta {
  margin-top: 3rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(224, 247, 250, .95) 0%, rgba(240, 249, 255, .95) 100%);
  border: 1px solid rgba(69, 216, 247, .28);
  box-shadow: 0 8px 32px rgba(14, 116, 144, .08);
}

.merch-cta__title {
  font-family: var(--display, system-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: .5rem;
}

.merch-cta__hint {
  margin-bottom: 1.25rem;
  color: #64748b;
  font-size: .92rem;
}

/* Modal de artículo blog */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.blog-modal.open {
  display: flex;
}

.blog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 29, 0.75);
  backdrop-filter: blur(4px);
}

.blog-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.blog-modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(7, 19, 29, 0.08);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

.blog-modal__img img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.blog-modal__body h2 {
  font-family: var(--display, system-ui);
  color: var(--ocean, #0F2233);
  margin-bottom: .75rem;
}

.blog-modal__body p {
  line-height: 1.7;
  margin-bottom: .75rem;
  color: #334;
}

/* ── Contacto ── */
.contact-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 7vw, 5rem);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.75rem;
  }
}

.contact-aside__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0e7490;
  background: rgba(69, 216, 247, .14);
  border: 1px solid rgba(69, 216, 247, .28);
}

.contact-aside .section__title {
  margin-bottom: .65rem;
}

.contact-aside .section__desc {
  margin-bottom: 1.75rem;
}

.contact-cards {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .95rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(14, 116, 144, .1);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(14, 116, 144, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 116, 144, .1);
  border-color: rgba(69, 216, 247, .35);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #0e7490;
  background: linear-gradient(145deg, rgba(69, 216, 247, .18), rgba(14, 116, 144, .08));
}

.contact-card__icon--mail { color: #0369a1; background: linear-gradient(145deg, rgba(56, 189, 248, .2), rgba(3, 105, 161, .08)); }
.contact-card__icon--pin { color: #b45309; background: linear-gradient(145deg, rgba(251, 191, 36, .22), rgba(180, 83, 9, .08)); }
.contact-card__icon--wa { color: #15803d; background: linear-gradient(145deg, rgba(74, 222, 128, .22), rgba(21, 128, 61, .08)); }
.contact-card__icon--ig { color: #be185d; background: linear-gradient(145deg, rgba(244, 114, 182, .22), rgba(190, 24, 93, .08)); }

.contact-card__body {
  min-width: 0;
}

.contact-card__body strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: .2rem;
}

.contact-card__body a,
.contact-card__body p {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  color: #0c4a6e;
  line-height: 1.45;
  word-break: break-word;
}

.contact-card__body a {
  text-decoration: none;
  transition: color .2s;
}

.contact-card__body a:hover {
  color: #0891b2;
}

.contact-aside__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.contact-btn-wa {
  flex: 1 1 auto;
  min-width: min(100%, 220px);
}

.contact-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
  color: #0c4a6e;
  background: #fff;
  border: 1.5px solid rgba(14, 116, 144, .2);
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}

.contact-btn-call:hover {
  background: rgba(69, 216, 247, .08);
  border-color: rgba(69, 216, 247, .45);
  transform: translateY(-1px);
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(14, 116, 144, .12);
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow:
    0 4px 24px rgba(14, 116, 144, .08),
    0 1px 0 rgba(255, 255, 255, .8) inset;
}

.contact-form-card__head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(14, 116, 144, .08);
}

.contact-form-card__head h3 {
  font-family: var(--display, system-ui);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #0c4a6e;
  margin: 0 0 .4rem;
}

.contact-form-card__head p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
  color: #64748b;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}

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

@media (max-width: 560px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0e7490;
  margin-bottom: .4rem;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: .82rem 1rem;
  font: inherit;
  font-size: .92rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid rgba(14, 116, 144, .14);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #475569;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(69, 216, 247, .35);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: #45d8f7;
  box-shadow: 0 0 0 3px rgba(69, 216, 247, .2);
}

.contact-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230e7490' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form-submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  color: #07131d;
  cursor: pointer;
  background: linear-gradient(135deg, #f5a623 0%, #e8920a 100%);
  box-shadow: 0 8px 24px rgba(245, 166, 35, .35);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, .42);
}

.contact-form-submit:disabled {
  opacity: .55;
  cursor: wait;
}

.contact-form-status {
  margin: 1rem 0 0;
  padding: .75rem 1rem;
  border-radius: 12px;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0e7490;
  background: rgba(69, 216, 247, .12);
  border: 1px solid rgba(69, 216, 247, .25);
}

.contact-form-status.is-error {
  color: #b45309;
  background: rgba(251, 191, 36, .12);
  border-color: rgba(251, 191, 36, .35);
}

.site-chrome-page .map-section {
  background: linear-gradient(180deg, #eef6fa 0%, #f8fbfd 100%);
}

.site-chrome-page .map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14, 116, 144, .12);
  border: 1px solid rgba(14, 116, 144, .1);
}

.site-chrome-page .map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* ── Crédito de autoría ── */
.site-credit {
  font-size: 0.78rem;
  color: #64748b;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.site-credit strong {
  font-weight: 700;
  color: #0e7490;
}

.site-credit:hover {
  opacity: 1;
}

.site-credit:hover strong {
  color: #2ec4b6;
}

.footer__bottom .site-credit {
  margin-left: auto;
}

@media (max-width: 640px) {
  .footer__bottom .site-credit {
    margin-left: 0;
    width: 100%;
    padding-top: 0.4rem;
  }
}

/* ── Acceso al panel de administración ── */
.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(14, 116, 144, 0.25);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #0e7490;
  text-decoration: none;
  background: rgba(14, 116, 144, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.admin-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.admin-link:hover {
  background: rgba(46, 196, 182, 0.16);
  border-color: rgba(46, 196, 182, 0.5);
  color: #0f766e;
}

.footer__bottom .admin-link {
  margin-left: 0.75rem;
}

@media (max-width: 640px) {
  .footer__bottom .admin-link {
    margin-left: 0;
  }
}
