:root {
  --bg: #fdf0f5;
  --bg-alt: #fae4ee;
  --surface: rgba(255, 250, 252, 0.86);
  --surface-strong: #ffffff;
  --text: #2f1f1d;
  --muted: #6c5854;
  --brand: #b85b52;
  --brand-dark: #8f3f39;
  --brand-soft: #f6d3e3;
  --accent: #e6a1bc;
  --line: rgba(143, 63, 57, 0.12);
  --shadow: 0 24px 70px rgba(73, 33, 28, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(171, 92, 121, 0.14), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(230, 161, 188, 0.16), transparent 30%),
    linear-gradient(
      180deg,
      #fff8fb 0%,
      #fdeef6 18%,
      #f9e7f1 36%,
      #f6e8ef 54%,
      #fae5ef 72%,
      #fceff5 88%,
      #fff8fb 100%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(184, 91, 82, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: var(--bg);
  border-bottom: 1px solid rgba(143, 63, 57, 0.08);
}

.header-bar {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  object-fit: contain;
  padding: 0.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 236, 0.92));
  border: 1px solid rgba(143, 63, 57, 0.16);
  box-shadow: 0 10px 20px rgba(73, 33, 28, 0.12);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 24px rgba(184, 91, 82, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
}

.brand-text strong {
  font-size: 1.34rem;
}

.brand-text span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.nav-toggle-lines {
  width: 1.1rem;
  height: 0.8rem;
  position: relative;
  display: inline-block;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {
  background: linear-gradient(var(--text), var(--text)) center/100% 2px no-repeat;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle-lines::before {
  top: 0;
}

.nav-toggle-lines::after {
  bottom: 0;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.primary-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--brand-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.header-cta {
  background: linear-gradient(135deg, #ea3e95, #bf1f6f);
  color: #fff;
  box-shadow: 0 16px 26px rgba(191, 31, 111, 0.36);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(135deg, #d92f85, #a81861);
  box-shadow: 0 18px 30px rgba(168, 24, 97, 0.42);
}

.btn:hover,
.header-cta:hover,
.social-links a:hover,
.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 16px 30px rgba(184, 91, 82, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(143, 63, 57, 0.14);
  color: var(--text);
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 5rem 0 3.5rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(230, 161, 188, 0.22), transparent 25%),
    radial-gradient(circle at 15% 35%, rgba(171, 92, 121, 0.18), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 500px;
  padding: 1.95rem 1.95rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 63, 57, 0.12);
  box-shadow: 0 20px 36px rgba(73, 33, 28, 0.1);
}

.hero-title-image {
  width: min(100%, 520px);
  height: auto;
  margin: 0.75rem auto 1.1rem;
  border-radius: 26px;
  border: 1px solid rgba(143, 63, 57, 0.16);
  box-shadow: 0 18px 32px rgba(73, 33, 28, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.hero-lead,
.section-heading p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-copy .hero-lead {
  font-size: 1.08rem;
  color: #5f4a46;
}

.hero-copy .hero-lead-overlay {
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(40, 21, 18, 0.8), rgba(184, 91, 82, 0.72));
  backdrop-filter: blur(10px);
  font-size: 1.04rem;
  line-height: 1.68;
}

.hero-copy .hero-lead-overlay strong {
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-points span,
.contact-highlights div,
.google-summary,
.google-review,
.step-card,
.faq-item,
.recaptcha-placeholder,
.contact-form,
.hero-slide,
.about-media,
.video-shell {
  background: var(--surface);
  border: 1px solid rgba(143, 63, 57, 0.1);
  box-shadow: var(--shadow);
}

.hero-points span {
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.hero-slider-panel {
  position: relative;
  display: flex;
  min-height: 500px;
  box-sizing: border-box;
  padding: 1.95rem 1.95rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 63, 57, 0.12);
  box-shadow: 0 20px 36px rgba(73, 33, 28, 0.1);
  overflow: hidden;
}

.hero-swiper {
  width: 94%;
  height: 94%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.hero-swiper .swiper-wrapper {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-swiper .swiper-slide {
  flex: 0 0 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-slide {
  position: relative;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-content: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-slide img,
.hero-slide video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  min-height: 0;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid rgba(143, 63, 57, 0.16);
  box-shadow: 0 18px 32px rgba(73, 33, 28, 0.16);
  background: #f6e7ee;
  filter: saturate(1.03) contrast(1.02);
}

.hero-slide img[src*="osito-ropa.png"],
.hero-slide img[src*="osito-y-ropa.png"] {
  transform: none;
}

.slide-overlay {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(40, 21, 18, 0.8), rgba(184, 91, 82, 0.72));
  backdrop-filter: blur(10px);
}

.slide-overlay span,
.slide-overlay strong {
  display: block;
}

.slide-overlay span {
  font-size: 0.8rem;
  opacity: 0.88;
  line-height: 1.2;
}

.slide-overlay strong {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 0.2rem;
}

.swiper-pagination-bullet {
  background: rgba(47, 31, 29, 0.28);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
}

.section {
  padding: 4.25rem 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.section-alt {
  background: transparent;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0.6rem 0 0.85rem;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.02;
}

.about-copy h2,
.contact-copy h2 {
  margin: 0.6rem 0 0.85rem;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.02;
}

.steps-grid,
.about-grid,
.google-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.contact-highlights div,
.google-summary,
.google-review,
.faq-item {
  border-radius: var(--radius-lg);
}

.step-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  flex-grow: 1;
}

.step-icon {
  width: 4.35rem;
  height: 4.35rem;
  margin: 1rem auto 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e8b0c2;
  border: 1px solid rgba(143, 63, 57, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.step-icon i {
  font-size: 1.65rem;
  color: #6b463f;
}

.step-number {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(184, 91, 82, 0.08);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.65rem;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-copy {
  padding-right: 1rem;
}

.about-story {
  margin-top: 0.35rem;
  overflow: visible;
  padding-right: 0;
}

.about-story p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-media {
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.video-shell {
  position: relative;
  min-height: 360px;
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
}

.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.video-placeholder {
  min-height: 360px;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(184, 91, 82, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 234, 223, 0.88));
}

.google-review strong {
  display: block;
}

.google-review small,
.form-status {
  color: var(--muted);
}

.form-status[data-type="success"] {
  color: #2f7d4a;
}

.form-status[data-type="error"] {
  color: #b74a43;
}

.form-status[data-type="pending"] {
  color: var(--brand-dark);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #cc8a1d;
  font-weight: 800;
  margin-top: 0.9rem;
}

.google-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.google-summary {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 237, 0.95));
}

.google-summary .google-score {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.9;
}

.google-summary .google-label {
  margin-top: 0.55rem;
  color: var(--muted);
}

.google-summary .google-breakdown {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.google-summary .breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(143, 63, 57, 0.1);
}

.google-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.google-review {
  padding: 1.15rem;
}

.google-review .review-stars {
  color: #cc8a1d;
  margin-bottom: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border: 0;
  background: transparent;
  text-align: left;
}

.faq-trigger span {
  font-weight: 800;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(184, 91, 82, 0.09);
  color: var(--brand-dark);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.15rem;
}

.faq-panel p {
  margin: 0;
  padding: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-panel {
  max-height: 260px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-priority-note {
  margin-top: 1.2rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(143, 63, 57, 0.14);
  box-shadow: var(--shadow);
}

.contact-priority-note h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.contact-priority-note p {
  margin: 0 0 0.7rem;
}

.contact-priority-note p:last-child {
  margin-bottom: 0;
}

.contact-priority-warning {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-highlights div {
  padding: 1rem;
}

.contact-highlights strong {
  display: block;
}

.contact-highlights span,
.field-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 800;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(143, 63, 57, 0.15);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
}

.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(184, 91, 82, 0.45);
  box-shadow: 0 0 0 4px rgba(184, 91, 82, 0.1);
  outline: 0;
}

.field.is-error input:not([type="checkbox"]),
.field.is-error select,
.field.is-error textarea {
  border-color: #b74a43;
}

.checkbox-field .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  line-height: 1.3;
  flex-wrap: nowrap;
}

.checkbox-field input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  flex: 0 0 auto;
}

.checkbox-field a {
  color: var(--accent);
  text-decoration: underline;
}

.field.is-error.checkbox-field .checkbox-label {
  color: #8f2620;
}

.recaptcha-box {
  margin-top: 1rem;
}

.recaptcha-placeholder {
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: none;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recaptcha-note {
  margin-top: 0.45rem;
}

.hidden-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-status {
  margin: 0;
  min-height: 1.5em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.social-links a {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.35rem;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(143, 63, 57, 0.16);
  box-shadow: 0 12px 24px rgba(73, 33, 28, 0.1);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
}

.social-links a i {
  line-height: 1;
}

.contact-info-card {
  max-width: 760px;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(143, 63, 57, 0.12);
  box-shadow: var(--shadow);
}

.contact-info-card p {
  margin: 0 0 0.7rem;
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
}

.contact-info-card p:last-child {
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--brand-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(143, 63, 57, 0.35);
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.homenaje-section {
  background: transparent;
}

.homenaje-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.homenaje-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(143, 63, 57, 0.14);
  box-shadow: var(--shadow);
}

.homenaje-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(184, 91, 82, 0.12);
  color: var(--brand-dark);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.homenaje-card h3 {
  margin: 0.75rem 0 0.65rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.homenaje-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebd57);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 20px 35px rgba(37, 211, 102, 0.26);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: transparent;
  border-top: 1px solid rgba(143, 63, 57, 0.1);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-end;
}

.footer-grid p {
  max-width: 34rem;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(143, 63, 57, 0.15);
  padding: 0.1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--brand-dark);
}

.footer-copyright {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(143, 63, 57, 0.12);
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  display: block;
  padding: 2rem 0;
}

.legal-shell {
  width: min(calc(100% - 2rem), 980px);
  margin: 0 auto;
}

.legal-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(143, 63, 57, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.legal-header h1 {
  margin: 0.4rem 0 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--brand-dark);
  margin: 0;
}

.legal-meta {
  margin: 0;
  color: var(--muted);
}

.legal-section {
  margin-top: 1.25rem;
}

.legal-section h2 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.legal-section p,
.legal-section li {
  color: var(--text);
  line-height: 1.7;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-footer {
  margin-top: 1.8rem;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .google-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homenaje-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-reviews {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-right: 0;
    min-height: 0;
    max-height: none;
  }

  .about-story {
    overflow: visible;
    padding-right: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 1.35rem 1.35rem;
  }

  .hero-slider-panel {
    min-height: 0;
    padding: 1.35rem 1.35rem;
  }

  .hero-swiper {
    width: 95%;
    height: 95%;
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .brand-text strong {
    font-size: 1.18rem;
  }

  .brand-logo {
    width: 4.2rem;
    height: 4.2rem;
  }

  .header-bar {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    width: 100%;
    order: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(143, 63, 57, 0.12);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 0.8rem 0.7rem;
    border-radius: 14px;
    background: rgba(184, 91, 82, 0.05);
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-section {
    padding-top: 3.2rem;
  }

  .hero-title-image {
    width: min(100%, 320px);
    margin-top: 0.55rem;
    margin-bottom: 0.95rem;
  }

  .hero-slider-panel {
    padding: 1.2rem;
  }

  .hero-swiper {
    width: 90%;
    height: auto;
    min-height: 0;
    display: block;
    margin: 0 auto;
  }

  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide,
  .hero-slide {
    height: auto;
    min-height: 0;
  }

  .hero-slide {
    gap: 0.5rem;
  }

  .hero-slide img,
  .hero-slide video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: 0 auto;
    border-radius: 22px;
  }

  .slide-overlay {
    width: 100%;
    margin: 0 auto;
    padding: 0.72rem 0.85rem;
  }

  .slide-overlay strong {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .hero-slide img[src*="osito-ropa.png"],
  .hero-slide img[src*="osito-y-ropa.png"] {
    transform: none;
  }

  .steps-grid,
  .form-grid,
  .contact-highlights,
  .homenaje-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 3.8rem;
    height: 3.8rem;
  }

  .container {
    width: min(calc(100% - 1.1rem), var(--max-width));
  }

  .hero-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-cta,
  .floating-whatsapp {
    width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .social-links a {
    width: 3.2rem;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-slider-panel {
    padding: 1rem;
  }

  .hero-slide {
    gap: 0.6rem;
  }

  .hero-swiper {
    width: 88%;
  }

  .hero-slide img,
  .hero-slide video {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
  }

  .slide-overlay {
    width: 100%;
    margin: 0 auto;
    padding: 0.66rem 0.78rem;
  }

  .slide-overlay strong {
    font-size: 0.8rem;
    line-height: 1.18;
  }
}
