:root {
  --blue-strong: #183172;
  --blue-light: #00c1e1;
  --purple-light: #870695;
  --purple-strong: #340074;
  --green-aqua: #0cb2ba;
  --font-roboto: "Roboto", sans-serif;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
}
.detalle-cot-h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--blue-strong);
}
.divisor-producto {
  width: 100%;
  height: 120px;
  display: flex;
  justify-self: center;
  align-items: center;
  object-fit: contain;
  background-image: url(../assets/images/fondos/Pattern-division-1920x200.webp);
  background-repeat: repeat-x;
  background-position-y: center;
  background-size: contain;
}
.parte-superior,
.producto-img-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.producto,
.btn-contianer,
.producto-detalles {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.producto{
  padding: 10px;
  background-image: url(../assets/images/fondos/Background-categorias.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.producto-detalles{
  padding:  10px 60px 40px;
}
.producto-img {
  width: 500px;
  height: 400px;
}
.producto h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  text-align: center;
  color: white;
}
.producto-img img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.producto-descripcion {
  width: 100%;
  padding: 0 60px;
  font-size: 1.5rem;
  color: white;
  text-align: justify;
}
.producto-descripcion h2{
  color: white;
}
.btn-ficha {
  width: 40%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  background: var(--blue-button-product);
  border-radius: 20px;
}
.btn-ficha:hover {
  color: var(--blue-strong);
  background: white;
}
.opciones-detalles {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}
.btn-caracteristicas {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: transparent;
  color: var(--blue-strong);
  font-size: 3rem;
  font-weight: bold;
  text-align: start;
  border: none;
  cursor: pointer;
}
.active-carac {
  color: var(--blue-light);
}
.img-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  padding: 10px;
}
.img-active {
  width: 6%;
  background: url(../assets/icons/copo_azulclaro.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.img-noactive {
  width: 6%;
  background: url(../assets/icons/copo_azuloscuro.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.detalles-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carac-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2.2rem;
  border: 1px solid #094655;
  box-shadow: 7px 11px 9px 0px #094655;
  padding: 30px;
  border-radius: 20px;
}
.carac-caracteristicas {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  font-size: 1.5rem;
}
.carac-caracteristicas p{
  border: 1px solid #094655;
  box-shadow: 7px 11px 9px 0px #094655;
  padding: 20px;
  border-radius: 20px;
}
.carac-lista {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.8rem;
  padding: 40px;
  border: 1px solid #094655;
  box-shadow: 7px 11px 9px 0px #094655;
  border-radius: 30px;
}
.carac-lista ul, .carac-lista ol{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;  
}

.carac-img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #094655;
  box-shadow: 7px 11px 9px 0px #094655;
  padding: 30px;
}
.carac-img img {
  width: 100%;
  height: 100%;
}
.detalle-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* tabla */
.table-container {
  width: 100%;
  /*  max-width: 1000px; */
  margin: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  border-radius: 50px 50px 0 0;
  box-shadow: 6px 7px 4px 0px #b0b1b3;
}

.table caption {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 8px 0px;
}

.table tr {
  background-color: #f8f8f8;
}

.table th,
.table td {
  font-size: 16px;
  padding: 8px;
  text-align: center;
  background: white;
  color: var(--color-blue-letters);
}
.table th{
  border: none;
}
.table td {
  border: 1px solid rgba(128, 128, 128, 0.651);
}

.table thead {
  border-radius: 50px 50px 0 0;
}
.table thead th {
  text-transform: uppercase;
  background: var(--blue-button-product);
  border-radius: 50px 50px 0 0;
  border-bottom: 2px solid #d4d4d4ad;
  color: white;
}

.table tbody tr:hover {
  background-color: var(--color-blue-light);
  color: var(--color-yellow);
}

.table tbody td:hover {
  background-color: var(--color-button-bg);
  color: var(--color-yellow);
}
/* tabla */
/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  producto-component {
    width: 100%;
  }
  .producto {
    flex-direction: column;
  }
  .producto h1 {
    font-size: 2.5rem;
  }
  .producto-img {
    width: 100%;
  }
  .producto-descripcion {
    padding: 0;
  }
  .btn-ficha {
    width: 100%;
  }
  .producto-detalles {
    flex-direction: column;
    padding: 15px;
  }
  .opciones-detalles {
    width: 100%;
  }
  .btn-caracteristicas{
    font-size: 2.5rem;
    align-items: center;
  }
  .carac-caracteristicas{
    font-size: 1rem;
  }
  .carac-img {
    width: 100%;
    object-fit: contain;
    padding: 10px;
  }
  .carac-img img {
    width: 100%;
  }
  .carac-caracteristicas p{
    display: flex;
    flex-direction: column;
  }
  .detalle-item{
    margin: 20px 0;
  }
  .carac-lista{
    padding: 10px;
    font-size: 1rem;
  }
  .carac-text{
    font-size: 1.2rem;
  }
  /* tabla */
  .table {
    border: 0px;
    border-radius: 0;
  }
  .table caption {
    font-size: 22px;
  }
  .table thead {
    display: none;
  }
  .table tr {
    margin-bottom: 8px;
    border-bottom: 4px solid #ddd;
    display: block;
  }
  .table th,
  .table td {
    font-size: 12px;
    background: linear-gradient(var(--color-blue-light), white);
  }
  .table td {
    display: block;
    border-bottom: 1px solid #ddd;
    text-align: right;
  }
  .table td:last-child {
    border-bottom: 0px;
  }
  .table td::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    float: left;
  }
  /* tabla */
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
}
