:root {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --social-icon-size: 34px;
  --social-icon-tap: 50px;
  --crema: #FCF5F5;
  --terracota: #B55B69;
  --terracota-suave: #E6B3BB;
  --verde: #A37B82;
  --marron: #4A1525;
  --marron-suave: #8C5A66;
  --rosa: #FCEEEF;
  --border-color: #E8E0D5;
  --site-header-height: 9.75rem;
  --header-gap: 1.25rem;
  --section-gap: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + var(--header-gap));
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--crema);
  color: var(--marron);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--terracota);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.page-view.active {
  display: block;
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: rgba(252, 245, 245, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 6px 28px rgba(74, 21, 37, 0.1);
}

main {
  padding-top: calc(var(--site-header-height) + var(--header-gap));
}

main > .page-view {
  min-height: calc(100vh - var(--site-header-height) - var(--header-gap));
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border-color);
}

.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.85rem, 10vw, 5.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--marron);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  display: inline-block;
  flex: 1 1 auto;
  min-width: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.nav-logo span {
  color: var(--terracota);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--marron);
  transition: transform 0.25s, opacity 0.25s;
}

.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);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--marron);
  transition: color 0.25s;
  cursor: pointer;
  font-weight: 700;
  background: none;
  border: none;
  font-family: inherit;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

.nav-links a:hover,
.nav-links a.active-link,
.nav-links button:hover,
.nav-links button.active-link {
  color: var(--terracota);
  font-weight: 700;
}

.nav-label-mobile {
  display: none;
}

.nav-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: max-content;
}

.nav-icon {
  width: var(--social-icon-tap);
  height: var(--social-icon-tap);
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-icon:hover { transform: scale(1.15); }

.nav-icon img {
  width: var(--social-icon-size);
  height: var(--social-icon-size);
  object-fit: contain;
  display: block;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 3rem 3rem 3.5rem;
  position: relative;
  background: var(--crema);
}

.hero--intro {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

/* Primera sección tras la cabecera: aire extra */
#page-inicio > .hero--intro:first-child {
  padding-top: 0.75rem;
}

.hero--secondary {
  padding-top: 3.5rem;
}

.hero-tag,
.section-tag {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--terracota);
  padding-bottom: 0.3rem;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 7vw, 5.15rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--marron);
  margin-bottom: 1.5rem;
}

.hero-title em { color: var(--terracota); }

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--marron-suave);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--terracota);
  color: white;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  border-radius: 6px;
}

.btn-primary:hover {
  background: var(--marron);
  transform: translateY(-2px);
}

.btn-primary.btn-outline {
  background: transparent;
  border: 2px solid var(--terracota);
  color: var(--terracota);
}

.btn-primary.btn-outline:hover {
  background: var(--terracota);
  color: white;
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 3.5rem 3rem;
  background: var(--crema);
}

.section--soft {
  background: var(--crema);
}

.section-header { text-align: center; margin-bottom: 3rem; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.5vw, 3.65rem);
  font-weight: 600;
  font-style: italic;
  color: var(--marron);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.heading-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--marron);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.heading-display em { color: var(--terracota); font-style: italic; }

.heading-display--md { font-size: clamp(1.85rem, 3.5vw, 2.45rem); }

.heading-display--lg { font-size: clamp(2.2rem, 4vw, 2.85rem); }

.heading-display--center { text-align: center; }

.section-title em { color: var(--terracota); }

.section-intro {
  color: var(--marron-suave);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
}

/* Separadores: mismo fondo crema, sin barras; sprites en color original */
.separador {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.6rem 1rem;
  margin: 0;
  box-sizing: border-box;
  background: var(--crema);
  border: none;
}

.separador img {
  display: block;
  max-width: min(360px, 88vw);
  height: auto;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.proceso-bg { background: var(--crema); padding: 2.5rem 3rem !important; }

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.paso {
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
  border-radius: 12px;
}

.paso:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.paso img {
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}

.paso-titulo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--marron);
  margin-bottom: 0.4rem;
}

.paso-desc {
  font-size: 0.95rem;
  color: var(--marron-suave);
  line-height: 1.6;
  font-weight: 500;
}

/* El main ya compensa la cabecera fija; esto añade un respiro al cambiar de página */
.page-padding {
  padding-top: 1.5rem;
}

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

.producto-card {
  position: relative;
  overflow: hidden;
  background: var(--crema);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.producto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.producto-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--crema);
}

.producto-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: white;
}

.producto-info { padding: 1.55rem 1.5rem 1.25rem; text-align: center; }

.producto-nombre {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.2rem;
}

.producto-precio {
  font-size: 0.8rem;
  color: var(--marron-suave);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.producto-btn {
  background: transparent;
  border: 1px solid;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 700;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
}

.pack-etiqueta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.pack-frase {
  font-style: italic;
  color: var(--marron-suave);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 40px;
}

.pack-lista {
  text-align: left;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--marron);
  background: #fcf5f5;
  padding: 1rem;
  border: 1px solid;
  border-radius: 4px;
}

.pack-lista strong {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.pack-lista ul { list-style: none; padding: 0; margin: 0; }

.pack-lista li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.2rem;
}

.pack-lista li::before {
  content: '♥';
  color: var(--pack-accent, var(--terracota-suave));
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.sobre-marca-img {
  display: block;
  max-width: min(100%, 380px);
  width: auto;
  height: auto;
  max-height: min(400px, 52vh);
  margin: 0 auto;
  object-fit: contain;
}

.sobre-hero__title {
  margin-bottom: 1.25rem;
}

.sobre-hero .sobre-texto {
  max-width: 520px;
}

.sobre-texto {
  font-size: 1.05rem;
  color: var(--marron-suave);
  line-height: 1.85;
  font-weight: 500;
}

.sobre-texto p + p { margin-top: 1rem; }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonio-card {
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--crema);
}

.testimonio-texto {
  font-style: italic;
  color: var(--marron);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonio-autor {
  font-weight: 700;
  color: var(--terracota);
  font-size: 0.85rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child { border-top: 1px solid var(--border-color); }

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--marron);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--terracota);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--marron-suave);
  line-height: 1.7;
  font-weight: 500;
  font-size: 0.95rem;
}

.contacto-section {
  background: var(--crema);
  padding: 6rem 3rem;
  text-align: center;
  color: var(--marron);
}

.contacto-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--marron);
}

.contacto-title em { color: var(--terracota); }

.contacto-desc {
  color: var(--marron-suave);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 500;
}

.contacto-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contacto-actions .btn-primary {
  background: var(--marron);
  border: 2px solid var(--marron);
  color: #fff;
}

.contacto-actions .btn-primary:hover {
  background: var(--terracota);
  border-color: var(--terracota);
  color: #fff;
}

.contacto-actions .btn-primary:focus-visible {
  outline: 2px solid var(--terracota);
  outline-offset: 3px;
}

footer {
  background: #1f080f;
  color: rgba(252, 245, 245, 0.55);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  font-size: 0.9rem;
}

footer a { transition: opacity 0.2s; color: inherit; }

footer a:hover { opacity: 0.8; }

.footer-copy {
  max-width: 36rem;
}

.footer-copy p {
  margin: 0;
  line-height: 1.55;
}

.footer-copy p + p {
  margin-top: 0.65rem;
}

.footer-copyright {
  color: rgba(252, 245, 245, 0.72);
  font-weight: 500;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.footer-social > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--social-icon-tap);
  height: var(--social-icon-tap);
  flex-shrink: 0;
}

.footer-social img {
  width: var(--social-icon-size);
  height: var(--social-icon-size);
  object-fit: contain;
  display: block;
}

.footer-legal {
  font-size: 0.82rem;
  color: rgba(252, 245, 245, 0.5);
}

.footer-legal a { text-decoration: underline; }

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-container {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--crema);
}

.carousel-track {
  display: flex;
  gap: 1rem;
  animation: scroll-left 40s linear infinite;
  padding: 0 3rem;
  width: max-content;
}

.carousel-track:hover { animation-play-state: paused; }

.carousel-item {
  flex: 0 0 200px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item:hover { transform: scale(1.02); }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track { animation: none; }
  .page-view { transition: none; }
}

.modal-contacto {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-contacto.is-open { display: flex; }

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 450px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--marron);
  transition: color 0.2s;
  width: 40px;
  height: 40px;
}

.modal-close:hover { color: var(--terracota); }

.modal-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--marron-suave);
  line-height: 1.55;
  margin: 0 auto 1.35rem;
  max-width: 24rem;
}

.modal-intro a {
  color: var(--terracota);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-intro a:hover { color: var(--marron); }

abbr.req,
span.req {
  color: var(--terracota);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: help;
  margin-left: 0.05em;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--marron);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracota);
  box-shadow: 0 0 8px rgba(181, 91, 105, 0.2);
}

.form-group textarea { resize: vertical; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}

.form-status.is-ok { color: #2d6a4f; }
.form-status.is-error { color: #c1121f; }

.servicio-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servicio-title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--marron);
  margin-bottom: 0.5rem;
}

.servicio-subtitle {
  color: var(--terracota);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.servicio-desc { color: var(--marron-suave); line-height: 1.7; }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.encargos-hero {
  padding: 3rem;
  text-align: center;
}

.encargos-hero h2.encargos-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--marron);
  margin-bottom: 1.5rem;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.encargos-hero h2.encargos-hero__title em { color: var(--terracota); font-style: italic; }

.encargos-hero p {
  font-size: 1rem;
  color: var(--marron-suave);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 500;
}

.encargos-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.galeria-flores__title {
  margin-bottom: 0.35rem;
}

.galeria-flores__carousel {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.instagram-cta {
  text-align: center;
  margin-top: 2rem;
}

.instagram-cta--below {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--marron-suave);
  font-weight: 500;
}

.instagram-cta a {
  color: var(--terracota);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--terracota);
}

.instagram-cta a:hover { color: var(--marron); }

@media (max-width: 900px) {
  .nav-header {
    padding: 0.65rem 1rem 0.55rem;
    gap: 0.45rem;
    align-items: center;
  }

  .nav-logo {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    line-height: 0.92;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-icons {
    gap: 0.15rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .nav-icons .nav-icon[data-email] { display: none; }

  .nav-icons .nav-icon[data-wa] { display: none; }

  .nav-icons .nav-icon.nav-icon--desktop { display: flex; }

  .nav-icon {
    width: 36px;
    height: 36px;
  }

  .nav-icon img,
  .nav-icon[data-social="instagram"] img,
  .nav-icon[data-social="tiktok"] img {
    width: 26px;
    height: 26px;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.75rem 0.48rem;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    gap: 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 2.3rem repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .nav-links li {
    width: 100%;
    min-width: 0;
  }

  .nav-links a,
  .nav-links button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 0.36rem 0.18rem;
    border-bottom: none;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(0.68rem, 2.9vw, 0.82rem);
    letter-spacing: 0.035em;
  }

  #link-inicio {
    justify-content: flex-start;
    padding-left: 0;
  }

  .nav-label-desktop { display: none; }

  .nav-label-mobile { display: inline; }

  .nav-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 20px;
    height: 20px;
    margin-left: 0;
  }

  .nav-home-icon img {
    display: block;
    width: 19px;
    height: 19px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(43%) sepia(19%) saturate(1059%) hue-rotate(299deg) brightness(90%) contrast(88%);
    opacity: 0.92;
  }

  :root {
    --header-gap: 0.35rem;
  }

  .hero { grid-template-columns: 1fr; padding: 1.15rem 1.5rem 3rem; }
  #page-inicio > .hero--intro:first-child {
    padding-top: 0.25rem;
  }
  .hero .btn-primary,
  .section .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 280px);
    text-align: center;
  }
  .separador { padding: 0.5rem 0.75rem; }
  .separador img { max-height: 36px; }
  .hero-visual { order: -1; }
  .proceso-grid { grid-template-columns: 1fr; }
  .section { padding: 2rem 1.5rem; }
  .contacto-section { padding: 4rem 1.5rem; }
  footer {
    padding-bottom: 6.25rem;
  }
  .footer-social {
    padding-bottom: 0.75rem;
  }
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 600px) {
  .modal-content { padding: 1.5rem; max-width: 100%; }
}
