.reclamo-container{
	font-family:'Inter',sans-serif;
    max-width:1100px;
    margin:auto;
    padding:10px 0px;
}

#enviareclamo{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow: 0 10px 40px rgba(13,110,253,.08), 0 2px 8px rgba(0,0,0,.04); 
	border:1px solid rgba(13,110,253,.06);
}

/* HEADER */

.reclamo-header{
    margin-bottom:10px;
}

.logo-reclamo{
    width:120px;
    margin-bottom:5px;
}

.reclamo-header h1{
    font-size:38px;
    font-weight:800;
    color:#0d6efd;
    margin-bottom:2px;
}

.reclamo-header p{
    color:#777;
    font-size:16px;
	align-text:center;
}

/* TITULOS */

.section-form-title{
    display:flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#0d6efd,#3d8bfd);
    color:#fff;
    padding:8px 12px;
    border-radius:12px;
    margin:10px 0 10px;
    font-size:15px;
    font-weight:700;
}

.section-form-title i{
    font-size:22px;
}

/* INPUTS */

.form-control-rv{
    border-radius:10px;
    border:1px solid #dfe6e9;
    min-height:30px;        /* 🔥 antes era más alto */
    padding:5px 15px;       /* 🔥 controla tamaño real */
    font-size:14px;         /* más compacto */
    box-shadow:none;
    transition:0.2s;
	width:100%;
	background:#fcfdff;
}

.form-control-rv:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,.12);
}

```css
/* INPUT BLOQUEADO */
.input-disabled{
    background:#edf2f7 !important;

    color:#8a8a8a !important;

    border:1px dashed #b8c2cc !important;

    cursor:not-allowed;

    opacity:.85;

    box-shadow:none !important;
}

/* INPUT DISABLED NATIVO */
.form-control-rv:disabled{
    background:#edf2f7;

    color:#8a8a8a;

    border:1px dashed #b8c2cc;

    cursor:not-allowed;

    opacity:.9;
}
```


/* TEXTAREA */

textarea.form-control-rv{
    min-height:110px;   /* antes 140px */
    padding:10px 12px;
	border-radius:10px;
}

/* LABELS */

label{
    font-weight:600;
    color:#2d3436;
    margin-bottom:5px;   /* antes 8px */
    font-size:13px;
}
/* PLACEHOLDER */
.form-control-rv::placeholder{
    color:rgba(0,0,0,0.35);
    opacity:1;
}

/* BOOTSTRAP */
.form-control::placeholder{
    color:rgba(0,0,0,0.35);
    opacity:1;
}

/* RADIOS */

.radio-inline{
    margin-right:20px;
    font-weight:500;
}

/* ALERTAS */

.element-separator{
    background:#fff8e1;
    border-left:5px solid #ffc107;
    padding:15px;
    border-radius:10px;
}

.element-separator ul{
    padding-left:20px;
}

.element-separator li{
    margin-bottom:15px;
    line-height:1.7;
    color:#555;
}

/* BOTON */

.btn-theme-colored{
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    border:none;
    padding:14px 40px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    transition:0.3s;
}

.btn-theme-colored:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(13,110,253,.3);
}

.btn-bloqueado{
    pointer-events: none !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* INPUT GROUP */

.input-group-addon{
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:0 12px 12px 0;
}

/* CONTENEDOR DEL RADIO */
.radio-custom{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-right:10px;
    cursor:pointer;
    font-weight:600;
    color:#444;
    position:relative;
    padding:5px 5px;
    border:1px solid #dfe6e9;
    border-radius:12px;
    transition:all .3s ease;
    background:#fff;
}

/* OCULTAR RADIO ORIGINAL */
.radio-custom input[type="radio"]{
    display:none;
}

/* CIRCULO */
.radio-custom .radio-circle{
    width:20px;
    height:20px;
    border:2px solid #0d6efd;
    border-radius:50%;
    position:relative;
    transition:.3s;
}

/* PUNTO INTERNO */
.radio-custom .radio-circle::after{
    content:'';
    width:10px;
    height:10px;
    background:#0d6efd;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0);
    transition:.3s;
}

/* ACTIVO */
.radio-custom input[type="radio"]:checked + .radio-circle::after{
    transform:translate(-50%,-50%) scale(1);
}

/* CARD ACTIVA */
.radio-custom:has(input[type="radio"]:checked){
    background:#eef4ff;
    border-color:#0d6efd;
    color:#0d6efd;
    box-shadow:0 3px 8px rgba(13,110,253,.15);
}

/* HOVER */
.radio-custom:hover{
    border-color:#0d6efd;
    transform:translateY(-2px);
}
.radio-group{
    display:flex;
    flex-direction:row;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

/* OPCIONAL: evitar que bajen de línea */
.radio-group.inline-nowrap{
    flex-wrap:nowrap;
}

.seguro-group .radio-custom{
    min-width:180px;
}
.form-group{
    margin-bottom:10px;
}

.input-group .form-control{
    height:38px;
}

.input-group-addon{
    padding:6px 10px;
}
/* FECHA MODERNA */
.date-wrapper{
    position:relative;
    width:100%;
}

.input-date{
    padding-right:45px !important;
    border-radius:10px !important;
    height:36px;
}
.input-date::placeholder{
    color:rgba(0,0,0,0.35);
    opacity:1;
}

/* ICONO */
.calendar-icon{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#0d6efd;
    pointer-events:none;
    font-size:16px;
}

/* ICONO NATIVO */
.input-date::-webkit-calendar-picker-indicator{
    position:absolute;
    right:10px;
    width:40px;
    height:40px;
    opacity:0;
    cursor:pointer;
}

/* SOLO GENERO */
.genero-inline{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
}

/* ITEMS GENERO */
.genero-item{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:6px 5px;

    border-radius:10px;

    white-space:nowrap;
}
/* TEXTO DE AYUDA */
.input-help{
    display:block;
    font-size:11px;
    color:#8a8a8a;
    line-height:1.4;
	padding-left:4px;
}
.input-help-radio{
    display:block;

    font-size:11px;
    color:#8a8a8a;

    padding-left:4px;
    line-height:1.4;
}
/* SELECT MODERNO */
.form-select-rv{
    width:100%;
    height:36px;

    padding:4px 14px;

    border:1px solid #dfe6e9;
    border-radius:10px;

    background-color:transparent;

    font-size:12px;
    color:#444;

    outline:none;
    box-shadow:none;

    transition:.25s ease;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    /* flecha personalizada */
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230d6efd' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%230d6efd' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 12px center;

    padding-right:40px;
}

/* FOCUS */
.form-select-rv:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,.12);
}

/* OPTION */
.form-select-rv option{
    color:#333;
}
/* CONTENEDOR */
.enviar-inline{
    display:flex;
    gap:10px;
    align-items:center;
}

/* BASE */
.enviar-item{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:4px 14px;
    border-radius:15px;
    border:1px solid #dfe6e9;

    cursor:pointer;
    transition:.25s;
    font-weight:600;
    background:#fff;
}

/* OCULTAR RADIO */
.enviar-item input{
    display:none;
}

/* CÍRCULO */
.radio-circle{
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid #999;
    position:relative;
}

.radio-circle::after{
    content:'';
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0);
    transition:.2s;
}

/* ===================== */
/* SI (VERDE) */
/* ===================== */
.enviar-item input[value="1"]:checked + .radio-circle{
    border-color:#28a745;
}

.enviar-item input[value="1"]:checked + .radio-circle::after{
    background:#28a745;
    transform:translate(-50%,-50%) scale(1);
}

.enviar-item:has(input[value="1"]:checked){
    background:#e9f9ee;
    border-color:#28a745;
    color:#28a745;
}

/* ===================== */
/* NO (ROJO) */
/* ===================== */
.enviar-item input[value="0"]:checked + .radio-circle{
    border-color:#dc3545;
}

.enviar-item input[value="0"]:checked + .radio-circle::after{
    background:#dc3545;
    transform:translate(-50%,-50%) scale(1);
}

.enviar-item:has(input[value="0"]:checked){
    background:#fdecec;
    border-color:#dc3545;
    color:#dc3545;
}
.seguro-inline{
    display:flex;
    flex-wrap:wrap;   /* 🔥 clave: permite salto de línea */
    gap:10px;
    align-items:center;
}
/* RESPONSIVE */

@media(max-width:768px){

    #enviareclamo{
        padding:25px;
    }

    .reclamo-header h1{
        font-size:28px;
    }

    .section-form-title{
        font-size:16px;
    }

}
/* CONTENEDOR */
.buscar-reclamo-box{
	font-family:'Inter',sans-serif;
    max-width:700px;
    margin:0px auto;
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    border:1px solid #edf2f7;
}
/* TITULO */
.buscar-title{
    text-align:center;
    margin-bottom:15px;
}
.buscar-title h2{
    color:#0d6efd;
    font-size:30px;
    font-weight:800;
    margin-bottom:2px;
}
.buscar-title p{
    color:#777;
    font-size:14px;
    margin:0;
}

/* FORMULARIO */
.buscar-form{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

/* INPUT */
.buscar-input{
    flex:1;
    min-width:220px;
    height:52px;
    border-radius:14px;
    border:1px solid #dfe6e9;
    padding:0 15px;
    font-size:15px;
    transition:.25s ease;
    outline:none;
}

.buscar-input:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);
}

/* BOTON */
.buscar-btn{
    height:52px;
    padding:0 28px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    color:#fff;
    font-weight:700;
    font-size:15px;
    transition:.25s ease;
}

.buscar-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(13,110,253,.25);
}

/* ICONO */
.buscar-btn i{
    margin-right:8px;
}

/* TEXTO AYUDA */
.buscar-help{
    margin-top:12px;
    font-size:13px;
    color:#8a8a8a;
    text-align:center;
}
/* CARD PRINCIPAL */

.card-reclamo{
	font-family:'Inter',sans-serif;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:20px;
    animation:fadeCard .4s ease;
}

/* HEADER */
.card-reclamo-header{
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    padding:25px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}
.card-reclamo-header h3{
    margin:0;
    font-size:28px;
    font-weight:800;
	color:#fff;
    letter-spacing:.5px;
}
/* BODY */
.card-reclamo-body{
    padding:20px;
}

/* ITEMS */
.info-item{
    background:#f8f9fc;
    border-radius:15px;
    padding:10px 14px;
    margin-bottom:12px;
    line-height:1.1;
    border:1px solid #edf1f7;
}

.info-item strong{
    display:block;
    color:#0d6efd;
    margin-bottom:5px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* RESPUESTA */

.respuesta-box{
    background:#eef6ff;
    border-left:5px solid #0d6efd;
    padding:20px;
    border-radius:15px;
    line-height:1.8;
    margin-top:10px;
}

/* BADGES */
.badge{
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}

/* BOTON */

.btn-otro-reclamo{
    border:none;
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 5px 15px rgba(13,110,253,.2);
}

.btn-otro-reclamo:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(13,110,253,.3);
}

/* ANIMACION */

@keyframes fadeCard{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .buscar-form{
        flex-direction:column;
    }
    .buscar-btn{
        width:100%;
    }
    .buscar-input{
        width:100%;
		height:48px;
        padding:12px 18px;
        font-size:16px;
        border-radius:14px;
    }

    .buscar-title h2{
        font-size:24px;
    }
	.card-reclamo-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .card-reclamo-header h3{

        font-size:22px;
    }

    .card-reclamo-body{

        padding:20px;
    }
}