/* =========================================================
   INDEX PAGE — Me Visto Como Quiero
   Editorial Fashion Store · 2026
   ========================================================= */

/* ── Global overrides for index ── */
html, body {
  font-family: 'Inter', 'Poppins', 'Nunito', Arial, sans-serif;
  font-weight: 400;
  color: #1a1614;
  background: #faf7f2;
}

h1, h2, h3,
.display-editorial,
.hero-title,
.promo-banner-title,
.newsletter-title,
.section-title {
  font-family: 'Cormorant Garamond', 'Staatliches', 'Poppins', Arial, serif;
}

/* =========================================================
   HERO CAROUSEL – Full-Viewport Editorial
   ========================================================= */

.hero-carousel {
  position: relative;
  height: 100vh;
  max-height: 980px;
  min-height: 520px;
  overflow: hidden;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

/* Each slide is a full-bleed background-image div */
.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* Multi-stop gradient: subtle at top (nav area), dark at bottom (text area) */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.00) 38%,
    rgba(0, 0, 0, 0.00) 52%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

/* Text content – bottom-left editorial positioning */
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 0 8% clamp(3.5rem, 8vh, 8rem);
  color: #fff;
  max-width: 720px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 1.1rem;
  opacity: 0;
  transform: translateY(18px);
}

.hero-subtitle {
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 2.4rem;
  max-width: 420px;
  opacity: 0;
  transform: translateY(14px);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
}

/* Animate-in when slide is active */
.carousel-item.active .hero-eyebrow {
  animation: heroFadeUp 0.75s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s both;
}
.carousel-item.active .hero-title {
  animation: heroFadeUp 0.82s cubic-bezier(0.25,0.46,0.45,0.94) 0.25s both;
}
.carousel-item.active .hero-subtitle {
  animation: heroFadeUp 0.82s cubic-bezier(0.25,0.46,0.45,0.94) 0.45s both;
}
.carousel-item.active .hero-actions {
  animation: heroFadeUp 0.75s cubic-bezier(0.25,0.46,0.45,0.94) 0.6s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Hero indicators (vertical pills on the right) ── */
.hero-indicators {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  right: 4%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-indicators button {
  width: 3px;
  height: 28px;
  padding: 0;
  border: none;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, height 0.3s ease;
}

.hero-indicators button.active {
  background: #fff;
  height: 44px;
}

/* ── Hero scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint i { font-size: 0.8rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Hero nav controls ── */
.hero-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(6px);
}
.hero-ctrl:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-50%) scale(1.06);
}
.hero-ctrl-prev { left: 2.5%; }
.hero-ctrl-next { right: 2.5%; }

@media (max-width: 576px) {
  .hero-ctrl { display: none; }
  .hero-slide-content { padding: 0 6% clamp(2.5rem, 7vh, 6rem); }
}

/* =========================================================
   ¿PARA QUIÉN ESTÁS COMPRANDO? — category mosaic
   ========================================================= */

.para-quien-section {
  background: #f5f2ee;
  padding: 5.5rem 0 0;
}

.section-header {
  max-width: var(--max-w, 1400px);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6a5f58;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Grid tipo editorial mosaic */
.para-quien-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 360px 360px;
  gap: 5px;
  max-width: var(--max-w, 1400px);
  margin: 0 auto;
}

/* Tile base */
.pq-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #e0dbd6;
}

.pq-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pq-tile:hover img {
  transform: scale(1.06);
}

/* Overlay – invisible until hover */
.pq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.6rem;
  transition: background 0.4s ease;
}

.pq-tile:hover .pq-overlay { background: rgba(10, 8, 6, 0.52); }
.pq-overlay--accent { background: rgba(100, 35, 50, 0); }
.pq-tile:hover .pq-overlay--accent { background: rgba(100, 35, 50, 0.68); }

/* Label */
.pq-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.38s ease;
}
.pq-tile:hover .pq-label { opacity: 1; transform: translateY(0); }

/* Arrow circle */
.pq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.38s ease 0.05s, opacity 0.38s ease 0.05s;
}
.pq-tile:hover .pq-arrow { opacity: 1; transform: translateY(0); }

.pq-tile--dark .pq-arrow { background: #c4986b; color: #2d0a14; }

/* Size variants */
.pq-tile--wide { grid-column: span 2; }
.pq-tile--tall { grid-row: span 2; }

/* Explicit grid positions */
.para-quien-grid .pq-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.para-quien-grid .pq-tile:nth-child(2) { grid-column: 3;     grid-row: 1; }
.para-quien-grid .pq-tile:nth-child(3) { grid-column: 4;     grid-row: 1; }
.para-quien-grid .pq-tile:nth-child(4) { grid-column: 1;     grid-row: 2; }
.para-quien-grid .pq-tile:nth-child(5) { grid-column: 2;     grid-row: 2; }
.para-quien-grid .pq-tile:nth-child(6) { grid-column: 3 / 5; grid-row: 2; }

/* Responsive */
@media (max-width: 1024px) {
  .para-quien-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
  }
  .para-quien-grid .pq-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .para-quien-grid .pq-tile:nth-child(2) { grid-column: 3;     grid-row: 1; }
  .para-quien-grid .pq-tile:nth-child(3) { grid-column: 1;     grid-row: 2; }
  .para-quien-grid .pq-tile:nth-child(4) { grid-column: 2;     grid-row: 2; }
  .para-quien-grid .pq-tile:nth-child(5) { grid-column: 3;     grid-row: 2; }
  .para-quien-grid .pq-tile:nth-child(6) { display: none; }
}

@media (max-width: 640px) {
  .para-quien-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 230px);
  }
  .para-quien-grid .pq-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .para-quien-grid .pq-tile:nth-child(2) { grid-column: 1;     grid-row: 2; }
  .para-quien-grid .pq-tile:nth-child(3) { grid-column: 2;     grid-row: 2; }
  .para-quien-grid .pq-tile:nth-child(4) { grid-column: 1;     grid-row: 3; }
  .para-quien-grid .pq-tile:nth-child(5) { grid-column: 2;     grid-row: 3; }
  .para-quien-grid .pq-tile:nth-child(6) { display: none; }
  /* Mobile: always show labels */
  .pq-label, .pq-arrow { opacity: 1; transform: translateY(0); }
  .pq-overlay { background: rgba(10, 8, 6, 0.38); }
}

/* =========================================================
   PROMOTIONAL BANNER – Full-width editorial dark section
   ========================================================= */

.promo-banner-section {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}

.promo-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/aestethic2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}

/* Warm radial glow */
.promo-banner-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196,152,107,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(5rem, 10vh, 8rem) 2rem;
}

.promo-banner-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c4986b;
  margin-bottom: 1.5rem;
}

.promo-banner-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 1.2rem;
}

.promo-banner-sub {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0 0 2.8rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   PRODUCTOS DESTACADOS – Editorial product cards
   ========================================================= */

.destacados-section {
  background: #faf7f2;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.destacados-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.04), transparent 70%);
  pointer-events: none;
}

.destacados-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,152,107,0.06), transparent 70%);
  pointer-events: none;
}

.destacados-carousel-wrapper {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
}

.destacados-cards {
  display: flex;
  flex-direction: row;
  gap: 1.8rem;
  flex: 1;
  overflow: hidden;
  min-height: 420px;
}

.destacados-carousel-btn {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #e8e2db;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(26,14,8,0.07);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #1a1614;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  z-index: 2;
}
.destacados-carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.destacados-carousel-btn:hover:not(:disabled) {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  transform: scale(1.06);
}

/* Product cards */
.destacados-col {
  min-width: 0;
  flex: 0 0 calc(33.333% - 1.2rem);
  display: flex;
}

.destacados-card {
  width: 100%;
  display: grid;
  grid-template-rows: 260px 1fr;
  background: #fff;
  border: 1px solid rgba(113, 81, 68, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,14,8,0.07);
  opacity: 0;
  transform: translateY(20px);
  animation: cardReveal 0.7s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
  animation-delay: var(--card-delay, 0ms);
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.destacados-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(26,14,8,0.14);
  border-color: rgba(113, 81, 68, 0.22);
}

@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}

.destacados-card-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f0e8e0, #ddd0c4);
}

.destacados-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,10,8,0.35) 100%);
  opacity: 0;
  transition: opacity 0.38s ease;
}
.destacados-card:hover .destacados-card-media::after { opacity: 1; }

.destacados-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.58s ease;
}
.destacados-card:hover img { transform: scale(1.06); }

.destacados-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(250,247,242,0.92);
  color: #5a3428;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destacados-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.3rem 1.4rem 1.5rem;
}

.destacados-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d6f61;
  margin: 0;
}

.destacados-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1614;
  line-height: 1.3;
  margin: 0;
}

.destacados-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destacados-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
}

.destacados-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}
.destacados-btn:hover { background: #e63946; color: #fff; transform: translateY(-1px); }

.destacados-link {
  color: #1a1614;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  position: relative;
  transition: color 0.22s ease;
}
.destacados-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.destacados-card:hover .destacados-link { color: #e63946; }
.destacados-card:hover .destacados-link::after { transform: scaleX(1); }

/* FLASH SALE badge pulse */
.flash-sale-badge {
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* Responsive cards */
@media (max-width: 1100px) {
  .destacados-col { flex: 0 0 calc(50% - 0.9rem); }
}
@media (max-width: 640px) {
  .destacados-col { flex: 0 0 85%; }
  .destacados-cards { overflow-x: auto; scroll-snap-type: x mandatory; }
  .destacados-col { scroll-snap-align: start; }
  .destacados-card { grid-template-rows: 220px 1fr; }
}

/* =========================================================
   NEWSLETTER SECTION
   ========================================================= */

.newsletter-section {
  background: #fff;
  padding: 5.5rem 0;
  border-top: 1px solid #e8e2db;
}

.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-copy { flex: 1 1 340px; }

.newsletter-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 0.75rem;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.05;
  margin: 0 0 0.8rem;
}

.newsletter-sub {
  font-size: 0.95rem;
  color: #6a5f58;
  line-height: 1.65;
  max-width: 380px;
  margin: 0;
}

.newsletter-form { flex: 1 1 380px; }

.newsletter-input-group {
  display: flex;
  border: 1.5px solid #0a0a0a;
  border-radius: 999px;
  overflow: hidden;
  max-width: 460px;
}

.newsletter-input {
  flex: 1;
  padding: 0.95rem 1.4rem;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: #1a1614;
  min-width: 0;
}
.newsletter-input::placeholder { color: #a89e97; }

.newsletter-btn {
  flex-shrink: 0;
  padding: 0.95rem 1.6rem;
  background: #0a0a0a;
  color: #fff;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease;
  white-space: nowrap;
}
.newsletter-btn:hover { background: #e63946; }

.newsletter-footnote {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: #a89e97;
  max-width: 460px;
}

@media (max-width: 640px) {
  .newsletter-inner { flex-direction: column; gap: 2rem; }
  .newsletter-input-group { flex-direction: column; border-radius: 14px; overflow: visible; border: none; gap: 0.6rem; }
  .newsletter-input {
    border: 1.5px solid #0a0a0a;
    border-radius: 999px;
    padding: 0.9rem 1.3rem;
  }
  .newsletter-btn { border-radius: 999px; padding: 0.9rem 1.4rem; width: 100%; }
}

/* =========================================================
   TRUST / BENEFITS SECTION
   ========================================================= */

.trust-section {
  background: #f5f2ee;
  padding: 5rem 0;
  position: relative;
}

.trust-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(26,14,8,0.06);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e63946, #c4986b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(26,14,8,0.12); }

.trust-icon-container { margin-bottom: 0.75rem; }

.trust-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  background: linear-gradient(135deg, #e63946, #c1121f);
  box-shadow: 0 10px 28px rgba(230,57,70,0.22);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.trust-card:hover .trust-icon {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 36px rgba(230,57,70,0.3);
}

.trust-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a0a0a;
  margin: 1rem 0 0.5rem;
}

.trust-divider {
  width: 36px;
  height: 2px;
  background: #e63946;
  margin: 0.6rem auto 0.8rem;
  border-radius: 1px;
}

.trust-card-text {
  font-size: 0.88rem;
  color: #6a5f58;
  line-height: 1.65;
  margin: 0 0 0.8rem;
}

.trust-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(230,57,70,0.07);
  color: #e63946;
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* =========================================================
   NOSOTROS / FILOSOFÍA
   ========================================================= */

.nosotros-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--c-ink, #1a1614);
}

.nosotros-img-col {
  position: relative;
  overflow: hidden;
}

.nosotros-img-frame {
  position: relative;
  height: 100%;
  min-height: 480px;
}

.nosotros-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.78;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nosotros-img-col:hover .nosotros-img {
  transform: scale(1.05);
}

.nosotros-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 5, 3, 0.7) 100%
  );
  pointer-events: none;
}

.nosotros-img-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--c-gold, #c4986b);
  color: var(--c-ink, #1a1614);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 8px 28px rgba(196, 152, 107, 0.45);
}

.nosotros-img-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.nosotros-img-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nosotros-content-col {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nosotros-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold, #c4986b);
  margin-bottom: 1rem;
}

.nosotros-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--c-cream, #faf7f2);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.nosotros-title em {
  font-style: italic;
  color: var(--c-gold, #c4986b);
}

.nosotros-lead {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--c-mist, #a89e97);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--c-gold, #c4986b);
  padding-left: 1rem;
}

.nosotros-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.25rem;
}

.nosotros-pillar {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold, #c4986b);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.nosotros-pillar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-cream, #faf7f2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.nosotros-pillar p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--c-warm-gray, #6a5f58);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .nosotros-section {
    grid-template-columns: 1fr;
  }
  .nosotros-img-frame {
    min-height: 320px;
  }
  .nosotros-content-col {
    padding: 2.5rem 1.75rem 3rem;
  }
}

@media (max-width: 575px) {
  .nosotros-pillars {
    grid-template-columns: 1fr;
  }
  .nosotros-content-col {
    padding: 2rem 1.25rem 2.5rem;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2.5rem;
  background: linear-gradient(140deg, #1e0c14 0%, #4a1a28 45%, #180810 100%);
  color: #fff4ee;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/aestethic.jpg') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.footer-brand-card,
.footer-news-card,
.footer-link-block {
  border: none;
  background: transparent;
  backdrop-filter: none;
}
.footer-brand-card,
.footer-news-card { border-radius: 0; padding: 0; }
.footer-link-block {
  border-radius: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.8rem;
  transition: none;
  height: 100%;
}
.footer-link-block:hover { transform: none; }

.footer-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4986b;
  margin-bottom: 0.8rem;
}

.footer-brand-card {
  padding-right: 3rem;
  padding-bottom: 0.5rem;
}

.footer-brand-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.footer-brand-card p,
.footer-link-block p,
.site-footer-bottom p {
  color: rgba(255,244,238,0.75);
  line-height: 1.7;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.82rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.footer-socials a:hover {
  background: rgba(196,152,107,0.15);
  border-color: #c4986b;
  color: #c4986b;
}

.footer-community-card {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 0 0 0 2.5rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-community-card h4 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.footer-community-card p { color: rgba(255,244,238,0.7); font-size: 0.88rem; line-height: 1.7; }

.footer-mini-points {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.footer-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: rgba(255,244,238,0.6);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}
.footer-mini-points i { color: #c4986b; font-size: 0.72rem; }

.footer-link-block h5, .footer-link-block h4 {
  color: rgba(255,255,255,0.95);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-link-block a {
  display: inline-block;
  color: rgba(255,244,238,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  position: relative;
  transition: color 0.22s ease, transform 0.22s ease;
}
.footer-link-block a:hover { color: #c4986b; transform: translateX(4px); }

.footer-link-block--contact p {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.footer-link-block--contact i { color: #c4986b; margin-top: 0.18rem; }

.footer-links-row {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 3rem;
}

.site-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer-bottom p { font-size: 0.82rem; color: rgba(255,244,238,0.55); }

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,244,238,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.22s ease;
}
.footer-bottom-links a:hover { color: #c4986b; }

/* ── Footer responsive adjustments ── */
@media (max-width: 991.98px) {
  .footer-brand-card {
    padding-right: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-community-card {
    border-left: none;
    border-top: none;
    padding: 0;
    padding-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .site-footer { padding: 3.5rem 0 2rem; }
  .footer-link-block { padding-top: 1.4rem; }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(400px, calc(100vw - 28px));
  z-index: 1400;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30,12,20,0.96), rgba(74,26,40,0.94));
  color: #fff7f2;
  box-shadow: 0 20px 50px rgba(10,4,8,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.cookie-banner.is-leaving { opacity: 0; transform: translateY(16px) scale(0.97); }

.cookie-banner__glow {
  position: absolute;
  width: 160px; height: 160px;
  top: -60px; right: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,152,107,0.4), transparent 70%);
  pointer-events: none;
}

.cookie-banner__content {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
}

.cookie-banner__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #c4986b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 0 0.6rem;
  line-height: 1.1;
}

.cookie-banner p {
  font-size: 0.84rem;
  color: rgba(255,247,242,0.78);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.cookie-banner__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  font-size: 0.75rem;
  color: #fff4ee;
}
.cookie-banner__chips i { color: #c4986b; }

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 1.1rem;
}
.cookie-banner__btn {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cookie-banner__btn:hover { transform: translateY(-2px); }
.cookie-banner__btn--ghost {
  background: rgba(255,255,255,0.07);
  color: #fff7f2;
  border: 1px solid rgba(255,255,255,0.14);
}
.cookie-banner__btn--ghost:hover { background: rgba(255,255,255,0.12); }
.cookie-banner__btn--primary {
  background: linear-gradient(135deg, #c4986b, #dbb897);
  color: #1a0810;
  box-shadow: 0 10px 24px rgba(196,152,107,0.2);
}

@media (max-width: 576px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; width: auto; border-radius: 18px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { width: 100%; }
}

/* =========================================================
   REVEAL ANIMATIONS (data-reveal attribute)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="right"]  { transform: translateX(28px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="left"]   { transform: translateX(-28px); }
[data-reveal="left"].revealed  { transform: translateX(0); }

/* =========================================================
   UTILITIES
   ========================================================= */

.text-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.0;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Section heading accent underline */
.heading-accent {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #e63946;
  border-radius: 1px;
  margin: 0 0 0.8rem;
}

/* For section headers with eyebrow + title + subtitle */
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }
