/* SECCION_HERO */

.hero-dra {
    width: 100%;
    padding: 8%;
    background-image: url("images/BENNER PARA MI.webp"); /* DESKTOP */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #5b3b58;
    border-radius: 0 0px 90px 90px;
    box-shadow: 0 0px 5px rgba(0,0,0,0.2);
}

/* Contenedor */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* COLUMNA DE TEXTO */
.hero-text {
    max-width: 900px;
    margin-left: 600px;
}

.hero-text h2 {
    font-size: 50px;
    font-weight: 700;
    color: #C893B1;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 30px;
    line-height: 1.6;
    color: #3c3c3c;
}

/* ---------------- BARRA MISION ---------------- */
.barra-mision {
    width: fit-content;
    margin: 0 auto;
    background: #c789a8;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    margin-top: -75px;
}

.barra-mision h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.barra-mision p {
    margin: 5px 0 0;
    font-size: 40px;
    letter-spacing: 1px;
}

/* ======================================================
   RESPONSIVE + CAMBIO DE IMAGENES + TEXTO DEBAJO
   ====================================================== */

/* ---------- TABLET HASTA 1024px ---------- */
@media (max-width: 1024px) {

    .hero-dra {
        position: relative;
        width: 100%;
        padding: 45% 0 0 0; /* Altura del banner sin texto */
        background-image: url("images/hero-tablet.webp");
        background-size: cover;
        background-position: center;
        border-radius: 0 0 70px 70px;
    }

    /* Sólo imagen, sin overlay ni texto dentro */
    .hero-dra::before {
        display: none;
    }

    /* El contenedor ya no usa flex para separar texto */
    .hero-content {
        display: block;
        padding: 0;
    }

    /* El texto baja debajo del banner */
    .hero-text {
        margin: 30px auto 0 !important;
        max-width: 90%;
        text-align: center;
        position: static !important;
        margin-left: 0 !important;
    }

    /* Asegurar que nada quede encima del banner */
    .hero-dra * {
        position: static !important;
        z-index: 0 !important;
    }

    .hero-text h2 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 24px;
    }

    .barra-mision {
        margin-top: 20px;
        padding: 15px 35px;
    }

    .barra-mision h2 {
        font-size: 40px;
    }

    .barra-mision p {
        font-size: 28px;
    }
}

/* ---------- PHABLET HASTA 768px ---------- */
@media (max-width: 768px) {

    .hero-dra {
        padding: 55% 0 0 0;
        background-image: url("images/hero-phablet.webp");
        border-radius: 0 0 60px 60px;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 22px;
    }

    .barra-mision {
        padding: 12px 28px;
    }

    .barra-mision h2 {
        font-size: 32px;
    }

    .barra-mision p {
        font-size: 24px;
    }
}

/* ---------- MOVIL HASTA 480px ---------- */
@media (max-width: 480px) {

    .hero-dra {
        padding: 65% 0 0 0;
        background-image: url("images/banner responsivo.webp");
        border-radius: 0 0 45px 45px;
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        display: block;
    }

    .hero-text {
    margin-top: 20px;
    max-width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,      /* transparente arriba */
        rgba(255, 255, 255, 0.7) 10%,   /* empieza a aparecer */
        rgba(255, 255, 255, 0.7) 100%   /* opaco abajo */
    );
    padding: 10px;
}


    .hero-text h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 18px;
        line-height: 1.5;
    }

    .barra-mision {
        padding: 10px 20px;
        border-radius: 40px;
    }

    .barra-mision h2 {
        font-size: 26px;
    }

    .barra-mision p {
        font-size: 18px;
    }
}

/* ---------- MOVIL: h2 encima de la imagen ---------- */
@media (max-width: 480px) {

  /* Aseguramos que el contenedor del banner permita posicionar hijos encima */
  .hero-dra {
    position: relative; /* ya lo tenías, lo reforzamos */
    overflow: visible;  /* para que el h2 absoluto no se recorte */
  }

  /* Forzamos el h2 a posicionarse encima de la imagen */
  .hero-dra .hero-text h2 {
    position: absolute !important;  /* !important para sobreescribir reglas globales */
    top: -115% !important;             /* ajusta este valor para subir/bajar el título */
    left: 20% !important;           /* ajusta para moverlo a la izquierda/derecha */
    transform: translateX(0) !important; /* quitamos el centrado por transform para control preciso */
    z-index: 60 !important;         /* debe estar por encima del degradado y la imagen */
    margin: 0;
    padding: 4px 8px;
    background: transparent !important; /* sin caja blanca alrededor */
    color: #C893B1;
    font-size: 32px;
    line-height: 1;
    text-align: left;
    pointer-events: none; /* evita que interfiera con interacciones táctiles */
  }

  /* Mantener el bloque de texto (p) abajo con degradado, fuera del h2 */
  .hero-dra .hero-text {
    position: relative !important;   /* referencia local para el pseudo-elemento */
    margin-top: 110px;               /* deja espacio para que el H2 no se superponga al párrafo */
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    border-radius: 12px;
    background: none !important;     /* quitamos cualquier fondo directo */
  }

  /* El degradado se pinta con un pseudo-elemento, no empuja el contenido */
  .hero-dra .hero-text::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;   /* ocupa todo el .hero-text */
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.7) 12%,
      rgba(255,255,255,0.9) 100%
    );
    z-index: -1;
    border-radius: 12px;
  }

  /* En caso de que tengas la regla .hero-dra * { position: static !important; } */
  /* los !important anteriores la sobrescriben; si quieres limpiar el CSS sería mejor eliminar esa regla. */
}









/* ---------------- SECCION MISION ---------------- */

.seccion-mision {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 0px;
    padding: 80px 0px 0px 160px;
    position: relative;
}

/* TEXTO */
.mision-texto h2 {
    font-size: 40px;
    color: #C893B1;
    margin-bottom: 0px;
    font-weight: normal;
}

.mision-texto p {
    font-size: 23px;
    line-height: 1.6;
    color: #555;
    max-width: 690px;
}

/* IMAGEN */
.mision-imagen img {
    width: 100%;
    border-radius: 150px 0px 0px 150px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: block;
}



/* SECCIÓN PLACA */
.placa-rosa {
    width: 100%;
    height: 220px;
    background-image: url("images/pleca.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8%;
    margin-top: 50px;
}

.placa-texto {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
    max-width: 60%;
    text-align: right;
}

.placa-texto strong {
    font-weight: 700;
}


/* ======================================================
   RESPONSIVE – SECCIÓN MISIÓN + PLACA ROSA
   ====================================================== */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {

    .seccion-mision {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 40px;
        text-align: center;
    }

    .mision-texto p {
        max-width: 100%;
        margin: 0 auto;
    }

    .mision-imagen img {
        border-radius: 100px;
        width: 80%;
        margin: 0 auto;
    }

    .placa-rosa {
        height: auto;
        padding: 40px;
        justify-content: center;
        text-align: center;
    }

    .placa-texto {
        max-width: 80%;
        font-size: 22px;
        text-align: center;
    }
}

/* ---------- TABLET / PHABLET (≤ 768px) ---------- */
@media (max-width: 768px) {

    .seccion-mision {
        padding: 50px 30px;
    }

    .mision-texto h2 {
        font-size: 34px;
    }

    .mision-texto p {
        font-size: 20px;
        line-height: 1.5;
    }

    .mision-imagen img {
        width: 90%;
        border-radius: 80px;
    }

    .placa-rosa {
        padding: 35px 25px;
    }

    .placa-texto {
        font-size: 20px;
        max-width: 90%;
    }
}

/* ---------- MÓVIL (≤ 480px) ---------- */
@media (max-width: 480px) {

    .seccion-mision {
        padding: 0px 20px;
        gap: 20px;
    }

    .mision-texto h2 {
        font-size: 28px;
    }

    .mision-texto p {
        font-size: 18px;
    }

    .mision-imagen img {
        width: 100%;
        border-radius: 60px;
    }

    .placa-rosa {
        padding: 30px 20px;
        background-position: center;
    }

    .placa-texto {
        font-size: 18px;
        max-width: 100%;
    }
}

/* ---------- MÓVIL PEQUEÑO (≤ 360px) ---------- */
@media (max-width: 360px) {

    .mision-texto h2 {
        font-size: 24px;
    }

    .mision-texto p {
        font-size: 16px;
    }

    .placa-texto {
        font-size: 16px;
    }
}



/* ================= SECCIÓN VISIÓN ================= */

.vision-section {
    width: 100%;
    padding: 60px 20px 80px;
    background: linear-gradient(to bottom, #ffffff 0%, #f4ebf0 100%);
    text-align: center;
}

/* Contenedor principal con borde redondeado */
.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 290px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    /* 🔥 SOLUCIÓN PARA QUE LA IMAGEN NO DEJE ESPACIOS BLANCOS */
    overflow: hidden;
	height: 500px;
}

/* Columna izquierda */
.vision-left {
    flex: 1;
    text-align: center;
    padding: 65px;
}

.vision-left h2 {
    font-size: 2.6rem;
    color: #953478;
    font-weight: 700;
    margin-bottom: 10px;
}

.vision-left h3 {
    font-size: 1.5rem;
    color: #953478;
    margin-bottom: 25px;
}

.vision-left p {
    font-size: 1.15rem;
    color: #4d4d4d;
    line-height: 1.6;
}

.vision-left p span {
    color: #953478;
    font-weight: 600;
}

/* Columna derecha con imagen redondeada */
.vision-right {
    flex: 1;
}

.vision-right img {
    width: 100%;
    height: auto;
    border-radius: 0 290px 290px 0;
    object-fit: cover;
}

/* Sección inferior */
.vision-bottom {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.vision-bottom img {
    width: 130px;
    height: auto;
    border-radius: 50%;
    box-shadow: inset 0 12px 18px rgba(0, 0, 0, 0.15);
}

.vision-bottom p {
    font-size: 1.25rem;
    max-width: 700px;
    color: #5a5a5a;
}

.vision-bottom p span {
    color: #953478;
    font-weight: 700;
}



/* ===================== */
/*   📱 RESPONSIVE CSS   */
/* ===================== */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {

    .vision-container {
        flex-direction: column;
        height: auto;
        border-radius: 80px;
        padding: 40px 30px;
    }

    .vision-left {
        padding: 40px 30px;
        text-align: center;
    }

    .vision-right img {
        border-radius: 50px;
        height: 350px;
        object-fit: cover;
    }

    .vision-bottom {
        flex-direction: column;
        text-align: center;
    }

    .vision-bottom img {
        width: 110px;
    }
}

/* ---------- MÓVIL (≤ 768px) ---------- */
@media (max-width: 768px) {

    .vision-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        border-radius: 60px;
    }

    .vision-left {
        padding: 20px;
    }

    .vision-left h2 {
        font-size: 2rem;
    }

    .vision-left h3 {
        font-size: 1.25rem;
    }

    .vision-left p {
        font-size: 1rem;
    }

    .vision-right img {
        width: 100%;
        height: 260px;
        border-radius: 40px;
        object-fit: cover;
    }

    .vision-bottom img {
        width: 90px;
    }

    .vision-bottom p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

/* ---------- MÓVIL PEQUEÑO (≤ 480px) ---------- */
@media (max-width: 480px) {

    .vision-container {
        border-radius: 35px;
        padding: 20px 15px;
    }

    .vision-left h2 {
        font-size: 1.8rem;
    }

    .vision-left h3 {
        font-size: 1.1rem;
    }

    .vision-right img {
        height: 330px;
        border-radius: 30px;
    }

    .vision-bottom img {
        width: 75px;
    }

    .vision-bottom p {
        font-size: 1rem;
        max-width: 90%;
    }
}





/* =================== SECCIÓN VALORES =================== */

.valores-section {
  width: 100%;
  padding: 150px 0;
}

.valores-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
}

/* IZQUIERDA */
.valores-left h2 {
  color: #d88f96;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.valores-left h3 {
  color: #e5a7ad;
  font-size: 2rem;
  margin-bottom: 20px;
}

.valores-left p {
  font-size: 1.2rem;
  color: #626262;
  max-width: 450px;
}

/* DERECHA */
.valores-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* FLECHAS ESCRITORIO */
.flecha {
  width: 30px;
  height: 30px;
  color: #cf8a92;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}

.flecha:hover {
  background-color: #fff;
}

/* TARJETA */
.valor-card {
  background-color: #dba3a7;
  color: white;
  padding: 60px 80px;
  border-radius: 80px;
  width: 600px;
  height: 300px;
  text-align: left;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.4);
  transition: opacity 0.4s ease;
  opacity: 1;
}

.valor-card.fade-out { opacity: 0; }
.valor-card.fade-in { opacity: 1; }

/* ICONO + TÍTULO */
.valor-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.valor-icon {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}

.valor-header h4 {
  font-size: 2rem;
  margin: 0;
  color: white;
}

.valor-card p {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: white;
}

/* FLECHAS RESPONSIVE (OCULTAS EN ESCRITORIO) */
.flechas-responsive {
  display: none;
}


/* ======================================================
   RESPONSIVE – SECCIÓN VALORES
   ====================================================== */

/* ==================== IZQUIERDA ==================== */

.valores-left h2 {
  color: #d88f96;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.valores-left h3 {
  color: #e5a7ad;
  font-size: 2rem;
  margin-bottom: 20px;
}

.valores-left p {
  font-size: 1.2rem;
  color: #626262;
  max-width: 450px;
}


/* ======================================================
   RESPONSIVE – COLUMNA IZQUIERDA
   ====================================================== */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .valores-left h2 {
    font-size: 2.6rem;
  }

  .valores-left h3 {
    font-size: 1.8rem;
  }

  .valores-left p {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* ---------- PHABLET / TABLET PEQUEÑA (≤ 768px) ---------- */
@media (max-width: 768px) {
  .valores-left h2 {
    font-size: 2.3rem;
  }

  .valores-left h3 {
    font-size: 1.6rem;
  }

  .valores-left p {
    font-size: 1.05rem;
  }
}

/* ---------- MÓVIL (≤ 480px) ---------- */
@media (max-width: 480px) {
  .valores-left h2 {
    font-size: 2rem;
  }

  .valores-left h3 {
    font-size: 1.4rem;
  }

  .valores-left p {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* ---------- MÓVIL PEQUEÑO (≤ 360px) ---------- */
@media (max-width: 360px) {
  .valores-left h2 {
    font-size: 1.8rem;
  }

  .valores-left h3 {
    font-size: 1.25rem;
  }

  .valores-left p {
    font-size: 0.95rem;
  }
}

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {

  .valores-section {
    padding: 100px 0;
  }

  .valores-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .valores-right {
    flex-direction: column;
  }

  /* Ocultar flechas laterales */
  .flecha-izq,
  .flecha-der {
    display: none;
  }

  /* Mostrar flechas inferiores */
  .flechas-responsive {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
  }

  .flechas-responsive .flecha {
    width: 45px;
    height: 45px;
    font-size: 45px;
    color: #cf8a92;
    border-radius: 8px;
  }

  .valor-card {
    width: 90%;
    height: 330px;
    padding: 50px 50px;
    border-radius: 60px;
  }

  .valor-header {
    justify-content: center;
  }

  .valor-card p {
    text-align: center;
  }
}

/* ---------- PHABLET (≤ 768px) ---------- */
@media (max-width: 768px) {

  .valor-card {
    padding: 45px 40px;
    border-radius: 50px;
  }

  .flechas-responsive {
    gap: 30px;
  }

  .valor-icon { width: 70px; }
  .valor-header h4 { font-size: 1.7rem; }
  .valor-card p { font-size: 1.05rem; }
}

/* ---------- MÓVIL (≤ 480px) ---------- */
@media (max-width: 480px) {

  .valores-section { padding: 0px 0; }

  .valor-card {
    padding: 40px 25px;
    border-radius: 40px;
  }

  .valor-header { flex-direction: column; }

  .flechas-responsive {
    gap: 5px;
	margin-top: 0;
  }

  .valor-icon { width: 60px; }
  .valor-header h4 { font-size: 1.5rem;text-align: center; }
  .valor-card p { font-size: 0.95rem; }
}

/* ---------- MÓVIL PEQUEÑO (≤ 360px) ---------- */
@media (max-width: 360px) {

  .valor-card {
    border-radius: 30px;
    padding: 35px 20px;
  }

  .flechas-responsive { gap: 20px; }

  .valor-header h4 { font-size: 1.35rem; }
  .valor-card p { font-size: 0.9rem; }
}



/* QUIEN SOY YO */

:root {
  --pink: #c887a5;
  --pink-dark: #b16486;
  --accent: #7a2c66;
  --text: #777;
  --bg1: #f4ebf0;
  --bg2: #fbf0f0;
  --maxw: 1100px;
}

/* CONTENEDOR PRINCIPAL */
.quien-soy {
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 62%);
  padding: 48px 24px 72px;
  display: flex;
  justify-content: center;
}

.quien-inner {
  width: 100%;
  max-width: var(--maxw);
  position: relative;
}

/* PASTILLA SUPERIOR DERECHA */
.quien-pill {
  position: absolute;
  right: -450px;
  top: -100px;;
  background: var(--pink);
  color: #fff;
  padding: 20px 200px 26px 150px;
  border-radius: 60px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  font-weight: 700;
  font-size: 42px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  white-space: nowrap;
}

/* FILA PRINCIPAL */
.quien-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-top: 90px; /* empuja por la pastilla */
  flex-wrap: wrap;
}

/* FOTO IZQUIERDA */
.quien-left {
  width: 360px;
  min-width: 240px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -138px;
}

.quien-left img {
  width: 330px;
  height: 330px;
  object-fit: cover;
  border-radius: 0 0 150px 150px;
  box-shadow: 0 16px 28px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

/* TEXTO DERECHA */
.quien-right {
  flex: 1;
  min-width: 300px;
  max-width: 640px;
  padding-top: 20px;
}

.quien-right h1 span{
  font-size: 26px;
  margin: 8px 0 12px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.25;
}

.quien-right h1{
  font-size: 26px;
  margin: 8px 0 12px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1.25;
}

.quien-right .nombre {
  color: var(--accent);
  font-weight: 800;
}

.quien-right p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

/* BLOQUES INFERIORES */
.quien-bottom {
  display: flex;
  gap: 32px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.bottom-card {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  text-align: center;
}

/* CÁPSULAS */
.capsule {
  width: 100%;
  max-width: 420px;
  height: 110px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin: 0 auto;
}

.capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO INFERIOR */
.bottom-card p {
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.bottom-card p strong {
  color: #555;
  font-weight: 700;
}


/* ====================================================== */
/*                    📱 RESPONSIVE TOTAL                 */
/* ====================================================== */


/* ===================== TABLET (≤ 1024px) ===================== */
@media (max-width: 1024px) {

  /* Pastilla centrada sin empujar la imagen */
  .quien-pill {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: -40px;
    padding: 18px 90px;
    font-size: 32px;
    border-radius: 45px;
    white-space: normal;
    text-align: center;
  }

  /* Espaciado correcto abajo de la pastilla */
  .quien-row {
    margin-top: 100px !important;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* Foto sin desplazamiento negativo */
  .quien-left {
    margin-top: 0 !important;
  }

  .quien-left img {
    width: 300px;
    height: 300px;
    border-radius: 0 0 130px 130px;
  }

  /* Texto centrado */
  .quien-right {
    max-width: 90%;
    text-align: center;
  }

  .quien-right h1,
  .quien-right h1 span {
    font-size: 24px;
  }

  .quien-right p {
    font-size: 16px;
  }

  /* Cápsulas inferiores */
  .quien-bottom {
    justify-content: center;
    gap: 26px;
  }

  .capsule {
    max-width: 380px;
    height: 95px;
  }
}



/* ===================== MÓVIL (≤ 768px) ===================== */
@media (max-width: 768px) {

  /* Pastilla más pequeña y centrada */
  .quien-pill {
    top: -25px;
    padding: 14px 60px;
    font-size: 24px;
    border-radius: 34px;
    transform: translateX(-50%);
  }

  .quien-row {
    margin-top: 110px !important;
    flex-direction: column;
    align-items: center;
  }

  .quien-left img {
    width: 250px;
    height: 250px;
    border-radius: 0 0 100px 100px;
  }

  .quien-right {
    max-width: 100%;
    padding: 0 12px;
  }

  .quien-right h1,
  .quien-right h1 span {
    font-size: 22px;
  }

  .quien-right p {
    font-size: 15px;
  }

  .capsule {
    height: 90px;
    max-width: 320px;
  }

  .bottom-card p {
    font-size: 14px;
  }
}



/* ===================== MÓVIL PEQUEÑO (≤ 480px) ===================== */
@media (max-width: 480px) {

  .quien-pill {
    top: -20px;
    padding: 12px 34px;
    font-size: 18px;
    border-radius: 28px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .quien-row {
    margin-top: 90px !important;
    gap: 20px;
  }

  .quien-left img {
    width: 200px;
    height: 200px;
    border-radius: 0 0 90px 90px;
  }

  .quien-right h1,
  .quien-right h1 span {
    font-size: 20px;
  }

  .quien-right p {
    font-size: 14px;
  }

  .capsule {
    height: 80px;
    max-width: 280px;
  }

  .bottom-card p {
    font-size: 13px;
  }
}




