/* @font-face {
  font-family: 'Inclusive_Sans';
  src: url('../../fuentes/Inclusive_Sans/static/InclusiveSans-Regular.ttf');
} */

@font-face {
  font-family: 'Cormorant_Garamond';
  src: url('../../fuentes/Mooli/Mooli-Regular.ttf');
}

.cita-destacada {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #8A0303 0%, #8D1919 50%, #C1121F 100%);
  box-sizing: border-box;
}

/* Imagen izquierda */
.cita-imagen {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.cita-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  border-radius: 20px 0 0 20px;
  display: block;
  transition: transform 0.4s ease;
}

.cita-imagen img:hover {
  transform: scale(1.05);
}

/* Texto y logo */
.cita-texto-con-logo {
  width: 50%;
  padding: 2rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cita-texto {
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-left: 6px solid #C1121F;
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  border-radius: 12px;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.cita-texto blockquote {
  margin: 0;
}

.cita-texto p {
  font-family: 'Cormorant_Garamond';
}

.cita-texto strong {
  font-family: 'Cormorant_Garamond';
  font-weight: 600;
  color: #C1121F;
}

/* Logo en escritorio */
.cita-logo {
  margin-top: -3rem;
  width: 400px; /* puedes aumentar aquí si quieres que crezca más */
  z-index: 3;
  flex-shrink: 0;
}

.cita-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 12px;
  background: transparent;
  padding: 0.7rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cita-logo img:hover {
  transform: scale(1.08);
}

/* ==== MOBILE ==== */
@media (max-width: 900px) {
  .cita-destacada {
    flex-direction: column;
    height: auto;
    max-width: 92%;
  }

  .cita-imagen {
    width: 100%;
    height: 350px;
    overflow: hidden;
  }

  .cita-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    padding-top: 25px;
  }

  .cita-texto-con-logo {
    width: 100%;
    padding: 1.2rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cita-texto {
    padding: 1.2rem;
    font-size: 1rem;
    border-left: none;
  }

  .cita-logo {
    position: relative;
    /* width: 400px;
    margin: 1.5rem auto; */
  }
}