@charset "UTF-8";

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color:rgba(77, 74, 73, 0.5) !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}
.nav-link.active {
    font-weight: bold;
    color: #ff7f07 !important;  /* amarillo Bootstrap */
}

.nav-link{
  font-size:0.8rem;
  color: #6b431e;
}

.nav-link:hover{
  color: #ff7f07;
  text-transform: uppercase;
  font-size:0.85rem;
}

.nav-link.active {
  color: #d35400;        /* distinto del hover */
  font-size: 1.3rem;     /* 0.5rem más grande que el base (0.8 + 0.5) */
  text-transform: uppercase;
  font-weight: bold;
  background-color: transparent !important; /* opcional: quitar el fondo azul de Bootstrap */
}

.text-portada{
  color:#6b431e
}
  
.portada {
    background-color: rgba(55, 55, 55, 0.5) !important;
    background-image: url("/static/img/minimarketRS.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.lista-producto{
  background-color: rgba(77, 74, 73, 0.5) !important;
}
.formulario{
  background-color: rgba(77, 74, 73, 0.5) !important;
}
.detalle{
  background-color: rgba(77, 74, 73, 0.5) !important;
}

.pie-pagina{
  background-color: rgb(33, 37, 41)

}

.stock1{
  color:rgb(194, 16, 16);
}
.stock2{
  color: rgb(180, 56, 56);
}

.product-img {
    height: 400px;         /* altura uniforme */
    object-fit: cover;     /* recorta sin deformar */
    object-position: center; /* centra la imagen */
}

.card {
    min-height: 100%;         /* que todas tengan el mismo alto */
}

.masthead {
    min-height: 60vh; /* 70% de la altura de la pantalla */
    background-size: cover;
    background-position: center;
}
.text-faded {
  color: rgba(255, 255, 255, 0.3);
}

.site-heading {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: 'Raleway';
}

.site-heading .site-heading-upper {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.site-heading .site-heading-lower {
  font-size: 5rem;
  font-weight: 100;
  line-height: 4rem;
}

.page-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.section-heading {
  text-transform: uppercase;
  color:#6b431e
}

.section-heading .section-heading-upper {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  padding-bottom:.5rem;

}

.section-heading .section-heading-lower {
  display: block;
  font-size: 3rem;
  font-weight: 100;
}


.section-heading .section-heading-under {
  display: block;
  font-size: 1rem;
  text-transform: none;
  font-weight: 300;
  margin-top:.5rem;
}

.bg-card {
  background-color: #e6a756;
}
.bg-faded {
  background-color: rgba(233, 195, 73, 0.85);
}

#mainNav {
  background-color: rgba(47, 23, 15, 0.9);
  font-family: 'Raleway';
}

#mainNav .navbar-brand {
  color: #e6a756;
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

#mainNav .navbar-nav .nav-item.active .nav-link {
  color: #e6a756;
}

@media (min-width: 992px) {
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.9rem;
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: rgba(255, 255, 255, 0.4);
  }
  #mainNav .navbar-nav .nav-item.active .nav-link:hover {
    color: #e6a756;
  }
}

.btn-xl {
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.intro {
  position: relative;
  
}

@media (min-width: 992px) {
  .intro .intro-img {
    width: 75%;
    float: right;
  }
  .intro .intro-text {
    left: 0;
    width: 60%;
    margin-top: 12rem;
    position: absolute;
  }
  .intro .intro-text .intro-button {
    width: 100%;
    left: 0;
    position: absolute;
    bottom: -2rem;
  }
}

@media (min-width: 1200px) {
  .intro .intro-text {
    width: 45%;
  }
}

.cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: rgba(230, 167, 86, 0.9);
}

.cta .cta-inner {
  position: relative;
  padding: 3rem;
  margin: 0.5rem;
  background-color: rgba(255, 255, 255, 0.85);
}

.cta .cta-inner:before {
  border-radius: 0.5rem;
  content: '';
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border: 0.25rem solid rgba(255, 255, 255, 0.85);
}

.cta .cta-innerv {
  position: relative;
  padding: 3rem;
  margin: 0.5rem;
  background-color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 992px) {
  .about-heading .about-heading-img {
    position: relative;
    z-index: 0;
  }
  .about-heading .about-heading-content {
    margin-top: -5rem;
    position: relative;
    z-index: 1;
  }
}

.navbar-nav .nav-link {
      font-size: 0.9rem;  /* más pequeño que el default (~1rem) */
      white-space: nowrap; /* evita que el texto se divida en dos líneas */
  }

.boton1 {
  background: #6b431e;
  color: white;
  border: none;
  transition: 0.25s ease-in-out;
}

.boton1:hover {
  background: #58371a; /* un poco más oscuro */
  color: #fff;
  transform: scale(1.03); /* efecto suave */
}

@media (max-width: 576px) { /* aplica en móviles */
  .contacto {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 576px) { /* aplica en móviles */
  .section-heading .section-heading-lower {
    font-size: 2rem;
  }
}

.producto {
  color:#6b431e;
  font-size: 3rem;
  margin-top: 5px;
  margin-bottom: 5px;
}

.blog {
  font-size: 3rem;
  color:#6b431e;
}

.text-justify-custom {
    text-align: justify !important;
}