:root {
    --primary: #CF112F;
    /* rojo */
    --accent: #FFD600;
    /* amarillo */
    --dark: #1b1b1b;
    --muted: #6b7280;
    --bg: #f7f7f8;
    --card: #ffffff;
    --ok: #16a34a;
    --shadow: 0 10px 30px rgba(0, 0, 0, .10);
    --radius: 5px;
}

/* Buttons */
.btn-submit {
	float: right;
    color: #58595b !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: .3em 1em;
    line-height: 1.7em;
    background: transparent;
    border: 2px solid #58595b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin-top: 0px;
	width: 100%;
	margin-bottom: 5px;
	margin-top: 5px;
}

/* Titulos */
.lps-h2 {
    color: var(--primary);
    margin: 20px 0;
    border-left: 6px solid var(--accent);
    padding-left: 10px;
    padding: 5px;
	text-align: left;
	font-weight: 600;
}

.lps-h3 {
    color: var(--primary);
    padding: 10px;
    text-align: left;
    font-weight: 600;
    padding-left: 0;
}

/* Formularios */
.lps-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    width: 100%;
}

.lps-btn{
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 0px 10px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 0 auto;
    width: 100%;
	height: 32px;
}

.lps-btn-submit {
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 0 auto;
	height: 32px;
}

.lps-form-group {
    margin: 20px 0px;
}

.lps-form-group label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 6px;
    text-align: left;
}

.lps-form-group input,
.lps-form-group select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 14px;
    transition: border-color 0.3s;
    height: 32px;
}

.lps-form-group input:focus,
.lps-form-group select:focus {
    border-color: var(--radius);
    outline: none;
}

.lps-form-group .label-separador{
    color: var(--primary);
    font-weight: bold;

}
/* Loading*/
.contenedor-loading {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 120px;
    height: 22px;
    border-radius: 20px;
    color: var(--primary);
    border: 2px solid;
    position: relative;
}

.loader::before {
    content: "";
    position: absolute;
    margin: 2px;
    inset: 0 100% 0 0;
    border-radius: inherit;
    background: currentColor;
    animation: l6 2s infinite;
}

@keyframes l6 {
    100% {
        inset: 0
    }
}

/* Seetalert */
.swal2-confirm,
.swal2-cancel,
.sweet-btn-denegar {
    color: white;
    padding: 8px 10px;
    border: none;
    border-radius: var(--radius);
    width: 100px;
    height: 32px;
    margin: 5px 5px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 5px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    outline: none;
}

.swal2-confirm {
    background-color: var(--primary);
    color: white;
}

.swal2-confirm:active {
    background-color: var(--primary);
    color: white;
}

.swal2-confirm:hover {
    background-color: var(--primary);
    color: white;
}

.swal2-cancel {
    background-color: '#f8f9fa';
    color: #5b5b5b;
}

.sweet-btn-denegar {
    background-color: '#f8f9fa';
    color: #5b5b5b;
}

/* Cotizador asistencia al viajero limpiar */
/* Header */
.planes {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  gap: 15px; 
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
	margin-top: 25px;
}

.cotizacion {
  text-align: center;
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 33px 20px;
  box-sizing: border-box;
  transition: width 0.3s ease; /* animación suave */
}

/* 📱 Tablets (máx. 1024px): 2 por fila */
@media (max-width: 1024px) {
  .cotizacion {
    width: 45%; /* más o menos dos por fila con espacio */
  }
}

/* 📱 Celulares (máx. 768px): 1 por fila */
@media (max-width: 768px) {
  .cotizacion {
    width: 90%; /* ocupa casi todo el ancho */
  }
}

.plan-name{
    font-weight: bold;
	font-size: 17px;
    color: var(--primary);
}

.plan-premio{
	font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

.plan-detalle{
    margin: 20px 0px;
    text-decoration: underline;
	color: red;
	cursor: pointer;
}

/* Asistencia viajero - selector de productos */
.titulo-cotizador {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
}

.subtitulo-lps {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.lps-h2-tight {
    margin-bottom: 6px;
}

#lista-productos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.producto-card {
    grid-column: span 2;
}

/* Fila 2 (Anual Multiviaje + Anual Larga estadía): la completan al 50% cada una */
.producto-card:nth-child(4),
.producto-card:nth-child(5) {
    grid-column: span 3;
}

@media (max-width: 1024px) {
    .producto-card {
        grid-column: span 3;
    }

    /* Queda 1 tarjeta sola en la 3ra fila (Anual Larga estadía): la estiramos al 100% */
    .producto-card:nth-child(5) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .producto-card {
        grid-column: span 6;
    }
}

.producto-card {
    cursor: pointer;
    border: 2px solid #e4e4e4;
    border-radius: 10px;
    padding: 16px 16px 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .15s, background-color .15s, box-shadow .15s;
}

.producto-card:hover {
    border-color: var(--primary);
}

.producto-card.selected {
    border-color: var(--primary);
    background: #fff5f6;
    box-shadow: 0 6px 18px rgba(207, 17, 47, .12);
}

.producto-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.producto-nombre {
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

.producto-card.selected .producto-nombre {
    color: var(--primary);
}

.producto-dot {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    border: 2px solid #c9c9c9;
    background: #fff;
}

.producto-card.selected .producto-dot {
    border-color: var(--primary);
    background: radial-gradient(var(--primary) 0 45%, #fff 55%);
}

.producto-badge {
    align-self: flex-start;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 0px 20px;
    border-radius: 20px;
    color: #8a8a8a;
    background: #f0f0f0;
}

.producto-card.selected .producto-badge {
    color: var(--primary);
    background: #fde3e6;
}

.producto-desc {
    margin: 2px 0 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: #666;
}

.contenedor-datos-producto[hidden] {
    display: none;
}

.producto-card.disabled {
    pointer-events: none;
    opacity: .5;
}