/* Estilos para el sistema de selecci��n m��ltiple de servicios */
.multi-select-container {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(3, 31, 137, 0.1);
  margin: 20px 0;
}

.select-title {
  color: #031f89;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.option-item {
  position: relative;
}

.option-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.option-label {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.option-label:hover {
  border-color: #031f89;
  background: #f8faff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 31, 137, 0.15);
}

.option-checkbox:checked + .option-label {
  border-color: #031f89;
  background: linear-gradient(135deg, #031f89 0%, #0d47a1 100%);
  color: white !important;
}

.option-checkbox:checked + .option-label .option-title {
  color: white !important;
}

.option-checkbox:checked + .option-label .option-description {
  color: rgba(255, 255, 255, 0.95) !important;
}

.option-icon {
  font-size: 2rem;
  margin-right: 16px;
  min-width: 40px;
  text-align: center;
}

.option-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.option-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.option-description {
  font-size: 0.9rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.proceed-button {
  width: 100%;
  background: linear-gradient(135deg, #031f89 0%, #0d47a1 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.6;
  pointer-events: none;
}

.proceed-button.active {
  opacity: 1;
  pointer-events: auto;
}

.proceed-button.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 31, 137, 0.3);
}

.button-icon {
  font-size: 1.2rem;
}

.selected-info {
  margin-top: 16px;
  padding: 12px;
  background: #f0f9ff;
  border-radius: 6px;
  border-left: 4px solid #031f89;
  display: none;
}

.selected-info.show {
  display: block;
}

.selected-info h4 {
  color: #031f89;
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
}

.selected-info ul {
  margin: 0;
  padding-left: 20px;
  color: #374151;
}

.selected-info li {
  margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .multi-select-container {
    padding: 16px;
    margin: 16px 0;
  }

  .select-title {
    font-size: 1.3rem;
  }

  .option-label {
    padding: 12px 16px;
  }

  .option-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    min-width: 32px;
  }

  .option-title {
    font-size: 1rem;
  }

  .option-description {
    font-size: 0.85rem;
  }

  .proceed-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.selected-info.show {
  animation: fadeIn 0.3s ease;
}

/* Estados de carga */
.proceed-button.loading {
  position: relative;
  color: transparent;
}

.proceed-button.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* despegable */

/* CSS to fix nested dropdown positioning and remove yellow border */
.dropdown-menu .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  z-index: 1000;
  min-width: 200px;
}

.dropdown-menu .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-toggle::after {
  float: right;
  margin-top: 8px;
}

/* Remove any yellow borders or outlines */
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  border: none;
  outline: none;
}

.dropdown-menu .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

/* Ensure proper positioning for nested dropdowns */
.dropdown-menu .nav-item.dropdown {
  position: relative;
}

@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    margin-left: 1rem;
    box-shadow: none;
    border: none;
    background-color: transparent;
  }
}




/* css de pdf de resoluciones /*

/* CSS específico para el botón de descarga PDF */
.pdf-download-section {
  background-color: #f8f9fa;
  padding: 40px 0;
  margin-top: 40px;
  border-top: 2px solid #e9ecef;
}

.pdf-download-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.pdf-download-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.pdf-download-description {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.pdf-download-btn:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  color: white;
  text-decoration: none;
}

.pdf-download-btn:active {
  transform: translateY(0);
}

.pdf-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .pdf-download-section {
    padding: 30px 0;
  }

  .pdf-download-title {
    font-size: 1.3rem;
  }

  .pdf-download-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* seguridad de red */

.infor{
  text-align:center;
  padding: 60px;
  margin: 10px;
  font-size:large;
}


/* infantil */

.ti{
  text-align: center;
  padding: 20px;
  font-size: 60px;
  margin: 40px;
}

.des{
  text-align:center;
  padding: 60px;
  margin: 10px;
  font-size:large;
}

.ley{
  text-decoration: underline;
  text-decoration: red;
}


/* caracteristicas del servicio*/

.desc{
  text-align:center;
  padding: 80px;
  margin: 10px;
  font-size: 30px;
}


/* politicas */

.img3{

  display: block;
  margin: 0 auto;
  max-width: 70%;
  height: auto;
}

.info{
  text-align: auto;
  padding: 30px;
  font-size: 3rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;

}


.info2{
  text-align: left;
  font-size: 20px;
}


/* parental */


  /* Parental Control page enhancements */
  /* Section backgrounds */
  .pc-section-soft {
    background: #f8f9fa;
  }
  .pc-section-highlight {
    background: #eef3ff;
  }

  /* Card accents */
  .pc-card-accent {
    border-top: 4px solid #4479d9;
  }
  .pc-card--success {
    border-top: 4px solid #28a745;
  }
  .pc-card--danger {
    border-top: 4px solid #dc3545;
  }

  /* Icon circle base */
  .pc-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-icon-primary {
    background: #4479d922;
    color: #4479d9;
  }
  .pc-icon-success {
    background: #28a74522;
    color: #28a745;
  }
  .pc-icon-warning {
    background: #ffc10722;
    color: #ffc107;
  }
  .pc-icon-info {
    background: #17a2b822;
    color: #17a2b8;
  }
  .pc-icon-danger {
    background: #dc354522;
    color: #dc3545;
  }

  /* Gradient buttons for legal links */
  .btn-grad-ley679 {
    background: linear-gradient(135deg, #3a3dff, #8a2be2);
    border: none;
  }
  .btn-grad-ley1098 {
    background: linear-gradient(135deg, #2d4263, #b31217);
    border: none;
  }
  .btn-grad-decreto1078 {
    background: linear-gradient(135deg, #2b5876, #4e4376);
    border: none;
  }
  .btn-grad-crc5050 {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    border: none;
  }
