/* ==========================================================================
   AMT PALENCIA — Hoja de estilos principal
   Estilo: limpio y profesional
   ========================================================================== */

/* --- Variables de color y diseño --- */
:root {
  --navy:        #16365F;
  --blue:        #3F72AE;
  --blue-700:    #2F5C90;
  --blue-light:  #EAF1FA;
  --blue-logo:   #5E8FCB;   /* azul del logo */
  --accent:      #E11C24;   /* rojo del logo */
  --accent-700:  #B5141B;

  --ink:         #15212E;
  --text:        #3F4B59;
  --muted:       #6B7785;

  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --line:        #E4EAF1;

  --wa:          #25D366;   /* WhatsApp */

  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 3px rgba(11, 46, 79, .08);
  --shadow:      0 8px 24px rgba(11, 46, 79, .10);
  --shadow-lg:   0 18px 48px rgba(11, 46, 79, .16);

  --maxw:        1140px;
  --header-h:    88px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* --- Reset básico --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-700); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.15rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* --- Utilidades --- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #D9E5F1; }
.section--navy h2, .section--navy h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--accent); }
.section-head { max-width: 720px; margin: 0 auto 54px; }
.section-head.left { margin-left: 0; text-align: left; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(22,104,179,.28); }
.btn--primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22,104,179,.34); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(225,28,36,.28); }
.btn--accent:hover { background: var(--accent-700); color: #fff; transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.30); }
.btn--wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #eef4fb; color: var(--navy); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   HEADER / NAVEGACIÓN
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #cdddec;
  font-size: .86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar .topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }
.topbar__right { display: flex; gap: 22px; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: .5px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand__logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.18rem; letter-spacing: .3px; }
.brand__tag  { font-size: .72rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 8px;
}
.nav a:hover { background: var(--blue-light); color: var(--blue-700); }
.nav a.active { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); margin: 0 auto; transition: .3s; border-radius: 2px; }
.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); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(225,28,36,.16), transparent 60%),
    linear-gradient(160deg, #16365F 0%, #1E4A7C 55%, #3F72AE 120%);
  color: #E7F0F9;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 500px at 80% 0%, #000, transparent 75%);
  opacity: .5;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: 72px 0;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { color: #C6D6E6; max-width: 540px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 14px; border-radius: 100px;
  font-size: .88rem; font-weight: 500; color: #DCE8F3;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--accent); }

.hero__horario {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 24px 0 2px; padding: 13px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}
.hero__horario-ico svg { width: 26px; height: 26px; color: var(--accent); }
.hero__horario-txt { display: flex; flex-direction: column; line-height: 1.25; }
.hero__horario-txt b { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.hero__horario-txt span { color: rgba(255,255,255,.82); font-size: .9rem; }

/* Botón Neron visible en la primera pantalla del inicio */
.hero__grid > div:first-of-type { display: flex; flex-direction: column; }
.hero__intro { display: flex; gap: 30px; align-items: flex-start; }
.hero__intro .lead { flex: 1; margin-bottom: 0; }
.hero__intro .hero__horario { margin: 4px 0 0; flex-shrink: 0; max-width: 340px; }
@media (max-width: 760px){ .hero__intro { flex-direction: column; gap: 18px; } .hero__intro .hero__horario { max-width: none; } }
.hero__grid > div:first-of-type > .btn--neron-banner { margin: 18px 0 6px; }
.hero__grid > div:first-of-type > .btn-row { margin-bottom: 4px; }
.hero__grid > div:first-of-type > .hero__badges { align-self: flex-start; margin-top: 20px; }
.hero__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.hero__card.hero__card--neron { background: #101418; border: 1px solid rgba(255,255,255,.10); color: #fff; }
.hero__card.hero__card--neron h3 { color: #fff; }
.hero__card.hero__card--neron .muted { color: #dfe8f2; }
.hero__card.hero__card--neron .hero__list li { border-bottom-color: rgba(255,255,255,.14); }
.hero__card.hero__card--neron .hero__list li, .hero__card.hero__card--neron .hero__list li span, .hero__card.hero__card--neron .hero__list li b { color: #ffffff; }
.hero__card.hero__card--neron .hero__list svg { color: var(--accent); }
.hero__neron-logo { text-align: center; margin-bottom: 8px; }
.hero__neron-logo img { max-width: 200px; height: auto; border-radius: 12px; display: inline-block; }
.hero__neron-fallback { font-family: var(--font-head); font-weight: 800; font-size: 2rem; letter-spacing: 4px; color: #fff; }
@media (max-width: 760px){ .hero__cards { grid-template-columns: 1fr; } }

.hero__card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero__card h3 { color: var(--ink); }
.hero__card .muted { color: var(--muted); font-size: .95rem; }
.hero__list { list-style: none; margin: 18px 0; }
.hero__list li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.hero__list li:last-child { border-bottom: 0; }
.hero__list svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.hero__list b { color: var(--ink); font-family: var(--font-head); }

/* ==========================================================================
   TARJETAS DE SERVICIO
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3e0ee; }
.card__icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }
.card--accent .card__icon { background: rgba(225,28,36,.12); color: var(--accent-700); }

/* Lista de características con check */
.checklist { list-style: none; }
.checklist li { display: flex; gap: 12px; padding: 8px 0; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   BLOQUE ALTERNO (texto + tarjeta/imagen)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.media-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blue-light), #fff);
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.stat-row { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 18px; }
.stat b { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--blue); line-height: 1; }
.stat span { font-size: .9rem; color: var(--muted); }

/* ==========================================================================
   FRANJA CTA
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 52px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C6D6E6; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   GALERÍA
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--blue-light), #dCe9f6);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--blue);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__ph { text-align: center; padding: 18px; }
.gallery__ph svg { width: 40px; height: 40px; opacity: .55; margin-bottom: 8px; }
.gallery__ph span { font-size: .82rem; color: var(--muted); display: block; }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(11,46,79,.82));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}

/* ==========================================================================
   OFERTAS
   ========================================================================== */
.offer {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; height: 100%;
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer__top {
  background: linear-gradient(150deg, var(--navy), var(--blue));
  color: #fff; padding: 26px; position: relative;
}
.offer__tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; padding: 5px 12px; border-radius: 100px;
}
.offer__body { padding: 24px; }
.offer__body p { color: var(--muted); }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item__icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: grid; place-items: center;
}
.info-item__icon svg { width: 22px; height: 22px; }
.info-item h4 { margin: 0 0 3px; font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; }
.info-item p, .info-item a { margin: 0; color: var(--muted); font-size: .98rem; }
.info-item a:hover { color: var(--blue); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg-soft); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(22,104,179,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 4px; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.hours-table td:last-child { text-align: right; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.hours-table tr:last-child td { border-bottom: 0; }
.badge-closed { color: #C0392B; font-weight: 600; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-embed iframe { width: 100%; height: 320px; border: 0; }

/* Banner de página interior */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(225,28,36,.14), transparent 60%),
    linear-gradient(160deg, #16365F, #1E4A7C);
  color: #E7F0F9; padding: 70px 0 64px; text-align: center; position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #C6D6E6; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .86rem; color: #9DB6CD; margin-bottom: 14px; }
.breadcrumb a { color: #C6D6E6; }
.breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); color: #A9BFD3; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 38px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-head); }
.site-footer a { color: #A9BFD3; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: #7E99B4; }
.footer-brand p { font-size: .92rem; margin-top: 14px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 11px; font-size: .92rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.social { display: flex; gap: 10px; margin-top: 6px; }
.social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.social a:hover { background: var(--accent); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: #7E99B4;
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.06); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   ANIMACIÓN DE ENTRADA
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .topbar { display: none; }
  .header-cta .btn-call-text { display: none; }

  /* Menú móvil */
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .32s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 12px; border-radius: 8px; font-size: 1.05rem; }
  .nav a + a { border-top: 1px solid var(--line); }
  .nav-toggle { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-band { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero__badges { gap: 8px; }
}

@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
}


/* ==========================================================================
   LOGO DE MARCA (imagen)
   ========================================================================== */
.brand__img { height: 62px; width: auto; display: block; }
.brand__fallback { display: none; align-items: center; gap: 13px; }
.brand--footer { align-items: center; }
.brand--footer .brand__img { height: 56px; background: #fff; padding: 8px 12px; border-radius: 12px; }
.hero__logo { display: block; max-width: 210px; width: 100%; height: auto; margin: 0 auto 20px; }
.hero__logo-fallback { display: none; text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--navy); margin-bottom: 18px; letter-spacing: .5px; }
.hero__logo-fallback span { color: var(--accent); }
@media (max-width: 760px){
  .brand__img { height: 48px; }
  .brand--footer .brand__img { height: 50px; }
}


/* ==========================================================================
   NERON — OFERTA DESTACADA (inicio)
   ========================================================================== */
.neron-band {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; align-items: center;
  background:
    radial-gradient(680px 300px at 92% 8%, rgba(225,28,36,.28), transparent 60%),
    linear-gradient(135deg, #16365F 0%, #2F5C90 60%, #3F72AE 120%);
  border-radius: var(--radius-lg); padding: 50px; color: #E7F0F9; box-shadow: var(--shadow);
}
.neron-band h2 { color: #fff; margin-bottom: 12px; }
.neron-band .hl-red { color: #FF6B6B; }
.neron-band p { color: #C6D6E6; max-width: 560px; }
.neron-tag {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 7px 15px;
  border-radius: 100px; margin-bottom: 16px;
}
.neron-points { list-style: none; margin: 18px 0 26px; display: grid; gap: 11px; }
.neron-points li { display: flex; gap: 11px; align-items: flex-start; color: #DCE8F3; font-weight: 500; }
.neron-points svg { width: 21px; height: 21px; color: #FF8A8A; flex-shrink: 0; margin-top: 2px; }
.neron-band__visual { display: flex; justify-content: center; }
.neron-badge { background: #fff; border-radius: 20px; padding: 32px 26px; text-align: center; width: 100%; max-width: 250px; box-shadow: var(--shadow-lg); }
.neron-badge__ico { width: 72px; height: 72px; border-radius: 18px; background: var(--blue-light); color: var(--blue); display: grid; place-items: center; margin: 0 auto 14px; }
.neron-badge__ico svg { width: 38px; height: 38px; }
.neron-badge b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--navy); letter-spacing: 2px; line-height: 1; }
.neron-badge small { display: block; color: var(--muted); font-size: .86rem; margin-top: 6px; }
.neron-badge__note { display: inline-block; margin-top: 16px; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .85rem; padding: 7px 16px; border-radius: 100px; }
@media (max-width: 980px) { .neron-band { grid-template-columns: 1fr; gap: 30px; padding: 34px; } }


/* ==========================================================================
   BOTÓN NERON (temática negra) + LOGO/TPV en su apartado
   ========================================================================== */
.btn--neron { background: #141414; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.30); }
.btn--neron:hover { background: #000; color: #fff; transform: translateY(-2px); }
.btn--neron svg { width: 19px; height: 19px; }

/* Botón Neron destacado en el inicio (con logo) */
.btn--neron-hero { background:#000; gap:14px; padding:11px 24px 11px 14px; border-radius:16px; font-size:1.05rem; box-shadow:0 12px 28px rgba(0,0,0,.38); }
.btn--neron-hero:hover { background:#000; }
.btn--neron-hero .btn--neron__logo { height:44px; width:auto; display:block; border-radius:10px; }
.btn--neron-hero .btn--neron__txt { display:flex; flex-direction:column; align-items:flex-start; line-height:1.15; text-align:left; }
.btn--neron-hero .btn--neron__txt small { font-weight:500; font-size:.76rem; opacity:.72; margin-top:2px; }

.neron-showcase { display: flex; flex-direction: column; gap: 18px; }
.neron-logo-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.neron-logo-box img { max-width: 210px; height: auto; margin: 0 auto; display: block; }
.neron-logo-fallback { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; letter-spacing: 4px; color: #141414; }
.neron-tpv { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.neron-tpv img, .neron-tpv__illus { width: 100%; height: auto; display: block; }


/* ==========================================================================
   CATÁLOGO
   ========================================================================== */
.catalog-toolbar { display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; margin-bottom:32px; }
.catalog-filters { display:flex; flex-wrap:wrap; gap:8px; }
.filter-btn { font-family:var(--font-head); font-weight:500; font-size:.92rem; padding:9px 16px; border-radius:100px; border:1.5px solid var(--line); background:#fff; color:var(--ink); cursor:pointer; transition:background .2s ease,border-color .2s ease,color .2s ease; }
.filter-btn:hover { border-color:var(--blue); color:var(--blue); }
.filter-btn.active { background:var(--blue); border-color:var(--blue); color:#fff; }
.catalog-search { position:relative; }
.catalog-search svg { position:absolute; left:15px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--muted); }
.catalog-search input { padding:11px 18px 11px 42px; border:1.5px solid var(--line); border-radius:100px; font-family:var(--font-body); font-size:.95rem; color:var(--ink); background:var(--bg-soft); min-width:250px; }
.catalog-search input:focus { outline:none; border-color:var(--blue); background:#fff; box-shadow:0 0 0 3px rgba(22,104,179,.12); }

.product-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(248px, 1fr)); gap:24px; }
.product-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#d3e0ee; }
.product-card__img { aspect-ratio:4/3; background:var(--bg-soft); display:grid; place-items:center; position:relative; }
.product-card__img img { max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; padding:16px; box-sizing:border-box; }
.product-card__ph { color:var(--blue); opacity:.45; }
.product-card__ph svg { width:56px; height:56px; }
.product-card__tag { position:absolute; top:12px; left:12px; background:var(--accent); color:#fff; font-family:var(--font-head); font-weight:700; font-size:.7rem; letter-spacing:.6px; text-transform:uppercase; padding:4px 11px; border-radius:100px; }
.product-card__body { padding:18px 18px 20px; display:flex; flex-direction:column; flex:1; }
.product-card__cat { font-size:.74rem; color:var(--blue); font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.product-card__name { font-family:var(--font-head); font-weight:600; font-size:1.04rem; color:var(--ink); margin:0 0 12px; line-height:1.3; }
.product-card__specs { list-style:none; margin:0 0 16px; padding:0; font-size:.86rem; color:var(--muted); display:grid; gap:5px; }
.product-card__specs li { display:flex; gap:8px; align-items:flex-start; }
.product-card__specs svg { width:14px; height:14px; color:var(--accent); flex-shrink:0; margin-top:3px; }
.product-card__foot { margin-top:auto; display:flex; align-items:flex-end; justify-content:space-between; gap:10px; }
.product-card__price { font-family:var(--font-head); font-weight:800; font-size:1.32rem; color:var(--navy); line-height:1; }
.product-card__price small { display:block; font-size:.68rem; color:var(--muted); font-weight:500; margin-top:3px; letter-spacing:.3px; }
.btn--sm { padding:9px 16px; font-size:.86rem; }
.catalog-empty { grid-column:1 / -1; text-align:center; color:var(--muted); padding:46px 0; }

/* Ficha de producto (modal) */
.modal { position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; padding:20px; background:rgba(11,46,79,.55); }
.modal.open { display:flex; }
.modal__box { position:relative; background:#fff; border-radius:var(--radius-lg); max-width:700px; width:100%; max-height:90vh; overflow:auto; box-shadow:var(--shadow-lg); }
.modal__close { position:absolute; top:12px; right:12px; z-index:2; width:38px; height:38px; border-radius:50%; border:0; background:rgba(255,255,255,.92); color:var(--ink); cursor:pointer; display:grid; place-items:center; box-shadow:var(--shadow-sm); }
.modal__close svg { width:20px; height:20px; }
.modal__grid { display:grid; grid-template-columns:1fr 1fr; }
.modal__img { background:var(--bg-soft); display:grid; place-items:center; min-height:260px; position:relative; }
.modal__img img { width:100%; height:100%; object-fit:contain; padding:22px; }
.modal__info { padding:30px; }
.modal__info h3 { font-size:1.4rem; margin:4px 0 12px; }
.modal__desc { color:var(--muted); font-size:.96rem; }
.modal__specs { font-size:.92rem; margin-bottom:18px; }
.modal__price { font-family:var(--font-head); font-weight:800; font-size:1.7rem; color:var(--navy); margin-bottom:18px; }
.modal__price small { font-size:.78rem; color:var(--muted); font-weight:500; }
.modal__note { font-size:.82rem; color:var(--muted); margin-top:14px; }

@media (max-width:620px){
  .modal__grid { grid-template-columns:1fr; }
  .modal__img { min-height:200px; }
  .catalog-search, .catalog-search input { width:100%; min-width:0; }
}


/* Opción de instalación en la ficha del catálogo */
.opt-row{display:flex;gap:12px;align-items:flex-start;background:var(--bg-soft);border:1px solid var(--line);border-radius:12px;padding:13px 15px;margin:6px 0 16px;cursor:pointer;transition:border-color .2s ease;}
.opt-row:hover{border-color:var(--blue);}
.opt-row input{margin-top:2px;width:18px;height:18px;accent-color:var(--blue);flex-shrink:0;cursor:pointer;}
.opt-row__txt{font-size:.9rem;color:var(--ink);line-height:1.4;}
.opt-row__txt b{font-family:var(--font-head);font-weight:600;display:block;}
.opt-row__nota{display:block;color:var(--muted);font-size:.84rem;margin-top:2px;}
.opt-row__price{margin-left:auto;font-family:var(--font-head);font-weight:700;color:var(--accent-700);white-space:nowrap;}
.modal__total{display:flex;align-items:baseline;justify-content:space-between;border-top:1px solid var(--line);padding-top:14px;margin-bottom:18px;}
.modal__total > span{font-size:.95rem;color:var(--muted);font-family:var(--font-head);font-weight:600;}
.modal__total small{font-weight:400;}
.modal__total b{font-family:var(--font-head);font-weight:800;font-size:1.7rem;color:var(--navy);}


/* Catálogo: producto sin precio fijado */
.product-card__price--ask{font-family:var(--font-head);font-weight:700;font-size:1rem;color:var(--accent-700);}
.modal__ask{font-family:var(--font-head);font-weight:700;color:var(--accent-700);font-size:1.1rem;border-top:1px solid var(--line);padding-top:14px;margin-bottom:18px;}

/* Banner Neron grande en el inicio */
.btn--neron-banner { display:flex; align-items:center; gap:22px; width:100%; background:#000; color:#fff; padding:20px 30px; border-radius:20px; border:2px solid transparent; box-shadow:0 14px 32px rgba(0,0,0,.42); text-align:left; margin-top:8px; white-space:normal; }
.btn--neron-banner:hover { background:#000; color:#fff; transform:translateY(-2px); }
.btn--neron-banner .btn--neron__logo { height:74px; width:auto; border-radius:12px; flex-shrink:0; display:block; }
.btn--neron-banner .btn--neron__txt { display:flex; flex-direction:column; align-items:flex-start; line-height:1.2; white-space:normal; }
.btn--neron-banner .btn--neron__txt b { font-family:var(--font-head); font-weight:700; font-size:1.45rem; color:#fff; }
.btn--neron-banner .btn--neron__txt small { font-size:.98rem; opacity:.92; margin-top:6px; font-weight:500; color:#fff; }
.btn--neron-banner__fallback { font-family:var(--font-head); font-weight:800; font-size:1.9rem; letter-spacing:4px; color:#fff; }
@media (max-width:560px){ .btn--neron-banner { flex-direction:column; align-items:flex-start; } .btn--neron-banner .btn--neron__txt b { font-size:1.2rem; } }

/* ==========================================================================
   GALERÍA NERÓN — tarjetas de establecimientos
   ========================================================================== */
.places-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(320px, 1fr)); gap:26px; }
.place-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease; }
.place-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.place-card__cover { position:relative; aspect-ratio:16/9; background:var(--bg-soft); display:grid; place-items:center; overflow:hidden; }
.place-card__cover img { width:100%; height:100%; object-fit:cover; }
.place-ph { display:grid; place-items:center; text-align:center; color:var(--blue); opacity:.55; padding:14px; }
.place-ph svg { width:44px; height:44px; margin-bottom:6px; }
.place-ph small { font-size:.72rem; color:var(--muted); line-height:1.4; }
.place-card__tag { position:absolute; top:12px; left:12px; background:#000; color:#fff; font-family:var(--font-head); font-weight:700; font-size:.7rem; letter-spacing:.8px; text-transform:uppercase; padding:5px 12px; border-radius:100px; }
.place-card__body { padding:20px 22px 24px; display:flex; flex-direction:column; flex:1; }
.place-card__body h3 { margin-bottom:6px; }
.place-card__desc { color:var(--muted); font-size:.93rem; margin-bottom:14px; }
.place-card__meta { list-style:none; margin:0 0 18px; padding:0; display:grid; gap:8px; font-size:.9rem; }
.place-card__meta li { display:flex; gap:9px; align-items:flex-start; color:var(--text); }
.place-card__meta svg { width:16px; height:16px; color:var(--accent); flex-shrink:0; margin-top:3px; }
.place-card__meta a { word-break:break-all; }
.place-card__body .btn { margin-top:auto; justify-content:center; }

/* Visor de fotos del establecimiento */
.place-modal__inner { padding:30px; }
.place-modal__inner h3 { font-size:1.35rem; margin-bottom:6px; }
.place-modal__dir { color:var(--muted); font-size:.92rem; display:flex; align-items:center; gap:7px; flex-wrap:wrap; margin-bottom:20px; }
.place-modal__dir svg { width:15px; height:15px; color:var(--accent); }
.place-modal__grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr)); gap:14px; }
.place-modal__foto { margin:0; border-radius:12px; overflow:hidden; background:var(--bg-soft); aspect-ratio:4/3; display:grid; place-items:center; border:1px solid var(--line); }
.place-modal__foto img { width:100%; height:100%; object-fit:cover; }
#place-modal .modal__box { max-width:1100px; width:96vw; }

/* Aviso y lightbox de la galería Nerón */
.place-modal__hint { font-size:.85rem; color:var(--muted); margin:-8px 0 16px; }
.place-modal__foto { cursor:zoom-in; transition:transform .15s ease, box-shadow .15s ease; }
.place-modal__foto:hover { transform:scale(1.02); box-shadow:var(--shadow); }
.lightbox { position:fixed; inset:0; z-index:400; display:none; align-items:center; justify-content:center; background:rgba(8,14,22,.93); padding:48px 74px; }
.lightbox.open { display:flex; }
.lightbox__img { max-width:100%; max-height:100%; object-fit:contain; border-radius:8px; box-shadow:0 24px 70px rgba(0,0,0,.6); }
.lightbox__close { position:absolute; top:16px; right:16px; width:46px; height:46px; border:0; border-radius:50%; background:rgba(255,255,255,.14); color:#fff; cursor:pointer; display:grid; place-items:center; transition:background .2s ease; }
.lightbox__close:hover { background:rgba(255,255,255,.28); }
.lightbox__close svg { width:22px; height:22px; }
.lightbox__nav { position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border:0; border-radius:50%; background:rgba(255,255,255,.14); color:#fff; cursor:pointer; display:grid; place-items:center; transition:background .2s ease; }
.lightbox__nav:hover { background:rgba(255,255,255,.28); }
.lightbox__nav svg { width:26px; height:26px; }
.lightbox__prev { left:14px; }
.lightbox__next { right:14px; }
.lightbox__count { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); color:#fff; font-family:var(--font-head); font-weight:600; font-size:.95rem; background:rgba(255,255,255,.12); padding:6px 16px; border-radius:100px; }
@media (max-width:620px){ .lightbox { padding:60px 10px; } .lightbox__nav { width:42px; height:42px; } }

/* ==========================================================================
   FOLLETO DE OFERTAS
   ========================================================================== */
.folleto-band { display:grid; grid-template-columns:300px 1fr; gap:40px; align-items:center; background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px 40px; box-shadow:var(--shadow-sm); }
.folleto-band__cover { position:relative; display:block; border-radius:14px; overflow:hidden; box-shadow:var(--shadow); transform:rotate(-2deg); transition:transform .25s ease, box-shadow .25s ease; }
.folleto-band__cover:hover { transform:rotate(0deg) scale(1.03); box-shadow:var(--shadow-lg); }
.folleto-band__cover img { width:100%; height:auto; display:block; }
.folleto-band__zoom { position:absolute; right:12px; bottom:12px; width:42px; height:42px; border-radius:50%; background:var(--accent); color:#fff; display:grid; place-items:center; box-shadow:0 6px 16px rgba(225,28,36,.4); }
.folleto-band__zoom svg { width:20px; height:20px; }
.folleto-band__txt h2 { margin-bottom:10px; }
.folleto-band__txt p { color:var(--muted); max-width:560px; }
@media (max-width:760px){ .folleto-band { grid-template-columns:1fr; padding:26px 22px; } .folleto-band__cover { max-width:260px; margin:0 auto; } }

.folleto-viewer { margin-top:42px; }
.folleto-viewer iframe { width:100%; height:82vh; min-height:520px; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow); }
.folleto-viewer__nota { text-align:center; font-size:.88rem; color:var(--muted); margin-top:12px; }

/* Banda de acceso a la Galería Nerón (en neron.html) */
.neron-gal-band { display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; background:linear-gradient(120deg,#0c0f13,#1b2027); color:#fff; border-radius:var(--radius-lg); padding:44px 48px; box-shadow:0 18px 44px rgba(0,0,0,.35); transition:transform .2s ease, box-shadow .2s ease; }
.neron-gal-band:hover { transform:translateY(-3px); box-shadow:0 24px 54px rgba(0,0,0,.45); color:#fff; }
.neron-gal-band__txt h2 { color:#fff; margin-bottom:10px; }
.neron-gal-band__txt p { color:rgba(255,255,255,.82); max-width:560px; }
.neron-gal-band__txt .btn { margin-top:6px; }
.neron-gal-band__ico { color:rgba(255,255,255,.22); }
.neron-gal-band__ico svg { width:130px; height:130px; }
@media (max-width:700px){ .neron-gal-band { grid-template-columns:1fr; padding:32px 26px; } .neron-gal-band__ico { display:none; } }

/* Páginas legales */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--text); font-size: .98rem; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 1rem; display: grid; gap: 6px; }
.legal__updated { color: var(--muted); font-size: .88rem; margin-bottom: 26px; }
.footer-legal a { color: #B9CBDD; }
.footer-legal a:hover { color: #fff; }

/* Banda de soporte remoto anual (inicio) */
.remote-band { display:grid; grid-template-columns:auto 1fr; gap:36px; align-items:start; background:linear-gradient(120deg, var(--navy), #1f4a7e); color:#fff; border-radius:var(--radius-lg); padding:44px 48px; box-shadow:var(--shadow-lg); }
.remote-band__ico { width:86px; height:86px; border-radius:22px; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; color:#fff; }
.remote-band__ico svg { width:44px; height:44px; }
.remote-band__txt h2 { color:#fff; margin-bottom:10px; }
.remote-band__txt p { color:rgba(255,255,255,.88); max-width:640px; }
.remote-band__txt .eyebrow { color:#FF8A8A; }
.remote-band__list { list-style:none; margin:0 0 22px; padding:0; display:grid; gap:8px; }
.remote-band__list li { display:flex; gap:10px; align-items:flex-start; color:#fff; font-size:.97rem; }
.remote-band__list svg { width:18px; height:18px; color:#7ee2a0; flex-shrink:0; margin-top:3px; }
@media (max-width:700px){ .remote-band { grid-template-columns:1fr; padding:30px 24px; } }

/* Mantenimiento anual Nerón — banda azul marino con detalles rojos */
.mnt-neron {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(225,28,36,.20), transparent 60%),
    radial-gradient(700px 380px at 8% 110%, rgba(225,28,36,.10), transparent 55%),
    linear-gradient(160deg, #16365F, #0F2A4E 55%, #132F56);
}
.mnt-neron .eyebrow { color: #FF8A8A; }
.mnt-neron h2 { color: #fff; }
.mnt-neron .lead { color: #C6D6E6; }
.mnt-neron .card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-top: 3px solid var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.mnt-neron .card:hover { background: rgba(255,255,255,.09); }
.mnt-neron .card h3 { color: #fff; }
.mnt-neron .card p { color: rgba(255,255,255,.82); }
.mnt-neron .card__icon { background: rgba(225,28,36,.20); color: #FF8A8A; }
.mnt-neron .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.mnt-neron .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.10); }

/* Banda azul marino reutilizable con detalles rojos (alterna secciones) */
.section--deep {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(225,28,36,.20), transparent 60%),
    radial-gradient(700px 380px at 8% 110%, rgba(225,28,36,.10), transparent 55%),
    linear-gradient(160deg, #16365F, #0F2A4E 55%, #132F56);
}
.section--deep .eyebrow { color: #FF8A8A; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep .lead, .section--deep p { color: rgba(255,255,255,.84); }
.section--deep .card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-top: 3px solid var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.section--deep .card:hover { background: rgba(255,255,255,.09); }
.section--deep .card p { color: rgba(255,255,255,.82); }
.section--deep .card__icon { background: rgba(225,28,36,.20); color: #FF8A8A; }
.section--deep .checklist svg { color: #7ee2a0; }
.section--deep .checklist span, .section--deep .checklist b { color: #fff; }
.section--deep .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.section--deep .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.10); }
.section--deep a:not(.btn) { color: #9EC3EC; }
.section--deep a:not(.btn):hover { color: #fff; }
.section--deep .media-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.section--deep .media-box h3 { color: #fff; }
.section--deep .media-box p { color: rgba(255,255,255,.82); }
.section--deep .stat b { color: #fff; }
.section--deep .stat span { color: rgba(255,255,255,.72); }
.section--deep .place-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-top: 3px solid var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.section--deep .place-card:hover { background: rgba(255,255,255,.09); box-shadow: 0 16px 38px rgba(0,0,0,.32); }
.section--deep .place-card__cover { background: rgba(255,255,255,.05); }
.section--deep .place-card__body h3 { color: #fff; }
.section--deep .place-card__desc { color: rgba(255,255,255,.80); }
.section--deep .place-card__meta li { color: rgba(255,255,255,.88); }
.section--deep .place-ph { color: #9EC3EC; opacity: .85; }
.section--deep .place-ph small { color: rgba(255,255,255,.62); }

