/* =====================================================
   JULCRISA · Estilos — Archetype 01 Editorial Cream
   ===================================================== */

/* ---- Variables ---- */
:root {
  --bg:        #f4efe6;
  --bg-2:      #e8dfd0;
  --paper:     #ffffff;
  --ink:       #1a1a1a;
  --ink-soft:  #2a2a2a;
  --ink-mute:  #6b6b6b;
  --accent:    #b85c3a;
  --accent-2:  #4a5d3a;
  --line:      rgba(26,26,26,0.12);
  --nav-h:     72px;
  --r:         12px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
select, input, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  width: 100%;
}

/* ---- Typography ---- */
.fraunces {
  font-family: 'Fraunces', Georgia, serif;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}
h1 em, h2 em { font-style: italic; color: var(--accent); }

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  background: transparent;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.nav.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #cc1010;
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cc1010;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  transition: color 0.2s, transform 0.25s var(--ease-out);
}
.nav-link:hover {
  color: #8b0000;
  transform: scale(1.18);
}
.nav-link::after { display: none; }

.nav-link-cta {
  padding: 0.45rem 1.1rem;
  background: var(--accent);
  color: var(--paper) !important;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: #9a4b2e; transform: scale(1.12); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(244,239,230,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.25rem, 5vw, 3rem);
    gap: 1.5rem;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-link { font-size: 1.1rem; }
  .nav-link-cta { padding: 0.6rem 1.4rem; }
  .nav-burger { display: flex; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform-origin: center;
  transition: transform 8s ease-out;
}
.hero-bg.is-loaded .hero-img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,0.72) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.30) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 5vw, 3rem) 6rem;
  max-width: 700px;
  margin-inline-start: max(3rem, 8vw);
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244,239,230,0.7);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #f4efe6;
  text-wrap: balance;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero-title em {
  color: #e8c4a0;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(244,239,230,0.82);
  max-width: 45ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(244,239,230,0.3);
  border-radius: 100px;
  color: rgba(244,239,230,0.85);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(244,239,230,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #9a4b2e; }

.btn-ghost {
  border: 1.5px solid rgba(244,239,230,0.5);
  color: rgba(244,239,230,0.9);
}
.btn-ghost:hover {
  border-color: rgba(244,239,230,0.9);
  color: #fff;
}

.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-strip {
  background: var(--ink);
  color: var(--bg);
  padding: 0.9rem 0;
  overflow: hidden;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .dot { color: var(--accent); opacity: 0.6; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   SECTIONS — shared
   ===================================================== */
.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-desc {
  color: var(--ink-mute);
  font-size: 1rem;
  max-width: 46ch;
  margin-inline: auto;
}

/* =====================================================
   SERVICIOS
   ===================================================== */
.section-servicios {
  background: var(--bg);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.servicio-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s;
  cursor: default;
}
.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(184,92,58,0.1), 0 4px 8px rgba(0,0,0,0.06);
  border-color: rgba(184,92,58,0.25);
}

.servicio-icono {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.servicio-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.servicio-card p {
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.65;
}

/* =====================================================
   NOSOTROS
   ===================================================== */
.section-nosotros {
  background: var(--bg-2);
}

.nosotros-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.nosotros-foto {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.nosotros-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.nosotros-foto:hover img { transform: scale(1.04); }

.nosotros-foto-tag {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.3;
}
.tag-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.nosotros-texto .section-label { text-align: left; }
.nosotros-texto .section-title { text-align: left; margin-bottom: 1.5rem; }

.nosotros-p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 48ch;
}

.nosotros-datos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.dato {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.dato-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
}
.dato span {
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.dato strong {
  font-weight: 500;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .nosotros-layout { grid-template-columns: 1fr; }
  .nosotros-foto { aspect-ratio: 16/9; }
}

/* =====================================================
   GALERÍA
   ===================================================== */
.section-galeria { background: var(--bg); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1160px;
  margin-inline: auto;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.galeria-item {
  overflow: hidden;
  border-radius: var(--r);
  margin: 0;
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.galeria-item:hover img { transform: scale(1.06); }

/* Row 1: wide (7) + normal (5) */
.galeria-item--wide { grid-column: span 7; aspect-ratio: 16/9; }
.galeria-item:not(.galeria-item--wide):not(.galeria-item--portrait):not(.galeria-item--landscape) { grid-column: span 5; aspect-ratio: 4/3; }

/* Default */
.galeria-item { aspect-ratio: 4/3; }

/* Portrait items (caldera photos) — 3 per row */
.galeria-item--portrait { grid-column: span 4; aspect-ratio: 3/4; }

/* Landscape stock photos */
.galeria-item--landscape { grid-column: span 8; aspect-ratio: 16/9; }

@media (max-width: 900px) {
  .galeria-item--portrait { grid-column: span 6; aspect-ratio: 3/4; }
  .galeria-item--landscape { grid-column: span 12; aspect-ratio: 16/9; }
}
@media (max-width: 767px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .galeria-item,
  .galeria-item--wide,
  .galeria-item--portrait,
  .galeria-item--landscape {
    grid-column: span 1;
    aspect-ratio: 1;
  }
}

/* =====================================================
   CONVENIOS
   ===================================================== */
.section-convenios {
  background: var(--bg-2);
}

.convenios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.convenio-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.convenio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.07);
}
.convenio-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-bottom: 1.25rem;
}
.convenio-card p {
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* =====================================================
   CONTACTO
   ===================================================== */
.section-contacto {
  background: var(--bg);
}

.contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contacto-info .section-label { text-align: left; }
.contacto-info .section-title { text-align: left; margin-bottom: 1rem; }
.contacto-p {
  color: var(--ink-mute);
  margin-bottom: 2rem;
  max-width: 40ch;
}

.contacto-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacto-lista li a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.contacto-lista li a:hover { color: var(--accent); }
.ci-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 0.05em; }

/* Form */
.contacto-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.5rem;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,92,58,0.12);
  outline: none;
}
.form-group input.is-invalid,
.form-group select.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group select {
  appearance: none;
  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='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-form {
  position: relative;
  width: 100%;
  justify-content: center;
  padding: 0.875rem;
  font-size: 0.95rem;
}
.btn-loading, .btn-done { display: none; }
.contacto-form.is-sending .btn-text { display: none; }
.contacto-form.is-sending .btn-loading { display: block; }
.contacto-form.is-sent .btn-text { display: none; }
.contacto-form.is-sent .btn-done { display: block; }
.contacto-form.is-sent button { background: var(--accent-2); pointer-events: none; }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: center;
  opacity: 0.7;
  margin-top: -0.5rem;
}

@media (max-width: 767px) {
  .contacto-layout { grid-template-columns: 1fr; }
  .contacto-form-wrap { padding: 1.75rem 1.25rem; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  color: rgba(244,239,230,0.75);
  padding-block: 3rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244,239,230,0.1);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #f4efe6;
}
.footer-brand p {
  font-size: 0.82rem;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(244,239,230,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #f4efe6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.5;
}
.footer-bottom a { transition: opacity 0.2s; }

/* =====================================================
   ELECTRODOMÉSTICOS
   ===================================================== */
.section-electro { background: var(--bg-2); }

.electro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .electro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .electro-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } }

.electro-card {
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.electro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.electro-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ece4;
}
.electro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.electro-card:hover .electro-img img { transform: scale(1.06); }

.electro-label {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.electro-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

/* =====================================================
   CALDERAS
   ===================================================== */
.section-calderas {
  background: var(--ink);
  color: #f4efe6;
}
.section-calderas .section-label { color: var(--accent); opacity: 1; }
.section-calderas .section-title { color: #f4efe6; }
.section-calderas .section-title em { color: var(--accent); font-style: italic; }

.calderas-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 800px) {
  .calderas-layout { grid-template-columns: 1fr; }
}

.calderas-foto {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 580px;
}
.calderas-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.calderas-p {
  color: rgba(244,239,230,0.82);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.calderas-p strong { color: #f4efe6; }

.calderas-puntos {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.8rem 0 2rem;
  padding: 1.6rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.1);
}
.caldera-punto {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cp-icono {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.caldera-punto div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.caldera-punto strong {
  color: #f4efe6;
  font-size: 0.95rem;
  font-weight: 600;
}
.caldera-punto span {
  color: rgba(244,239,230,0.65);
  font-size: 0.85rem;
  line-height: 1.4;
}

.calderas-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- v2: Nav SVG logo ---- */
.nav-logo { display: flex; align-items: center; }
.nav-logo-svg { display: block; }

/* ---- v2: Footer SVG logo ---- */
.footer-logo-svg { display: block; }

/* ---- v2: Galería captions ---- */
.galeria-item { position: relative; overflow: hidden; }
.galeria-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.55rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.galeria-item:hover .galeria-caption {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .galeria-caption { opacity: 1; transform: none; }
}

/* ---- v2: Nav logo sizing ---- */
.nav-logo-svg { height: 40px; width: auto; }
.footer-bottom a:hover { opacity: 1; }
