.dropArea {
    width: 100%;
    height: 400px;
    max-width: 100%;
    max-height: 90vh;
    border: 2px dashed #b3b3b3;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    /* evitar desbordes */
    position: relative;
    background-color: #f6f6f6;
}

.dropArea::before {
    content: "";
    background: url('../img/banner/banner_img01.png') center/contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
}

.dropArea.imagen-cargada::before {
    display: none;
}


.dropArea.hover {
    background-color: #f0fff0;
    border-color: #388E3C;
}

.dropArea p {
    margin: 0;
    font-size: 18px;
    color: #9a9a9a;
    border-bottom: #bdbdbd 1px solid;
    margin-bottom: 10px;
}

.dropArea img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.removeBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    width: 25px;
    height: 25px;
    padding: 0;
    color: #555;
    transition: background-color 0.2s, color 0.2s;
}

.removeBtn:hover {
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
}

.icon_radio-lg {
    font-size: 40px;
    line-height: 0;
    margin-bottom: 25px;
}

.icon-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon-radio {
    position: relative;
    display: inline-block;
}

.icon-radio input[type="radio"] {
    display: none;
}

.icon-radio label {
    cursor: pointer;
    display: inline-block;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 32px;
    color: #aaa;
    transition: all 0.3s ease;
    font-family: "Flaticon", sans-serif;
}

.icon-radio input[type="radio"]:checked+label {
    border-color: #e91e63;
    background-color: #fce4ec;
    color: #e91e63;
    box-shadow: 0 0 8px rgba(233, 30, 99, 0.5);
}

.icon-radio label:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.selector {
    padding: 10px;
    border: 1px solid #17a2b8;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
}
.opciones {
    border: 1px solid #17a2b8;
    border-radius: 4px;
    margin-top: 5px;
    padding: 5px;
    background: #f9f9f9;
    max-width: 300px;
}
.opciones div {
    padding: 5px;
    cursor: pointer;
}
.opciones div:hover {
    background: #e2f0ff;
}
.badge {
    display: inline-block;
    background: #17a2b8;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    margin: 4px;
}
.badge .remove {
    margin-left: 8px;
    cursor: pointer;
}

.hora-badge {
    margin: 5px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    user-select: none;
    transition: background-color 0.3s, color 0.3s;
}

.hora-badge:hover {
    background-color: #f0f0f0;
}

.hora-badge.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.tick {
    display: none;
    margin-left: 8px;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.hora-badge.active .tick {
    display: inline;
}


/*Drop area para seccion de productos servicios de la landing*/
#drop-area {
    border: 2px dashed #666;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
  }
  
  #drop-area.highlight {
    border-color: #28a745;
    background-color: #f8fff8;
  }
  
  .instructions {
    margin-bottom: 10px;
    color: #555;
  }
  
  #file-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #file-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  #file-btn:active {
    transform: scale(0.98);
    background-color: #004094;
  }
  
  #preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }
  
  .preview-item {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .preview-item .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
  }

  .custom-card {
    border: none;
    border-radius: 35px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.mini-gallery img {
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  }
  
  .img-main {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .img-main:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .img-thumb {
    width: 35px;
    height: 35px;
    opacity: 0.7;
    margin:2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  
  .img-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
  }



/*Scroling con colapse en landing*/
/* Estructura */
.wirevet-layout {
  border-radius: 24px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  overflow: hidden;
  padding:30px;
  margin:30px;
}


.menu-lateral-wirevet {
  width: 280px !important;
  background: #fafafa;
  font-family: 'Segoe UI', sans-serif;
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.contenido-principal-wirevet {
  background: white;
  border-left: 1px solid #eee;
}

/* Bloques */
.bloque-menu-wirevet {
  margin-bottom: 12px;
}


/* Ajuste responsive */
@media (max-width: 991px) {
  .wirevet-layout {
    flex-direction: column;
    padding:10px;
    margin:0px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

  .menu-lateral-wirevet {
    width: 100%;
    padding: 5px;
    border-right: none;
    border-bottom: 1px solid #eee;
    
  }

  .contenido-principal-wirevet {
    padding: 1rem;
  }
}



/* Submenús con línea vertical */
.submenu-wirevet.con-guia-wirevet {
  border-left: 2px solid #dcdcdc;
  margin-left: 12px;
  padding-left: 16px;
}

/* Links del submenú */
.submenu-wirevet li a {
  color: #333;
  font-size: 13px;
  display: block;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;

  width: 100%; /* <-- asegura que todos midan lo mismo */

  white-space: nowrap; /* <-- evita que se rompa el texto */
}

/* Hover */
.submenu-wirevet li a:hover {
  background-color: rgba(127, 86, 217, 0.08);
  color: #7f56d9;
}

/* Activo */
.submenu-wirevet li a.active {
  background-color: #d9d9d9;
  color: #333;
  font-weight: 500;
}

.titulo-colapsable-wirevet {
  position: relative;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  width: 100%;
  text-align: left;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  overflow: hidden;
  margin-right: 8px;
}

/* Hover efecto fondo gris claro */
.titulo-colapsable-wirevet:hover {
  background-color: #f0f0f0;
  color: #7f56d9;
}

.titulo-colapsable-wirevet:focus {
  outline: none;
  box-shadow: none;
}

/* Efecto de onda/explosión al hacer click */
.titulo-colapsable-wirevet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(127, 86, 217, 0.2); /* Morado semitransparente */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
  z-index: 0;
}

.titulo-colapsable-wirevet.clicked::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.box-seccion {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.box-seccion.visible {
  display: block;
  opacity: 1;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .contenido-principal-wirevet {
    padding: 1rem;
  }

  .card-body {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .mini-gallery {
    flex-direction: row;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .img-main {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  .img-thumb {
    width: 30px;
    height: 30px;
  }

  .text-right {
    text-align: left !important;
    align-items: flex-start !important;
    margin-top: 1rem;
  }

  .text-right .d-flex {
    justify-content: flex-start;
  }

  .form-group .row > .col-sm-6 {
    margin-bottom: 1rem;
  }
}

.tarjeta {
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.tarjeta img {
  width: 314px;
  height: 161px;
  border-radius: 10px;
}
.tarjeta.seleccionada {
  border-color: #28a745;
  box-shadow: 0 0 10px #28a745;
}
.check-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #28a745;
  color: white;
  padding: 7px 7px;
  border-radius: 50%;
  display: none;
  font-size: 22px;
}
.tarjeta.seleccionada .check-icon {
  display: block;
}
.datos input {
  margin-bottom: 10px;
}



.slider-wrap{
  position:relative; width:100%;  padding:28px 0 8px;
  --accent:#3f2bb8; --track:#e6e6ea; --bubble-bg:#fff; --shadow:0 6px 16px rgba(0,0,0,.12);
  font-family:system-ui, sans-serif;
}

/* Globo */
.bubble{
  position:absolute; top:-15px; right:12px; /* fíjalo a la esquina, como en la imagen */
  background:var(--bubble-bg); color:var(--accent); font-weight:800;
  padding:.45rem .7rem; border-radius:14px; box-shadow:var(--shadow);
}

/* Range base */
.slider{ -webkit-appearance:none; width:100%; height:12px; border-radius:6px; background:var(--track); outline:none; }
.slider:focus{ outline:none; }

/* Track */
.slider::-webkit-slider-runnable-track{ height:12px; border-radius:6px; background:var(--track); }
.slider::-moz-range-track{ height:12px; border-radius:6px; background:var(--track); }

/* Thumb */
.slider::-webkit-slider-thumb{
  -webkit-appearance:none; width:28px; height:28px; border-radius:50%;
  background:#fff; border:6px solid var(--accent); margin-top:-8px; box-shadow:var(--shadow);
}
.slider::-moz-range-thumb{
  width:28px; height:28px; border-radius:50%;
  background:#fff; border:6px solid var(--accent);
}

/* Marcas inferiores */
.ticks{ display:flex; justify-content:space-between; margin:.5rem 4px 0; padding:0; list-style:none; color:#8c8c94; font-weight:600; }
.ticks li{ font-size:.95rem; }

.tabla-agenda td {
  vertical-align: top !important;
  padding-top: 0;
  padding-bottom: 0;
}