/* Reset y fuente */
* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fafb;
  padding: 70px;
}

.precio {
  color: #ff7a18 !important;
}


.main,
.header {
  max-width: 900px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.main {
  padding: 15px;
  display: flex;
  background-color: #ffffff;
  gap: 15px;
  border-radius: 0 0 8px 8px;
  flex-wrap: wrap;
}

.col-left {
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.col-right {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 12px;
}

.header {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: white;
  padding: 15px;
  text-align: center;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.range-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #999;
  padding: 0 46px;
  margin-top: 4px;
}

.btn-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f2f2f5;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
  transition: background 0.2s;
}

.btn-round:hover {
  background-color: #ddd;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(
    to right,
    #ff7a18 0%,
    #ffb347 var(--progress, 0%),
    #f2f2f5 var(--progress, 0%)
  );
  outline: none;
  cursor: pointer;
}


/* TRACK */
input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 5px;
  background: transparent;
}

input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 5px;
  background: transparent;
}

/* THUMB */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: #ff7a18;
  border-radius: 50%;
  margin-top: -6px;
  border: none; /* Quita borde blanco */
  box-shadow: none; /* Quita sombra */
  position: relative;
  z-index: 2;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 5px;
  background: transparent;
}
  
  .output {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: #ff7a18;
    font-size: 22px;
  }


.switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
}

.input-group i {
  padding-right: 8px;
  color: #ff7a18;
}

.input-group input {
  border: none;
  width: 100%;
  outline: none;
  font-size: 13px;
}

.resumen .line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
  padding: 5px 0;
}

.buttons button {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.btn-outline {
  border: 2px solid #ff7a18;
  color: #ff7a18;
  background: #f9fafb;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #f9fafb;
}

  .switch {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Oculta el checkbox original */
  .switch input[type="checkbox"] {
    appearance: none;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  /* Círculo del switch */
  .switch input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  /* Estilo cuando está activado */
  .switch input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  }

  .switch input[type="checkbox"]:checked::before {
    transform: translateX(30px);
  }

.tabs, .tabs2 {
  display: flex;
  border-bottom: 2px solid #eee;
}

.tabs2 {
  width: 100%;
  height: 60px;
  overflow-x: overlay; /* Scrollbar superpuesto */
  white-space: nowrap;
  box-sizing: border-box;
  padding-bottom: 10px;
}
.tabs2::-webkit-scrollbar {
  height: 0px; /* Scrollbar horizontal delgado */
}
.tabs2::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.tabs2::-webkit-scrollbar-thumb {
  background-color: #ff7a18;
  border-radius: 2px;
}

.tab {
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
}

.tab.active {
  border-bottom: 3px solid #ff7a18;
  color: #ff7a18;
}

.tab-content {
  margin-top: 12px;
}

.instructions {
  margin-top: 15px;
}

.instructions .tabs {
  margin-bottom: 8px;
}

.tab-section {
  display: none;
}

.tab-section.active {
  display: block;
}

ul {
  margin-left: 18px;
  list-style: disc;
}

ol {
  margin-left: 18px;
}

@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }
}

/*.floating-tabs {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.floating-tabs button {
  background: white;
  color: #E1306C;
  font-weight: bold;
  border: 2px solid #E1306C;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.floating-tabs button:hover {
  background: #E1306C;
  color: white;
}*/

/*diseño de tabs*/
    .service-tabs-container {
      max-width: 900px;
      margin: 10px auto 0;
      padding: 10px 10px 10px 10px;
      font-size: 14px;
    }
    
    .service-tabs {
      display: flex;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .service-tab {
      padding: 12px 20px;
      margin-right: 10px;
      cursor: pointer;
      font-weight: 600;
      color: #666;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
    }
    
    .service-tab.active {
      color: #000;
      border-bottom: 3px solid #ff7a18;
    }
    
    .service-tab:hover:not(.active) {
      color: #333;
    }
