:root {
  --text-color: #161616;
  --claro-color: #f5f5f5;
  --bg-color: #e6e6e6;
  --gray-color: rgb(222,222,222);
  --gray-footer: rgb(184,184,184);

  /* --bg-color: #80917d; */
  --main-color: #eea83b;
  --anaranjado: #ca763b;
  --secondary-color: #134b42;
  --accentuation-color: #ca763b;
}

/* <uniquifier>: Use a unique and descriptive class name
   <weight>: Use a value from 300 to 800 */

.open-sans-uniquifier {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html {
  box-sizing: border-box;
  font-size: 62.5%; /* 1rem = 10px */
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

/* Globales */
main {
  padding-bottom: 30px;
}
/* Sin usar */
.redes {
  margin: 0;
  padding: 0.4rem 0;
}

h1{
  margin: 0;
  margin-top: 8px;
  line-height: 12px;
}

@media (min-width: 768px) { 
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 3.2rem;
}
@media (min-width: 768px) { 
  h2 {
    font-size: 4rem;
  }
}
h3 {
  font-size: 2.4rem;
}
@media (min-width: 768px) { 
  h3 {
    font-size: 3rem;
  }
}
a {
  text-decoration: none;
  color: var(--text-color);
}
.contenedor {
  max-width: 130rem;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  display: block;
  color: var(--claro-color);
  text-transform: uppercase;
  font-weight: 900;
  padding: 1rem;
  transition: background-color .3s ease-out;
  text-align: center;
  border: none;
  width: 100%;
}
.btn:hover, .boton:hover {
  background-color: var(--secondary-color);
  cursor: pointer;
}

@media (min-width: 768px) { 
  .btn {
    width: auto;
  }
}

/** Utilidades */
.text-center {
  text-align: center;
}

@media (min-width: 768px) { 
  .max-width-30 {
    max-width: 30rem;
  }
}

/** Header y Navegacion **/
header {
  display: flex;
  justify-content: space-between;
  margin: 0.6rem 11rem;
}

@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: center;
  }
}

header p {
  font-weight: 700;
}

header p span {
  color: var(--secondary-color);
}

@media (max-width: 1024px) {
  .desc-efectivo {
    border-top: 1px solid var(--text-color);
    margin-top: 0.5rem;
    font-size: 1.3rem;
  }
}

.max-w {
  max-width: 130rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.letras-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header span {
  color: var(--main-color);
}

.eslogan {
  color: var(--secondary-color);
  font-size: x-small;
}
.contenedor-navegacion {
  background-color: var(--secondary-color);
  line-height: 20px;
}

.nav-principal {
  padding: 1.1rem 0;
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  gap: 5rem;
}

.nav-principal a {
  color: white;
}
.hero {
  background-image: url(../img/banner-page-salas-peque.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 300px;
  border-bottom: 1px solid var(--gray-color);
}
@media (max-width: 1280px) { 
  .hero {
    height: 260px;
  }
}@media (max-width: 1100px) { 
  .hero {
    height: 220px;
  }
}
@media (max-width: 934px) { 
  .hero {
    height: 180px;
  }
}
@media (max-width: 768px) { 
  .hero {
    height: 150px;
  }
}
@media (max-width: 644px) { 
  .hero {
    height: 130px;
  }
}
@media (max-width: 550px) { 
  .hero {
    background-position: center center;
    height: 130px;
    margin-left: -1rem;
  }
}

/** Categorias **/
.categoria {
  margin-bottom: 2rem;
}
@media (min-width: 768px) { 
  .categoria {
    margin-bottom: 0;
  }
}
.categoria img {
  width: 100%;
  border: 1px solid var(--gray-color);
  border-radius: 5px;
}
.categoria-apagada {
  display: flex;
  align-items: center;
  padding-left: 1.6rem;
}
.categoria-apagada img {
  margin: 0 auto;
  width: 50%;
}

.categoria img:hover{ 
  -webkit-transform: scale(1.5);
  transform: scale(1.1);
  transition: transform .2s ease-out;
}

.categoria a {
  text-align: center;
  display: block;
  font-size: 2rem;
}

@media (min-width: 768px) { 
  .listado-categorias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
    
}

/** Bloque Nosotros */
.div-nosotros {
  width: 312px;
}

.texto-nosotros {
  font-size: small;
  text-align: justify;
}
.texto-nosotros span {
  color: var(--accentuation-color);
  font-weight: 900;
}

/*** Listado de Productos ***/
@media (min-width: 768px) { 
  .listado-productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  .producto img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
  }
}

.producto {
  background-color: var(--bg-color);
  margin-bottom: 2rem;
  border: 1px solid rgb(222, 222, 222);
  border-radius: 5px;
}
@media (min-width: 768px) { 
  .producto {
    margin-bottom: 0;
  }
}
.producto img {
  border: 1px solid rgb(222, 222, 222);
  border-radius: 5px;
}
.producto:last-of-type {
  margin-bottom: 0;
}

.texto-producto {
  text-align: center;
  padding: 2rem;
}
.texto-producto h3 {
  margin: 0;
  font-size: 1.5rem;
}
.texto-producto p {
  margin: 0 0 .5rem 0;
  font-size: 1.4rem;
}
.texto-producto .precio {
  font-size: 1.7rem;
  font-weight: 400;
}
/* > permite tomar a todos los hijos y no solo al primero */
.precio > span {
  font-size: 1.2rem;
  color: var(--text-color);
}

/** Footer **/
.site-footer {
  font-size: 13px;
  background-color: var(--secondary-color);
  color: var(--claro-color);  
}

.contenedor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) { 
  .site-footer h3 {
    text-align: center;
  }
}

/** Nosotros **/
.informacion-nosotros {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { 
  .informacion-nosotros {
    padding: 0;
  }
}


/* Formulario */
.campo {
  display: flex;
  margin-bottom: 2rem;
}
.campo label {
  flex-basis: 10rem;
} 
.campo input:not([type="radio"]),
.campo textarea,
.campo select  {
  flex: 1;
  border: 1px solid var(--claro-color);
  padding: 1rem;
}

/***** CONTACTO *****/
.contacto-general {
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: justify;
}

/* 42 */
.oscuro {
  color: var(--claro-color);
}

.contacto {
  margin: 0 auto;
  display: flex;
  height: 49rem;
  max-width: 120rem;
}

@media (max-width: 1000px) {
  .contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
  }
}

.contacto-izquierda {
  flex: 1;
  max-width: 50%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1000px) {
  .contacto-izquierda {
    max-width: 100%;
  }
}
.padding-top {
  padding-top: 0;
}

.contacto-derecha {
  flex: 1;
  max-width: 50%;
  padding: 10rem;
}

.containersito {
  border-radius: 5px;
  margin: 0;
  flex: 1;
  max-width: 55rem;
}
.containersito-fondo {
  background-color: var(--accentuation-color);
}

.contacto-inicial {
  display: flex;
  padding-top: 4rem; /*necesario para centrar altura*/
}
.contacto-intermedio {
  padding: 2rem 4rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .contacto-intermedio {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contacto-intermedio {
    padding: 2rem;
    font-size: 14px;
    gap: 1rem;
  }  
  .contacto-izquierda img {
    width: 80%;
  }
  form {
    padding: 2rem!important;
    font-size: 14px;
    gap: 1rem;
  }
}
@media (max-width: 414px) {
  .contacto-intermedio {
    padding: 2rem 1rem;
    font-size: 12px;
    gap: 0rem;
  }  
  .contacto-izquierda img {
    width: 60%;
  }
  form {
    font-size: 12px;
    gap: 0rem;
  }  
}


.margin-top-negativo2 {
 margin-top: -2rem;
}
.margin-top-negativo1 {
 margin-top: -1rem;
}

.telefono {
  font-weight: 700;
}

.contt {
  margin: 0;
}

/*particular*/
.whatsapp {
  display: block; 
  border-right: 2px white solid;
  padding-right: 1.7rem;
  height: 6rem;
  display: flex;
}

/*general*/
.block {
  display: block; 
}

.numeros {
  display: flex;
  justify-content: space-between;
}

.telefono {
  margin: 0;
}

.llamanos {
  margin: 0;
}

.intermedio-derecho {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--claro-color);
}

.contenedor-form {
  /*border: 1px solid var(--claro-color);*/
  border-radius: 5px;
  background-color: var(--accentuation-color);
}

.efectivo {
  background-color: var(--main-color);
  color: #000;
  padding: .4rem .8rem;
  border-radius: 5px;
}

/***** FORM *****/
form {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  gap: 3rem;
}

form input, textarea {
  border: none; /* Elimina el borde */
  outline: none; /* Elimina el borde al hacer focus */
  box-shadow: none; /* Elimina cualquier sombra */
  border-radius: 5px;
  padding: 1.4rem; /* Espacio interno */
  background-color: var(--bg-color); /* Fondo personalizado */
  max-width: 100%;
}

.boton {
  font-weight: 700;
  background-color: var(--text-color);
  transition: background-color .3s ease-out;
  color: var(--claro-color);
  width: 100%;  
}
.correo {
  width: 50%;
}

@media (max-width: 670px) {
  .correo {
    width: 100%;
  }
}
.contacto-d {
  flex: 1;
  max-width: 50%;
  padding: 5rem;
  gap: 30px;
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

@media (max-width: 1000px) {
  .contacto-d {
    max-width: 100%;
  }
}

/***** PRODUCTO *****/
.parent {
  display: flex;
  justify-content: center;
  padding-bottom: 4rem;
  margin: 0 auto;
  text-align: justify;
}

@media (max-width: 980px) {
  .parent {
    flex-direction: column;
    align-items: center;
  }
}

.parent img {
  border: 1px solid rgb(222, 222, 222);
  border-radius: 5px;
}

.columna1, .columna2, .columna3 {
  max-width: 57.7rem;
  padding: 1rem;
}

.columna2, .columna3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.columna3 {
  border: 1px solid var(--gray-footer);
  border-radius: 5px;  
}

@media (max-width: 630px) { 
  .columna1 {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .columna2 {
    max-width: 100%;
    padding: 2rem;
    margin: 0;
    text-align: center;
  }  
  .parent {
    padding: 0;
    margin: 0;  
  }
  .medidas {
    justify-content: center !important;
    gap: 1rem;
  }
}

.div2 {
  height: 11.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.div3, .div6 {
  height: 13rem;
  max-width: 50.7rem;
}
.div4 {
  height: 10rem;
  max-width: 50.7rem;
}
.div3 {
  height: 12rem;
  font-size: 2.5rem;
}
.div3 span {
  font-weight: 700;
  color: var(--text-color);
}
.div3, .div4, .div5, .div7, .div8, .div9, .div10 {
  border-bottom: 1px solid var(--gray-footer);  
}

@media (max-width: 1210px) {
  .div3 {
    font-size: 2rem;
  }
}

.div4 p {
  margin: 0;
}

.div4 {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1rem;
}

@media (max-width: 980px) {
  .columna1, .columna2 {
    width: 57.7rem;
  }
}
.div4 .precio {
  font-size: 2.8rem;
}
.div4 .mensualidad {
  font-weight: 700;
  font-size: 1.6rem;
}
.div4 .mensualidad > span {
  font-size: 1.2rem;
}

.div4 .mensualidad .por-12 {
  font-weight: 400;
  font-size: 1.4rem;
  font-family: 'Raleway', sans-serif;
}
.div4 .mensualidad .doce {
  font-weight: 400;
  font-size: 1.6rem;
}

.div4, .div5, .div6, .div7, .div8, .div9, .div10, .div11 {
  font-size: 1.4rem;
}
.div5 {
  height: 11rem;
  max-width: 50.7rem;
  line-height: 0.5 !important;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.div6 {
  height: 15rem;
}

@media (max-width: 980px) {
  .div3, .div4, .div5, .div6 {
    max-width: 57.7rem;
  }
}
@media (max-width: 980px) {
  .div3 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 630px) {
  .div3 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 390px) {
  .div3 {
    font-size: 1.5rem;
  }
}
.div7, .div8, .div9, .div10, .div11 {
  max-width: 31.7rem;
  height: 9rem;
}
        
/***** Tienda en Línea *****/
.thumbnails {
 display: flex;
 justify-content: center;
}

.thumbnails img {
  cursor: pointer;
  transition: border-color 0.3s;
  width: 8rem;
}

.thumbnails img:hover {
  border-color: #000; /* Cambia el color del borde al pasar el cursor */
}

.medidas {
  display: flex;
  justify-content: start;
  gap: 2rem;
}

.palabra-medidas {
  font-weight: 700;
  color: #000;
}

.line-height {
  line-height: 0;
}

.section-salas {
  display: flex;
  justify-content: space-between;
  padding: 3rem;
}
@media (max-width: 768px) {
  .div-nosotros {
    display: none;
  }
  .section-salas {
    justify-content: center;
  }
}

.section-credito {
  padding: 1.2rem 3rem;
  font-weight: 700;
  color: var(--text-color);
  border-top: 1px solid var(--text-color);
}

.section-credito a {
  color: #e6e6e6;
  font-weight: 700;
}

.garantia-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: small;
}

.garantia-copy a {
  font-weight: 700;
  color: var(--claro-color);
}

/* Línea de títutlos */
.linea {
  border-bottom: 1px solid var(--secondary-color);
}

.linea h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.negrita-oscuro span {
  font-weight: 700;
  color: var(--text-color);
}

/***** Botón de Whatsapp *****/
.whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 70px;
  height: 70px;
}

.whatsapp-button img {
  background-color: #25D366;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.whatsapp-button img:hover {
  filter: contrast(1.25);
}

/***** Utilidades *****/
.bold {
  font-weight: 700;
}

/* Asegúrate de darle un tamaño adecuado al mapa */
#map {
  height: 600px;
  width: 100%;
  border-radius: 5px;
}

.map {
  margin: 0 auto;
}
.ubicacion {
  background-color: var(--accentuation-color);
  padding-top: 16.1px;
  margin-top: 16.1px;
  padding-bottom: 5rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.map a {
  color: var(--oscuro-color);
}

.map p {
  margin: 5rem 0;
}

.map p span {
  font-size: 2rem;
  display: block;
  font-weight: 700;
}

.rem120 {
  max-width: 120rem;
}

.map img {
  margin: -6rem auto;
}

.fabrica-salas {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.horario {
  margin-bottom: -1.5rem;
}

.horario-palabra {
  font-weight: 700;
  font-size: 20px;
}

.contenido-principal {
  border-bottom: 2px solid var(--gray-footer);
}

.white {
  color: white;
}

.anaranjado {
  color: var(--anaranjado);
}

.bg-green {
  background-color: var(--main-color);
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-green div {
  max-height: 53.6rem;
  font-size: 1.5rem !important;
}

label {
  font-size: 1.5rem !important;
}


select#quantity {
  font-size: 1.5rem !important;
  text-align: center;
}

.bg-green form {
  text-align: center;
}

.bg-green button {
  font-size: 1.5rem;
}

.direccion-ubicacion {
  margin-top: -40px!important;
}

.bg-naranja {
  background-color: var(--anaranjado);
}

.pt-4 {
  padding-top: 4rem;
}