body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 20px;
  background-color: #f8f9fa;
}

.card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  margin-top: 20px;
  border: 1px solid #eee;
}

.input-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
@media (max-width: 576px) {
  .input-group {
    flex-direction: column;
  }
}
.input-group select, .input-group input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.card-wide {
  max-width: 900px;
  margin: 2rem auto;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 576px) {
  .policies-grid {
    grid-template-columns: 1fr;
  }
}

.policy-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px;
}
.policy-card input[type=radio] {
  position: absolute;
  opacity: 0;
}
.policy-card:has(input:checked) {
  border-color: #007bff;
  background-color: #f0f7ff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

.cobertura-card {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  gap: 15px;
}
@media (max-width: 576px) {
  .cobertura-card {
    padding: 12px;
    gap: 10px;
  }
}
.cobertura-card:has(input:checked) {
  border: 2px solid #007bff;
  background-color: #f0f7ff;
}

.cobertura-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cobertura-info strong {
  font-size: 1.1rem;
  color: #333;
}
.cobertura-info span {
  font-size: 0.85rem;
  color: #777;
}

.total-box {
  background: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
}
.total-box h2 {
  font-size: 2.5rem;
  margin: 10px 0;
}
@media (max-width: 576px) {
  .total-box h2 {
    font-size: 2rem;
  }
}

.btn-back {
  text-decoration: none;
  color: #666;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-back:hover {
  background-color: #f8f9fa;
  color: #1B3260;
  border-color: #1B3260;
}
@media (max-width: 576px) {
  .btn-back {
    width: 100%;
    padding: 12px;
  }
}

.btn-sypago, .btn-primary {
  width: 100%;
  background-color: #1B3260;
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.btn-sypago:hover, .btn-primary:hover {
  background-color: rgb(15.8048780488, 29.2682926829, 56.1951219512);
}

.actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
}
.actions .btn-back {
  flex: 0 0 auto;
  min-width: 120px;
  text-align: center;
}
.actions .btn-primary, .actions button.btn-primary {
  flex: 1;
  max-width: 450px;
  display: block;
  box-sizing: border-box;
}
.actions.actions-vertical {
  flex-direction: column;
  gap: 12px;
}
.actions.actions-vertical .btn-primary, .actions.actions-vertical .btn-back {
  width: 100%;
  max-width: 100%;
  flex: none;
  box-sizing: border-box;
}
.actions.actions-vertical .btn-back {
  background-color: #ffffff;
  color: #1B3260;
  border: 2px solid #1B3260;
  padding: 14px 25px;
}
.actions.actions-vertical .btn-back:hover {
  background-color: rgb(250.2, 252.44, 255);
}
@media (max-width: 576px) {
  .actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .actions .btn-primary, .actions .btn-back {
    max-width: 100%;
    width: 100%;
  }
  .actions.actions-vertical {
    flex-direction: column-reverse;
  }
}

.iframe-container {
  width: 100%;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.iframe-container iframe {
  width: 100%;
  height: 700px;
  border: none;
}

.drop-zone {
  border: 2px dashed #007bff;
  padding: 30px;
  text-align: center;
  background: #f0f7ff;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .drop-zone {
    padding: 15px;
  }
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  list-style: none;
  padding: 0;
}
.step-indicator .step {
  width: 35px;
  height: 35px;
  background-color: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}
.step-indicator .step.active {
  background-color: #1B3260;
  box-shadow: 0 0 10px rgba(27, 50, 96, 0.3);
}
.step-indicator .step.completed {
  background-color: #28a745;
}/*# sourceMappingURL=style.css.map */