/* ============================================================
   opiniones.css
   Peru Andean Exploor - Sistema de Opiniones
   Estilos adaptados a la marca (verde #0EC932, Poppins)
   ============================================================ */

:root {
    --op-verde: #0EC932;
    --op-verde-oscuro: #0A9E26;
    --op-verde-suave: #EAF9EE;
    --op-verde-borde: #C9F0D2;
    --op-texto: #212121;
    --op-gris: #6c757d;
    --op-gris-claro: #9aa0a6;
    --op-fondo: #F4F7F5;
    --op-blanco: #ffffff;
    --op-dorado: #FFB400;
    --op-rojo: #dc3545;
    --op-sombra: 0 10px 30px rgba(16, 42, 24, 0.08);
    --op-sombra-fuerte: 0 20px 50px rgba(16, 42, 24, 0.16);
    --op-radio: 18px;
}

/* ================= SECCIÓN GENERAL ================= */
.op-seccion {
    background:
        radial-gradient(1000px 400px at 100% 0%, var(--op-verde-suave) 0%, transparent 60%),
        radial-gradient(800px 300px at 0% 100%, #F0F7EE 0%, transparent 55%),
        var(--op-fondo);
}

.op-titulo {
    color: var(--op-texto);
    font-weight: 700;
    margin-bottom: 12px;
}

.op-subtitulo {
    color: var(--op-gris);
    max-width: 640px;
    margin: 0 auto 10px;
    font-size: 1.05rem;
}

/* ================= RESUMEN DE CALIFICACIONES ================= */
.op-resumen {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 1.4fr minmax(260px, 1fr);
    gap: 28px;
    align-items: center;
    background: var(--op-blanco);
    border-radius: var(--op-radio);
    box-shadow: var(--op-sombra);
    border: 1px solid rgba(14, 201, 50, 0.12);
    padding: 34px 38px;
    margin: 34px auto 26px;
    animation: op-aparecer 0.6s ease both;
}

.op-resumen__izq {
    text-align: center;
    padding-right: 28px;
    border-right: 1px dashed #d8e2db;
}

.op-resumen__nota {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--op-texto);
    background: linear-gradient(135deg, var(--op-verde), #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.op-resumen__estrellas {
    margin: 10px 0 6px;
}

.op-resumen__estrellas .op-icono-estrella {
    font-size: 1.25rem;
}

.op-resumen__total {
    color: var(--op-gris);
    font-size: 0.9rem;
    margin: 0;
}

.op-resumen__der h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--op-texto);
    margin-bottom: 14px;
}

.op-barra {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 9px;
}

.op-barra__label {
    min-width: 58px;
    font-size: 0.85rem;
    color: var(--op-texto);
    font-weight: 600;
    white-space: nowrap;
}

.op-barra__label i {
    color: var(--op-dorado);
    font-size: 0.75rem;
}

.op-barra__track {
    flex: 1;
    height: 8px;
    background: #eef2ef;
    border-radius: 99px;
    overflow: hidden;
}

.op-barra__relleno {
    height: 100%;
    background: linear-gradient(90deg, var(--op-verde), #5EE07B);
    border-radius: 99px;
    transition: width 0.8s ease;
}

.op-barra__num {
    min-width: 24px;
    text-align: right;
    font-size: 0.85rem;
    color: var(--op-gris);
}

.op-resumen__cta {
    text-align: center;
    padding-left: 28px;
    border-left: 1px dashed #d8e2db;
}

.op-resumen__cta h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--op-texto);
    margin-bottom: 6px;
}

.op-resumen__cta p {
    color: var(--op-gris);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ================= BOTONES ================= */
.op-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.op-btn--primario {
    background: linear-gradient(135deg, var(--op-verde), var(--op-verde-oscuro));
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 201, 50, 0.3);
}

.op-btn--primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(14, 201, 50, 0.4);
    color: #fff;
    text-decoration: none;
}

.op-btn--secundario {
    background: var(--op-blanco);
    color: var(--op-verde-oscuro);
    border: 2px solid var(--op-verde);
}

.op-btn--secundario:hover {
    background: var(--op-verde-suave);
    color: var(--op-verde-oscuro);
    text-decoration: none;
}

.op-btn--pequeno {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.op-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ================= FILTROS ================= */
.op-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
}

.op-filtros select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--op-blanco) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    border: 1.5px solid #e0e6e2;
    border-radius: 50px;
    padding: 11px 44px 11px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--op-texto);
    cursor: pointer;
    min-width: 240px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.op-filtros select:focus {
    outline: none;
    border-color: var(--op-verde);
    box-shadow: 0 0 0 4px rgba(14, 201, 50, 0.15);
}

/* ================= LOADER ================= */
.op-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    gap: 16px;
    color: var(--op-gris);
}

.op-loader__spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--op-verde-borde);
    border-top-color: var(--op-verde);
    animation: op-girar 0.8s linear infinite;
}

/* ================= GRID DE TARJETAS ================= */
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.op-tarjeta {
    background: var(--op-blanco);
    border-radius: var(--op-radio);
    border: 1px solid rgba(14, 201, 50, 0.08);
    box-shadow: var(--op-sombra);
    padding: 26px 26px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: op-subir 0.55s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.op-tarjeta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--op-verde), #5EE07B, var(--op-verde));
}

.op-tarjeta:hover {
    transform: translateY(-6px);
    box-shadow: var(--op-sombra-fuerte);
    border-color: rgba(14, 201, 50, 0.25);
}

.op-tarjeta__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.op-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--op-blanco);
    outline: 2px solid var(--op-verde-borde);
}

.op-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.op-avatar--iniciales {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.op-tarjeta__id {
    flex: 1;
    min-width: 0;
}

.op-tarjeta__nombre {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--op-texto);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-tarjeta__origen {
    font-size: 0.85rem;
    color: var(--op-gris);
    margin: 0;
}

.op-bandera {
    font-size: 1rem;
    margin-right: 1px;
}

.op-verificado {
    color: var(--op-verde);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.op-verificado--grande {
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--op-verde-suave);
    color: var(--op-verde-oscuro);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--op-verde-borde);
}

.op-tarjeta__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}

.op-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--op-verde-suave);
    color: var(--op-verde-oscuro);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--op-verde-borde);
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-fecha {
    font-size: 0.78rem;
    color: var(--op-gris-claro);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.op-tarjeta__estrellas {
    margin-bottom: 12px;
}

.op-estrellas {
    display: inline-flex;
    gap: 3px;
}

.op-icono-estrella {
    color: var(--op-dorado);
    font-size: 0.95rem;
}

.op-icono-estrella--vacia {
    color: #dde3df;
}

.op-tarjeta__texto {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.op-tarjeta__btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--op-verde-oscuro);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.op-tarjeta__btn:hover {
    gap: 10px;
    color: var(--op-verde);
}

/* ================= ESTADO VACÍO ================= */
.op-vacio {
    text-align: center;
    padding: 60px 20px;
    color: var(--op-gris);
    background: var(--op-blanco);
    border-radius: var(--op-radio);
    border: 1px dashed #d8e2db;
}

.op-vacio i {
    font-size: 2.6rem;
    color: var(--op-verde);
    display: block;
    margin-bottom: 14px;
}

.op-vacio h3 {
    color: var(--op-texto);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* ================= ALERTAS ================= */
.op-alerta {
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.op-alerta--error {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #b02a37;
}

/* ================= CTA INFERIOR ================= */
.op-cta {
    margin-top: 44px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(14, 201, 50, 0.95), rgba(10, 158, 38, 0.95)),
        url('../img/carousel-1.jpg') center/cover;
    border-radius: 24px;
    padding: 48px 30px;
    color: #fff;
    box-shadow: 0 18px 40px rgba(14, 201, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.op-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 200px at 10% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
}

.op-cta h2 {
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.op-cta p {
    opacity: 0.95;
    max-width: 520px;
    margin: 0 auto 24px;
    position: relative;
}

.op-cta .op-btn {
    margin: 0 6px 8px;
    position: relative;
}

.op-cta .op-btn--primario {
    background: #fff;
    color: var(--op-verde-oscuro);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.op-cta .op-btn--primario:hover {
    background: #f2fff4;
    color: var(--op-verde-oscuro);
}

.op-cta .op-btn--secundario {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.op-cta .op-btn--secundario:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ================= MODAL ================= */
.op-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.op-modal--visible {
    opacity: 1;
}

.op-modal__fondo {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 20, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.op-modal__caja {
    position: relative;
    background: var(--op-blanco);
    border-radius: 22px;
    max-width: 660px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 34px 34px 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.3s ease;
}

.op-modal--visible .op-modal__caja {
    transform: translateY(0) scale(1);
}

.op-modal__cerrar {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f1f5f2;
    color: var(--op-gris);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 2;
}

.op-modal__cerrar:hover {
    background: var(--op-rojo);
    color: #fff;
    transform: rotate(90deg);
}

.op-modal__cabecera {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-right: 40px;
}

.op-modal__cabecera .op-avatar {
    width: 64px;
    height: 64px;
}

.op-modal__info {
    flex: 1;
    min-width: 0;
}

.op-modal__info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--op-texto);
    margin: 0 0 3px;
}

.op-modal__meta {
    font-size: 0.88rem;
    color: var(--op-gris);
    margin: 0;
}

.op-modal__ficha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--op-fondo);
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 20px;
}

.op-modal__ficha .op-estrellas {
    font-size: 1.1rem;
}

.op-modal__texto {
    color: #374151;
    font-size: 1rem;
    line-height: 1.85;
    white-space: pre-line;
    margin-bottom: 24px;
}

.op-modal__pie {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid #eef2ef;
    padding-top: 18px;
}

.op-cuerpo-bloqueado {
    overflow: hidden;
}

/* ================= FORMULARIO ================= */
.op-form-seccion {
    padding-bottom: 70px;
}

.op-form-card {
    background: var(--op-blanco);
    border-radius: 24px;
    border: 1px solid rgba(14, 201, 50, 0.12);
    box-shadow: var(--op-sombra);
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
    animation: op-aparecer 0.6s ease both;
}

.op-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--op-verde), #5EE07B, var(--op-verde));
}

.op-form-card__titulo {
    text-align: center;
    margin-bottom: 6px;
}

.op-form-card__titulo h2 {
    font-weight: 700;
    color: var(--op-texto);
    margin-bottom: 8px;
}

.op-form-card__titulo p {
    color: var(--op-gris);
    max-width: 560px;
    margin: 0 auto 6px;
}

.op-form {
    margin-top: 30px;
}

.op-form__fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.op-form__campo {
    margin-bottom: 22px;
}

.op-form__campo label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--op-texto);
    margin-bottom: 8px;
}

.op-form__campo label .op-obligatorio {
    color: var(--op-rojo);
}

.op-form__campo input[type="text"],
.op-form__campo input[type="email"],
.op-form__campo input[type="date"],
.op-form__campo select,
.op-form__campo textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e6e2;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: var(--op-texto);
    background: #fcfdfc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.op-form__campo textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.7;
}

.op-form__campo input:focus,
.op-form__campo select:focus,
.op-form__campo textarea:focus {
    outline: none;
    border-color: var(--op-verde);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 201, 50, 0.15);
}

.op-form__campo input.op-campo--error,
.op-form__campo select.op-campo--error,
.op-form__campo textarea.op-campo--error {
    border-color: var(--op-rojo);
    background: #fff7f7;
}

.op-form__campo select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.op-form__error {
    display: block;
    color: var(--op-rojo);
    font-size: 0.78rem;
    margin-top: 6px;
    min-height: 0;
}

.op-form__campo--con-error .op-form__error {
    min-height: 14px;
}

.op-form__ayuda {
    font-size: 0.78rem;
    color: var(--op-gris-claro);
    margin-top: 6px;
}

/* Rating de estrellas */
.op-rating-zona {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.op-rating {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    font-size: 2rem;
    color: #dde3df;
    transition: color 0.15s ease, transform 0.15s ease;
}

.op-rating:hover {
    transform: scale(1.15);
}

.op-rating--hover,
.op-rating--activa {
    color: var(--op-dorado);
}

/* Archivo de imagen */
.op-archivo {
    position: relative;
}

.op-archivo input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.op-archivo__zona {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px dashed #c9d6cd;
    border-radius: 14px;
    padding: 18px 20px;
    background: #fbfdfb;
    transition: border-color 0.3s ease, background 0.3s ease;
    pointer-events: none;
}

.op-archivo:hover .op-archivo__zona {
    border-color: var(--op-verde);
    background: var(--op-verde-suave);
}

.op-archivo__zona i {
    font-size: 1.6rem;
    color: var(--op-verde);
}

.op-archivo__zona span {
    font-size: 0.88rem;
    color: var(--op-gris);
}

.op-archivo__zona strong {
    color: var(--op-verde-oscuro);
}

.op-vista-previa {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 180px;
    border: 1px solid #e0e6e2;
    box-shadow: var(--op-sombra);
}

.op-vista-previa img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Contador */
.op-contador {
    font-size: 0.78rem;
    color: var(--op-gris-claro);
    text-align: right;
    margin-top: 6px;
}

.op-contador--limite {
    color: var(--op-rojo);
    font-weight: 600;
}

/* Alerta del formulario */
.op-alerta-form {
    border-radius: 14px;
    padding: 15px 18px;
    margin-bottom: 22px;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #b02a37;
    font-size: 0.9rem;
}

/* Botón de envío */
.op-form__enviar {
    margin-top: 6px;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.op-form__nota {
    text-align: center;
    color: var(--op-gris-claro);
    font-size: 0.8rem;
    margin: 16px auto 0;
    max-width: 560px;
}

/* Panel de éxito */
.op-exito {
    text-align: center;
    padding: 46px 30px;
    animation: op-aparecer 0.6s ease both;
}

.op-exito__icono {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--op-verde-suave);
    color: var(--op-verde);
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 2px solid var(--op-verde-borde);
    animation: op-latido 1.6s ease infinite;
}

.op-exito h2 {
    font-weight: 700;
    color: var(--op-texto);
    margin-bottom: 10px;
}

.op-exito p {
    color: var(--op-gris);
    max-width: 460px;
    margin: 0 auto 26px;
}

/* ================= ANIMACIONES ================= */
@keyframes op-aparecer {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes op-subir {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes op-girar {
    to { transform: rotate(360deg); }
}

@keyframes op-latido {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .op-resumen {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 30px;
    }

    .op-resumen__izq,
    .op-resumen__cta {
        padding: 0;
        border: none;
    }

    .op-resumen__izq {
        padding-bottom: 20px;
    }

    .op-resumen__cta {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .op-form__fila {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .op-form-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .op-modal__caja {
        padding: 26px 20px 20px;
    }
}

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

    .op-resumen__nota {
        font-size: 3.2rem;
    }

    .op-cta {
        padding: 36px 20px;
    }

    .op-filtros select {
        min-width: 100%;
    }

    .op-filtros {
        flex-direction: column;
    }

    .op-filtros select {
        width: 100%;
    }

    .op-modal__pie {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .op-tarjeta,
    .op-resumen,
    .op-modal__caja,
    .op-exito__icono {
        animation: none;
        opacity: 1;
    }

    .op-modal,
    .op-modal__caja,
    .op-btn,
    .op-tarjeta {
        transition: none;
    }
}
