/* ============================================================
   Florería Del Prado — Hoja de estilos
   Modo claro · Diseño fluido con clamp/grid
   Media queries SOLO para layout responsive (nunca estéticas)
   Animaciones solo con transform/opacity para alto rendimiento
   ============================================================ */

:root {
  --rosa: #ec4899;
  --rosa-oscuro: #be185d;
  --rosa-suave: #fdf2f8;
  --rosa-medio: #fbcfe8;
  --verde: #15803d;
  --verde-suave: #f0fdf4;
  --ambar: #f59e0b;
  --tinta: #1f2937;
  --tinta-suave: #6b7280;
  --fondo: #ffffff;
  --fondo-alt: #fdf7fa;
  --borde: #eacfdc;
  --sombra: 0 4px 24px rgba(219, 39, 119, 0.10);
  --sombra-hover: 0 16px 40px rgba(219, 39, 119, 0.18);
  --radio: 18px;
  --transicion: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--fondo);
  color: var(--tinta);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
  transition: box-shadow var(--transicion);
}

.header.scrolled {
  box-shadow: var(--sombra);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 3vw, 2rem);
  flex-wrap: wrap;
  padding-block: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--tinta);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: transform var(--transicion);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--rosa);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover .logo-icon {
  transform: rotate(90deg) scale(1.1);
}

.logo strong {
  color: var(--rosa-oscuro);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.5vw, 0.75rem);
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--tinta-suave);
  font-weight: 500;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color var(--transicion), background-color var(--transicion);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: 0;
  height: 2px;
  background: var(--rosa);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transicion);
}

.nav-link:hover {
  color: var(--rosa-oscuro);
}

.nav-link:hover::after {
  width: 55%;
}

.nav-cta {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
  transition: background-color var(--transicion), transform var(--transicion), box-shadow var(--transicion);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--rosa-oscuro);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.45);
}

/* ============ BOTONES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transicion), box-shadow var(--transicion), background-color var(--transicion), color var(--transicion);
}

.btn svg {
  transition: transform var(--transicion);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rosa), var(--rosa-oscuro));
  color: #fff;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--rosa-oscuro);
  box-shadow: inset 0 0 0 2px var(--rosa-medio);
}

.btn-ghost:hover {
  background: var(--rosa-suave);
  box-shadow: inset 0 0 0 2px var(--rosa);
  transform: translateY(-3px);
}

.btn-small {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  background: var(--rosa-suave);
  color: var(--rosa-oscuro);
  box-shadow: inset 0 0 0 1.5px var(--rosa-medio);
}

.btn-small:hover {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-block: clamp(8rem, 16vw, 11rem) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: flotar 9s ease-in-out infinite alternate;
}

.blob-1 {
  width: clamp(220px, 34vw, 420px);
  height: clamp(220px, 34vw, 420px);
  background: #fbcfe8;
  top: -8%;
  right: -5%;
}

.blob-2 {
  width: clamp(180px, 26vw, 320px);
  height: clamp(180px, 26vw, 320px);
  background: #fef3c7;
  bottom: -12%;
  left: -6%;
  animation-delay: -3s;
}

.blob-3 {
  width: clamp(140px, 20vw, 240px);
  height: clamp(140px, 20vw, 240px);
  background: #dcfce7;
  top: 38%;
  left: 42%;
  animation-delay: -6s;
}

@keyframes flotar {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(24px, -28px, 0) scale(1.08); }
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 420px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--verde-suave);
  color: var(--verde);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #bbf7d0;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-block: 1.1rem 1rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.highlight {
  position: relative;
  color: var(--rosa-oscuro);
  white-space: nowrap;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.32em;
  background: var(--rosa-medio);
  border-radius: 4px;
  z-index: -1;
  transform-origin: left;
  animation: subrayar 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes subrayar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-text {
  color: var(--tinta-suave);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 34rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-block: 1.8rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.hero-stats {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  flex-wrap: wrap;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--rosa-oscuro);
  font-variant-numeric: tabular-nums;
}

.stat-number::after {
  content: "+";
  color: var(--rosa);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--tinta-suave);
}

@keyframes aparecer {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* --- Tarjeta flor del hero --- */
.hero-visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.flower-card {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: calc(var(--radio) + 8px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--sombra-hover);
  animation: aparecer 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both, flotarCard 6s ease-in-out 1.2s infinite alternate;
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.flower-card:hover {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
}

@keyframes flotarCard {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -14px, 0); }
}

.flower-photo {
  width: clamp(200px, 27vw, 290px);
  height: auto;
  aspect-ratio: 520 / 693;
  object-fit: cover;
  display: block;
  border-radius: var(--radio);
}

.flower-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--rosa-medio);
}

.flower-card-title {
  font-weight: 700;
}

.flower-card-price {
  color: var(--rosa-oscuro);
  font-weight: 800;
}

/* ============ SECCIONES ============ */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-alt {
  background: var(--fondo-alt);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-tag {
  display: inline-block;
  background: var(--rosa-suave);
  color: var(--rosa-oscuro);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.section-text {
  color: var(--tinta-suave);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* --- Animación de aparición al hacer scroll --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ============ CATÁLOGO ============ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.product-card {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform var(--transicion), box-shadow var(--transicion), border-color var(--transicion), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-hover);
  border-color: var(--rosa-medio);
}

.product-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transicion);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}

.product-card:hover .product-img::before {
  transform: translateX(100%);
}

.product-img-1 { background: linear-gradient(135deg, #f472b6, #db2777); }
.product-img-2 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.product-img-3 { background: linear-gradient(135deg, #c084fc, #9333ea); }
.product-img-4 { background: linear-gradient(135deg, #fb7185, #e11d48); }
.product-img-5 { background: linear-gradient(135deg, #4ade80, #16a34a); }
.product-img-6 { background: linear-gradient(135deg, #38bdf8, #0284c7); }

.product-body {
  padding: 1.4rem;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.product-text {
  color: var(--tinta-suave);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-price {
  font-weight: 800;
  color: var(--rosa-oscuro);
  font-size: 1.05rem;
}

/* ============ SERVICIOS ============ */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.feature {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--sombra);
  transition: transform var(--transicion), box-shadow var(--transicion), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--sombra-hover);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  background: var(--rosa-suave);
  color: var(--rosa-oscuro);
  border-radius: 20px;
  transition: transform var(--transicion), background-color var(--transicion), color var(--transicion), border-radius var(--transicion);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature:hover .feature-icon {
  background: var(--rosa);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
  border-radius: 50%;
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--tinta-suave);
  font-size: 0.92rem;
}

/* ============ NOSOTROS ============ */
.about-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}

.about-visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.about-shape {
  width: clamp(240px, 34vw, 360px);
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--rosa-suave), var(--rosa-medio));
  border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%;
  overflow: hidden;
  box-shadow: var(--sombra-hover);
  animation: morfar 10s ease-in-out infinite alternate;
  transition: transform var(--transicion);
}

.about-shape:hover {
  transform: scale(1.04) rotate(2deg);
}

.about-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transicion);
}

.about-shape:hover img {
  transform: scale(1.08);
}

@keyframes morfar {
  from { border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%; }
  50%  { border-radius: 58% 42% 40% 60% / 55% 58% 42% 45%; }
  to   { border-radius: 45% 55% 52% 48% / 48% 50% 50% 52%; }
}

.about-content {
  flex: 1 1 420px;
  min-width: 0;
}

.about-content .section-title,
.about-content .section-text {
  text-align: left;
}

.about-list {
  list-style: none;
  margin-block: 1.4rem 1.8rem;
  display: grid;
  gap: 0.75rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  transition: transform var(--transicion);
}

.about-list li:hover {
  transform: translateX(6px);
}

.about-list svg {
  color: var(--verde);
  background: var(--verde-suave);
  border-radius: 50%;
  padding: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
}

/* ============ CONTACTO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--sombra);
  transition: transform var(--transicion), box-shadow var(--transicion), border-color var(--transicion), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-item:hover {
  transform: translateX(8px);
  border-color: var(--rosa-medio);
  box-shadow: var(--sombra-hover);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--rosa-suave);
  color: var(--rosa-oscuro);
  border-radius: 14px;
  transition: background-color var(--transicion), color var(--transicion), transform var(--transicion);
}

.contact-item:hover .contact-icon {
  background: var(--rosa);
  color: #fff;
  transform: scale(1.08);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tinta-suave);
  font-weight: 600;
}

.contact-value {
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* --- Formulario --- */
.contact-form {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--sombra);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--tinta);
  background: var(--fondo-alt);
  border: 1.5px solid var(--borde);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  resize: vertical;
  transition: border-color var(--transicion), box-shadow var(--transicion), background-color var(--transicion);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8a8b0;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--rosa-medio);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--rosa);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--tinta-suave);
  text-align: center;
}

/* ============ FOOTER ============ */
.footer {
  background: #fff8fb;
  border-top: 1px solid var(--borde);
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.logo-footer {
  margin-bottom: 0.4rem;
}

.footer-text {
  color: var(--tinta-suave);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--rosa-suave);
  color: var(--rosa-oscuro);
  transition: background-color var(--transicion), color var(--transicion), transform var(--transicion), box-shadow var(--transicion);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--rosa);
  color: #fff;
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 8px 18px rgba(236, 72, 153, 0.35);
}

.footer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tinta);
  margin-bottom: 0.3rem;
}

.footer-link {
  color: var(--tinta-suave);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transicion), transform var(--transicion);
}

a.footer-link:hover {
  color: var(--rosa-oscuro);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--borde);
  padding-block: 1.2rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--tinta-suave);
}

.footer-by strong {
  color: var(--rosa-oscuro);
}

/* ============ PÁGINAS LEGALES ============ */
.legal-main {
  padding-block: clamp(8rem, 15vw, 10rem) clamp(3rem, 7vw, 5rem);
}

.legal-container {
  width: min(760px, 92%);
  margin-inline: auto;
}

.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: var(--radio);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.2rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.legal-notice svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
}

.legal-title {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.legal-updated {
  color: var(--tinta-suave);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.legal-section {
  margin-bottom: 2rem;
  animation: aparecer 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--rosa);
  border-radius: 2px;
}

.legal-section p,
.legal-section li {
  color: var(--tinta-suave);
  font-size: 0.98rem;
}

.legal-section ul {
  padding-left: 1.3rem;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--rosa-oscuro);
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transicion), color var(--transicion);
}

.legal-back svg {
  transition: transform var(--transicion);
}

.legal-back:hover {
  color: var(--rosa);
}

.legal-back:hover svg {
  transform: translateX(-4px);
}

/* ============================================================
   RESPONSIVE — solo ajustes de layout (nada estético)
   ============================================================ */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 132px;
  }

  .header-inner {
    justify-content: center;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    padding-top: 11.5rem;
  }

  .legal-main {
    padding-top: 11.5rem;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}
