
.contenedor {
  width: 100%;
  margin: 0 auto;
}

.container-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.col {
  flex: 1 1 300px;
}

.content-radio {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-radius: 1.25rem;
  padding: 4px !important;
  margin: 0px !important;
  overflow: hidden;
  width: 100%;
}

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

.content-radio label {
  flex: 1;
  padding: 14px !important;
  margin: 0px !important;
  cursor: pointer;
  font-weight: 600;
  color: #999;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.content-radio input[type="radio"]:checked + label {
  background-color: #e4f7f2;
  color: #003b30;
  border-radius: 0.9375rem;
}

#swiperWrapper {
  background-color: #fff;
  border-radius: 1.25rem 3.75rem 0 0;
  padding: 1.25rem;
}

#swiperWrapper img {
  width: 100%;
  min-height: 400px;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.nav-select select {
  width: 100%;
  padding: 0.9375rem 2.5rem 0.9375rem 0.625rem;
  border-radius: 0.875rem;
  border: 1px solid #00000027;
  color: #00000060;
  margin-top: 1.25rem;
  font-size: 1rem;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 16 17" fill="none"><path d="M4 6.5L8 10.5L12 6.5" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 17px;
}

.nav-select select:focus {
  border-color: #00b889;
  outline: none;
  color: #000000;
}

.block-info {
  background-color: rgba(0, 191, 140, 0.1);
  display: flex;
  flex-wrap: wrap;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  line-height: 1rem;
  color: #000;
}

.block-info .col-info {
  flex: 1 1 70%;
  display: flex;
  align-items: center;
}

.block-info .col-arrows {
  flex: 1 1 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.block-info .col-arrows button {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #00585236;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.block-info .col-arrows button:hover {
  background-color: #005852;
  border-color: #005852;
}

.block-info .col-arrows button:hover svg path {
  stroke: #fff;
}

.block-info .col-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-info .col-info ul li {
  padding-left: 0.9375rem;
  border-left: 1px solid #ccc;
  font-weight: 600;
}

.block-info .col-info ul li:first-child {
  border-left: none;
  padding-left: 0;
  display: block;
  font-weight: 400;
}

.block-info .col-info ul li strong {
  display: block;
  margin-bottom: 0.1875rem;
}
.block-info .col-info ul li svg{
  width: auto;
  display: block;
  margin-bottom: 3px;;
}

#lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
}

#closeLightbox {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .block-info .col-info,
  .block-info .col-arrows {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .block-info {
    flex-direction: column;
    padding: 1rem;
  }

  .block-info .col-arrows {
    margin-top: 1rem;
    justify-content: center;
  }

  .content-radio {
    flex-direction: column;
  }

  .content-radio label {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  #swiperWrapper img {
    height: auto;
    max-height: 300px;
  }
}

@media (max-width: 576px) {

  .block-info {
    font-size: 0.75rem;
    padding: 1rem;
  }

  .nav-select select {
    font-size: 0.875rem;
  }

  #swiperWrapper {
    border-radius: 1rem;
    padding: 1rem;
  }

  #swiperWrapper img {
    max-height: 200px;
  }
}

.sd-form-ctn {
  margin-top: 20px;
}