@charset "UTF-8";
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #FFE4E1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  padding: 1rem; }

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 2rem;
  color: #6c7289; }

a {
  color: #3e52a3; }
  a:hover {
    text-decoration: none; }

/* diseño principal */
.tarjeta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  background-color: white;
  margin: 2rem auto;
  border-radius: 1rem;
  overflow: hidden; }
  @media (max-width: 768px) {
    .tarjeta {
      grid-template-columns: 1fr; } }

.imagenTarjeta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.contenido {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.categoria {
  font-size: 1.5rem;
  color: gray;
  text-transform: uppercase;
  font-weight: 100;
  font-style: normal; }

.producto {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem; }

.descripcion {
  font-size: 1.3rem;
  color: gray;
  line-height: 1.6; }

.botonEnviar {
  background-color: forestgreen;
  font-size: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; }
  .botonEnviar:hover {
    background-color: #186218;
    transform: scale(1.01); }

.seccionPrecios {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0; }
  .seccionPrecios .precioDescuento {
    color: forestgreen;
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    margin: 1rem; }
  .seccionPrecios .precioNormal {
    color: grey;
    text-decoration: line-through;
    margin: 0 auto; }

/*# sourceMappingURL=styles.css.map */
