/* ============================================
   ARTE500 — Estilos principales
   styles.css
   ============================================ */

/* ---------- Variables de color ---------- */
:root {
  --bg: #618d9c;
  --surface: rgba(255,255,255,0.08);
  --text: #f5f1ea;
  --muted: rgba(245,241,234,0.75);
  --naranja: #d88b4a;
  --border: rgba(255,255,255,0.15);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}


/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 3.5rem;

  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 90px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  font-weight: 300;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--naranja);
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  font-weight: 300;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--naranja);
}

/* ============================================
   HERO
   ============================================ */
.hero { min-height: 100vh; padding-top: 72px; position: relative; overflow: hidden; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(216, 139, 74, 0.12),
      transparent 40%
    );
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(26, 58, 107, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232, 98, 10, 0.05) 0%, transparent 50%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 5rem 3.5rem;
}

.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.eyebrow-line { width: 40px; height: 1px; background: var(--naranja); }
.eyebrow-text {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--naranja); font-weight: 300;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1.05; margin-bottom: 2rem;
}
.hero-h1 em { font-style: italic; color: var(--azul); }

.hero-body {
  font-size: 0.88rem; line-height: 1.85; color: var(--muted);
  max-width: 420px; margin-bottom: 3rem; font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; }

.btn-azul {
  background: var(--naranja);
  color: white;
  border: none;
  padding: 1rem 2.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(216, 139, 74, 0.18);
}

.btn-azul:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(216, 139, 74, 0.28);
  background: #c97a36;
}

.btn-dark {
  background: none; color: var(--text); border: 1px solid var(--border);
  padding: 0.9rem 2.2rem; font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 300; letter-spacing: 0.1em;
  cursor: pointer; transition: all 0.3s;
}
.btn-dark:hover { border-color: var(--muted); }

/* ============================================
   FEATURED GRID
   ============================================ */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}

.obra-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s ease;
}

.obra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.obra-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.obra-info {
  padding: 1rem;
}

.obra-artista {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--naranja);
  display: block;
  margin-bottom: 0.5rem;
}

.obra-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.obra-precio {
  font-size: 0.9rem;
  color: var(--naranja);
  font-weight: 500;
}

/* --- Featured card (hero derecho) --- */
.hero-right {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 1rem;
flex-wrap: wrap;
}

.feature-card {
  width: 100%; max-width: 220px;
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; position: relative;
}

.feature-card-img {
  height: 380px;
  background: linear-gradient(160deg, #3a372e, #2c2a23);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; position: relative; overflow: hidden;
}
.feature-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(26, 58, 107, 0.15), transparent 60%);
}

.feature-card-body { padding: 1.5rem; }
.fcard-label {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--azul); margin-bottom: 0.5rem;
}
.fcard-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.3rem; }
.fcard-meta { font-size: 0.72rem; color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; }
.fcard-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.fcard-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--naranja); }
.fcard-btn {
  background: var(--azul); color: var(--bg); border: none;
  padding: 0.5rem 1rem; font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 500; cursor: pointer; transition: background 0.3s;
}
.fcard-btn:hover { background: var(--naranja); }

.floating-badge {
  position: absolute; top: 2rem; right: 1.5rem;
  background: var(--naranja); color: var(--bg);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.05em;
  text-align: center; text-transform: uppercase; line-height: 1.2;
}

/* --- Scroll hint --- */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 3.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  width: 30px; height: 1px; background: var(--muted);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 30px; }
  50%       { width: 50px; }
}

/* ============================================
   SECCIÓN PRODUCTOS
   ============================================ */
.section { padding: 5rem 3.5rem; }

.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem;
}
.section-label {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--naranja); margin-bottom: 0.6rem;
}
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 400; }
.section-title em { font-style: italic; }

.see-all {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 2px;
  cursor: pointer; background: none; border-left: none; border-top: none; border-right: none;
  font-family: 'Outfit', sans-serif; transition: color 0.3s;
}
.see-all:hover { color: var(--naranja); }

/* --- Grid de productos --- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.pcard:hover {
  border-color: var(--naranja);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pcard-img {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;

  transition: transform 0.4s ease;
}
.pcard:hover .pcard-img {
  transform: scale(1.05);
}

/* Fondos de cards — */
.pi1 {
  background-image: url('../img/obra1.jpeg');
  background-size: cover;
  background-position: center;
}

.pi2 {
  background-image: url('../img/obra2.jpeg');
  background-size: cover;
  background-position: center;
}

.pi3 {
  background-image: url('../img/obra3.jpeg');
  background-size: cover;
  background-position: center;
}

.pi4 {
  background-image: url('../img/obra4.jpeg');
  background-size: cover;
  background-position: center;
}

.obra-img {
    width: 100%;
    max-width: 420px;
    height: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obra-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pcard-overlay {
  position: absolute; inset: 0; background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: white; font-weight: 500; opacity: 0;
  transition: opacity 0.3s; border: none; cursor: pointer; width: 100%;
}
.pcard:hover .pcard-overlay { opacity: 1; }

.pcard-body { padding: 1rem 1.2rem; }
.pcard-artist {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--naranja); margin-bottom: 0.3rem;
}
.pcard-name { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.7rem; }
.pcard-foot { display: flex; justify-content: space-between; }
.pcard-price { font-size: 0.82rem; color: var(--naranja); font-weight: 400; }
.pcard-medium { font-size: 0.65rem; color: var(--muted); align-self: flex-end; }

/* ============================================
   CARRITO
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 400px; z-index: 201;
  background: var(--surface); border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-hdr {
  padding: 1.8rem 2rem; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-ttl { font-family: 'Playfair Display', serif; font-size: 1.4rem; }

.cart-x {
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 30px; height: 30px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.cart-x:hover { border-color: var(--azul); color: var(--azul); }

.cart-list { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty-msg {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: var(--muted); text-align: center; padding-top: 3rem;
}

.cart-row {
  display: grid; grid-template-columns: 60px 1fr 20px;
  gap: 1rem; align-items: center; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cthumb {
  width: 60px; height: 70px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.ct1 { background: linear-gradient(160deg, #3e3b32, #2c2a23); }
.ct2 { background: linear-gradient(160deg, #38352c, #28261f); }

.cname { font-family: 'Playfair Display', serif; font-size: 0.92rem; }
.cprice { font-size: 0.75rem; color: var(--naranja); }

.crm {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.8rem; transition: color 0.2s;
}
.crm:hover { color: var(--text); }

.cart-ftr { padding: 1.8rem 2rem; border-top: 1px solid var(--border); }
.ctotal { display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.ctotal-l {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); align-self: flex-end;
}
.ctotal-v { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--naranja); }

.checkout {
  width: 100%; background: var(--azul); color: var(--bg); border: none;
  padding: 1rem; font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s;
}
.checkout:hover { background: var(--naranja); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(3rem);
  background: var(--surface); border: 1px solid var(--azul);
  color: var(--text); padding: 0.7rem 1.8rem;
  font-size: 0.72rem; letter-spacing: 0.12em;
  z-index: 300; transition: transform 0.3s; opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.fl { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.fl span { color: var(--naranja); font-style: italic; }
.fr { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-align: right; }

/* ============================================
   RESPONSIVO
   ============================================ */

/* ============================================
   RESPONSIVE — MOBILE FIX
   ============================================ */

@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 1rem 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .logo-img {
    height: 45px;
  }

  .logo-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  /* HERO */
  .hero {
    padding: 2rem 1.2rem;
    min-height: auto;
  }

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

  .hero-left {
    width: 100%;
  }

  .hero-h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-body {
    font-size: 0.9rem;
  }

  /* BOTÓN */
  .btn-azul {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
  }

  /* GRID (OBRAS) */
  .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

  .pcard {
    width: 100%;
  }

  .pcard-img {
    height: 250px;
  }

  /* SECTION */
  .section {
    padding: 3rem 1.2rem;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

}


/* --- Hamburguesa --- */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Menú móvil --- */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(44,42,35,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; z-index: 99;
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--muted); font-weight: 300;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border); transition: color 0.3s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--naranja); }

@media (max-width: 900px) {
  /* Nav */
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cart-btn span { display: none; } /* Oculta texto, deja solo el badge */
  .cart-btn { padding: 0.5rem 0.8rem; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .hero-h1 { font-size: 3.2rem; }
  .hero-right { padding: 1.5rem; justify-content: center; }
  .feature-card { max-width: 100%; }
  .scroll-hint { display: none; }

  /* Productos */
  .section { padding: 3rem 1.5rem; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Carrito */
  .cart-drawer { width: 100%; }
}

@media (max-width: 500px) {
  .hero-h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-azul, .btn-dark { width: 100%; text-align: center; }
  .grid { grid-template-columns: 1fr; }
  .feature-card-img { height: 260px; }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.hero-eyebrow  { animation-delay: 0.15s; }
.hero-h1       { animation-delay: 0.25s; }
.hero-body     { animation-delay: 0.35s; }
.hero-actions  { animation-delay: 0.45s; }
.feature-card  { animation: fadeUp 0.7s 0.3s ease forwards; opacity: 0; }

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* ============================================
   FIX OVERLAY TARJETAS
   ============================================ */



/* ============================================
   OBRA RESPONSIVE FIX
   ============================================ */

.obra-img {
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {

  .obra-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .obra-img {
    width: 100%;
    height: 300px;
  }

  .obra-info {
    width: 100%;
  }

}

/* ============================================
   OBRA RESPONSIVE
   ============================================ */

.obra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .obra-layout {
    grid-template-columns: 1fr;
  }

  #imagen {
    height: 300px;
  }
}

/* ============================================
   DETALLES 
   ============================================ */

/* Transiciones suaves */
button, a {
  transition: all 0.2s ease;
}

/* Hover botón */
.btn-azul:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* ============================================
   MOBILE FIX REAL (sin romper desktop)
============================================ */

@media (max-width: 768px) {

  nav {
    padding: 1rem 1.2rem;
  }

  .hero {
    padding-top: 7rem;
    min-height: auto;
  }

  .hero-inner {
    padding: 2rem 0;
  }

  .hero-h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn-azul {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pcard-img {
    min-height: 260px;
  }

  .section {
    padding: 4rem 1.2rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

}

@media (max-width: 768px) {

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pcard {
    display: block;
  }

  .pcard-img {
    width: 100%;
    height: 260px;
    aspect-ratio: unset;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .pcard-body {
    padding: 1rem;
  }

  .pcard-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

.obra-detalle {
    padding: 10rem 2rem 5rem;
    max-width: 1200px;
    margin: auto;
}

.obra-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.obra-img {
    width: 100%;
    max-width: 430px;
    height: 520px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obra-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.obra-artista {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--naranja);
    margin-bottom: 0.8rem;
}

.obra-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.obra-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.obra-precio {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--naranja);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .obra-wrap {
        grid-template-columns: 1fr;
    }

    .obra-titulo {
        font-size: 2rem;
    }
}

.otras-obras {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.otras-obras h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.otras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mini-card {
    text-decoration: none;
    color: inherit;
}

.mini-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mini-card h3 {
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .otras-grid {
        grid-template-columns: 1fr;
    }

    .obra-img img {
        height: 450px;
    }
}