@charset "utf-8";

/* --- TÍTULO BAJO CADA IMAGEN (galería) --- */
.img-title {
  margin-top: 4px;
  font-size: 13px;
  color: #ddd;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

/* --- CONTENEDOR IMAGEN + TEXTO LATERAL --- */
.contenedor {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 10px 0;
}

/* Imagen del bloque lateral */
.imagen {
  width: 160px;
  height: 122px;
  object-fit: cover;
  border: 4px solid #333;       /* similar al estilo clásico */
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* --- Texto al lado de la imagen (lateral) --- */
.texto-lateral {
  text-align: justify;
  font-size: 11px;
  line-height: 1.45;
  color: #ddd;
  max-width: 420px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Marco dorado base */
.marco-oro {
    display: inline-block;
    padding: 18px;
    background: radial-gradient(circle at center, #ffd700 0%, #b8860b 70%);
    border-radius: 12px;
    box-shadow:
        0 0 12px rgba(255, 215, 0, 0.7),
        0 0 22px rgba(255, 215, 0, 0.5),
        inset 0 0 12px rgba(255, 215, 0, 0.6);
    position: relative;
}

/* HALOS VERTICALES */
.marco-oro::before,
.marco-oro::after {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: 60px;

    /* luz vertical suave */
    background: linear-gradient(
        to bottom,
        rgba(255, 215, 0, 0) 0%,
        rgba(255, 215, 0, 0.45) 40%,
        rgba(255, 215, 0, 0.55) 60%,
        rgba(255, 215, 0, 0) 100%
    );

    filter: blur(22px);
    z-index: -2;
    pointer-events: none;
}

/* halo izquierda */
.marco-oro::before {
    left: -55px;
}

/* halo derecha */
.marco-oro::after {
    right: -55px;
}

/* Luz global proyectada detrás (renacentista) */
.marco-oro-glow {
    position: relative;
}
.marco-oro-glow::after {
    content: "";
    position: absolute;
    inset: -80px -40px -80px -40px;
    background: radial-gradient(circle at center,
        rgba(255, 225, 125, 0.45) 0%,
        rgba(255, 215, 0, 0.15) 30%,
        rgba(0,0,0,0) 80%
    );
    filter: blur(40px);
    z-index: -3;
}
.titulo-imagen {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #f7e7a6; /* dorado suave */
    text-align: center;
    max-width: 620px; /* coincide con el ancho del marco */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.35;
    text-shadow: 
        0 0 4px rgba(0,0,0,0.6),
        0 0 2px rgba(255, 215, 0, 0.5);
}
.placa-bronce {
    margin-top: 14px;
    padding: 14px 18px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    
    background: linear-gradient(145deg, #6b4b2b, #3c2a18);
    border: 2px solid #b38b56;
    border-radius: 6px;

    /* Bisel metálico */
    box-shadow:
        inset 2px 2px 4px rgba(255, 220, 180, 0.25),
        inset -2px -2px 4px rgba(0, 0, 0, 0.4),
        0 0 14px rgba(255, 200, 120, 0.25);

    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    color: #e8d0a8;

    /* Textura metálica */
    background-blend-mode: overlay;

    /* Efecto de brillo */
    position: relative;
    overflow: hidden;
}

/* Brillo deslizante */
.placa-bronce::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 240, 200, 0.35) 50%,
        transparent 100%
    );

    animation: brilloBronce 4s linear infinite;
}

@keyframes brilloBronce {
    0%   { left: -150%; }
    60%  { left: 120%;  }
    100% { left: 120%;  }
}
