@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap");
/*$font-size-xs:14px;
$font-size-s:16px;
$font-size-m:20px;
$font-size-l:28px;
$font-size-xl:40px;
$font-size-xxl:50px;
*/
/* =========================================
   DESIGN TOKENS — HARINERA MONARCA
   Sistema de colores escalable
========================================= */
/* ===== Brand Colors ===== */
/* ===== Brand Legacy (temporal) ===== */
/* ===== UI Text ===== */
/* ===== UI Surfaces ===== */
/* ===== UI Borders ===== */
/* ===== UI Buttons ===== */
/* ===== Focus Ring ===== */
/* SON LOS VIEJOS ANTES DE LA NUEVA IMAGEN
$color-black: #252525;
$color-white: #f5f5f5;
$color-primary: #8F1440;
$color-primary--hover: #77183a;
$color-secondary: #004C99;
$color-secondary--hover: #014084;
$body-color: #fdfdfd;
 */
body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  background-color: #fdfdfd;
}

.custom-navbar {
  padding: 20px 0 20px 0;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.custom-navbar .navbar-toggler {
  border-color: transparent;
}
.custom-navbar .navbar-toggler:active, .custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.nav__item {
  padding-right: 10px;
  padding-left: 10px;
}
.nav__item.active a {
  opacity: 1;
}
.nav__item.active a:before {
  width: calc(100% - 20px);
}

.nav__liga {
  opacity: 0.8;
  transition: 0.3s all ease;
  position: relative;
}
@media (min-width: 768px) {
  .nav__liga:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    background: rgb(204, 21, 23);
    height: 3px;
    opacity: 1;
    visibility: visible;
    width: 0;
    transition: 0.15s all ease-out;
  }
}
.nav__liga:hover {
  opacity: 1;
}
.nav__liga:hover:before {
  width: calc(100% - 20px);
}

.custom-btn-primary {
  background-color: rgb(204, 21, 23);
  border-color: #A91517;
  border-radius: 24px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.custom-btn-primary:hover {
  background-color: #A91517;
  border-color: #A91517;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}

.custom-Oline-primary {
  border-color: #A91517;
  color: rgb(204, 21, 23);
  border-radius: 24px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.custom-Oline-primary:hover {
  background-color: #A91517;
  border-color: #A91517;
}

.custom-btn-secondary {
  background-color: #004C99;
  border-radius: 24px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.custom-btn-secondary:hover {
  background-color: #014084;
}

.heroHome {
  background-image: url("../img/fondo_home.jpg");
  background-size: cover;
  background-position: top;
  height: 100%;
  text-align: center;
}
.heroHome__contenido {
  padding: 80px 0 80px 0;
}
.heroHome__titulo {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 58px;
  letter-spacing: 0.1em;
  color: #252525;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0px;
  padding: 0px;
}
.heroHome__subtitulo {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #252525;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.heroHome__subtitulo--texto {
  display: inline-block;
  transform: translateY(40px);
}
@media (max-width: 480px) {
  .heroHome__subtitulo--texto {
    transform: translateY(0px);
    display: block;
  }
}
.heroHome__costal {
  text-decoration: none;
}
.heroHome__costal:hover span {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.heroHome__costal--img {
  height: 215px;
  filter: drop-shadow(3px 3px 20px rgba(255, 255, 255, 0.45));
}
.heroHome__costal--titulo {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #f5f5f5;
  display: block;
  position: relative;
  transform: translateY(-5px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.home-productos {
  padding: 140px 0px 140px 0px;
  background-image: url("../img/fondo_trigo.png");
  background-repeat: no-repeat;
}
.home-productos__producto {
  padding: 0 50px 0 50px;
}
.home-productos__titulo {
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 36px 0 36px 0;
}
.home-productos__subtitulo {
  font-weight: 500;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  transform: translateY(10px);
}
.home-productos__descripcion {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 24px 0 24px 0;
}
.home-productos__link {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  text-decoration: none;
}
.home-productos__link:hover {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.home-productos__texto {
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #252525;
  line-height: 169%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .home-productos__texto {
    padding-left: 36px;
    padding-right: 36px;
  }
}
.home-productos__cta {
  padding: 16px 0 16px 0;
}
.home-productos__cta a {
  margin: 10px;
}
.home-productos__img {
  height: 400px;
  filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.2));
  transform: rotate(-12deg);
}
@media (max-width: 480px) {
  .home-productos__img {
    margin: 10px;
    transform: rotate(0);
  }
}
.home-productos__img2 {
  height: 400px;
  filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.2));
  transform: rotate(12deg);
}
@media (max-width: 480px) {
  .home-productos__img2 {
    margin: 10px;
    transform: rotate(0);
  }
}

.home-trigo {
  padding: 200px 0 200px 0;
  background-image: url("../img/fondo_nuestroTrigo.png");
  background-size: cover;
  background-position: top;
}
.home-trigo__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 50px 0 50px 0;
}
.home-trigo__texto {
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #f5f5f5;
  line-height: 169%;
  padding: 50px 0 50px 0;
}

.home-pidemuestra {
  padding: 100px 0 100px 0;
}
.home-pidemuestra__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 36px 0 36px 0;
}
.home-pidemuestra__subtitulo {
  font-weight: 500;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  transform: translateY(10px);
}
.home-pidemuestra__texto {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  line-height: 169%;
  padding: 50px 0 50px 0;
}
.home-pidemuestra__contacto {
  font-weight: 400;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #252525;
  display: block;
  padding: 10px 0 10px 0;
}
.home-pidemuestra__form {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #252525;
  line-height: 169%;
  padding: 50px 0 50px 0;
}
@media (min-width: 992px) {
  .home-pidemuestra__form {
    padding: 50px 100px 50px 100px;
  }
}
.home-pidemuestra__form .btn-group {
  display: inline-flex;
  flex-wrap: nowrap;
  border: 1px solid rgb(208, 175, 22);
  border-radius: 8px;
  overflow: hidden;
}
.home-pidemuestra__form .btn-group .btn {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border: 0;
  background-color: #ffffff;
  color: #3A2A20;
  border-radius: 0;
  transition: all 0.2s ease;
}
.home-pidemuestra__form .btn-group .btn + .btn {
  border-left: 1px solid #5A493D;
}
.home-pidemuestra__form .btn-group .btn i {
  margin-right: 6px;
}
.home-pidemuestra__form .btn-group .btn:hover {
  background-color: #F2E6D9;
}
.home-pidemuestra__form .btn-check:checked + .btn {
  background-color: rgb(208, 175, 22);
  color: #f5f5f5;
}
.home-pidemuestra__form .btn-check:checked + .btn:hover {
  background-color: rgb(208, 175, 22);
  color: #f5f5f5;
}
.home-pidemuestra__form .btn-check:focus + .btn {
  box-shadow: 0 0 0 0.2rem rgba(208, 175, 22, 0.25);
}

.footer {
  background-color: rgb(249, 240, 228);
  padding: 100px 0 100px 0;
  color: #3A2A20;
}
.footer__form {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #3A2A20;
  line-height: 169%;
  padding: 0px 0 50px 0;
}
@media (min-width: 992px) {
  .footer__form {
    padding: 0px 100px 50px 0;
  }
}
.footer__form .btn-group {
  display: inline-flex;
  flex-wrap: nowrap;
  border: 1px solid rgb(208, 175, 22);
  border-radius: 8px;
  overflow: hidden;
}
.footer__form .btn-group .btn {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border: 0;
  background-color: #ffffff;
  color: #3A2A20;
  border-radius: 0;
  transition: all 0.2s ease;
}
.footer__form .btn-group .btn + .btn {
  border-left: 1px solid #5A493D;
}
.footer__form .btn-group .btn i {
  margin-right: 6px;
}
.footer__form .btn-group .btn:hover {
  background-color: #F2E6D9;
}
.footer__form .btn-check:checked + .btn {
  background-color: rgb(208, 175, 22);
  color: #f5f5f5;
}
.footer__form .btn-check:checked + .btn:hover {
  background-color: rgb(208, 175, 22);
  color: #f5f5f5;
}
.footer__form .btn-check:focus + .btn {
  box-shadow: 0 0 0 0.2rem rgba(208, 175, 22, 0.25);
}
.footer__datoscontacto {
  padding: 10px 50px 0 20px;
  color: #3A2A20;
}
@media (min-width: 992px) {
  .footer__datoscontacto {
    padding: 10px 100px 0px 50px;
  }
}
.footer__contacto {
  font-weight: 400;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #3A2A20;
  display: block;
  padding: 0 0 30px 0;
}
.footer__legales {
  padding: 50px 0 0 0;
  font-weight: 400;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #3A2A20;
}
.footer__redes {
  font-size: 16px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 20px;
  color: #3A2A20;
}
.footer__link {
  text-decoration: none;
  color: #3A2A20;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #8F1440;
}
.footer__heading {
  padding: 0 0 28px 0;
}
@media (min-width: 992px) {
  .footer__heading {
    padding: 0 100px 28px 0;
  }
}
.footer__eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgb(208, 175, 22);
  margin-bottom: 10px;
}
.footer__titulo {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #3A2A20;
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .footer__titulo {
    font-size: 2.4rem;
  }
}
.footer__descripcion {
  font-size: 16px;
  line-height: 1.6;
  color: #3A2A20;
  margin: 0;
  max-width: 520px;
}
.footer__logo {
  padding: 0 0 30px 0;
  text-align: left;
}
@media (min-width: 992px) {
  .footer__logo {
    padding: 0 0 40px 0;
  }
}
.footer__logo-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}

.heroProductos__titulo {
  padding: 250px 50px 250px 50px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.heroProductos__titulo span {
  font-weight: 800;
}
@media (min-width: 992px) {
  .heroProductos__titulo {
    padding: 250px 150px 250px 150px;
  }
}
@media (max-width: 480px) {
  .heroProductos__titulo {
    padding: 150px 50px 150px 50px;
    font-size: 28px;
  }
}
.heroProductos__costal {
  text-decoration: none;
}
.heroProductos__costal img {
  height: 200px;
  filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.2));
}
.heroProductos__costal:hover span {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.heroProductos__costal--titulo {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  display: block;
  position: relative;
}
.heroProductos__cta {
  padding: 100px 0 100px 0;
}
.heroProductos__cta a {
  margin: 10px;
}

.contenido__Productos {
  background-image: url("../img/fondo_espigas.png");
  background-position: top;
}

.mainProductos {
  padding-top: 50px;
  padding-bottom: 50px;
}
.mainProductos__producto {
  padding: 50px 0 50px 0;
}
.mainProductos__titulo {
  padding: 50px 50px 50px 50px;
  font-weight: 600;
  font-size: 2.5rem;
  color: #252525;
}
@media (min-width: 992px) {
  .mainProductos__titulo {
    padding: 50px 150px 50px 150px;
  }
}
@media (max-width: 480px) {
  .mainProductos__titulo {
    padding: 50px 20px 50px 20px;
    font-size: 24px;
  }
}
.mainProductos__titulo--destacar {
  font-weight: 800;
  color: rgb(204, 21, 23);
}
.mainProductos__contenido {
  padding: 50px 0 50px 0;
}
.mainProductos__tituloHarina {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
}
@media (max-width: 480px) {
  .mainProductos__tituloHarina {
    font-size: 24px;
  }
}
.mainProductos__subtituloHarina {
  font-weight: 500;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  transform: translateY(10px);
}
.mainProductos__descHarina {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  margin: 20px 0 20px 0;
}
@media (max-width: 480px) {
  .mainProductos__descHarina {
    font-size: 0.875rem;
  }
}

.detalleHarina__titulo {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
}
@media (max-width: 480px) {
  .detalleHarina__titulo {
    font-size: 0.875rem;
  }
}

.detalleHarina__texto {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #252525;
  margin: 0px;
}
@media (max-width: 480px) {
  .detalleHarina__texto {
    font-size: 12px;
  }
}

.testBento {
  display: grid;
  box-sizing: border-box;
  place-content: center;
}

.testBento__img {
  height: 370px;
  filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.2));
}

.grid-container {
  max-width: 1296px;
  margin: 1rem;
  display: grid;
  grid-auto-columns: 1fr;
  gap: 0.5rem;
  grid-template-areas: "box1   box1    box1    box1    box5    box5" "box2   box2    box3    box3    box5    box5" "box2   box2    box4    box4    box5    box5" "box6   box6    box7    box7    box8    box8";
}

.grid-item {
  background-color: #f5f5f5;
  padding: 30px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition: all 200ms ease;
}

.grid-item-1 {
  grid-area: box1;
}

.grid-item-2 {
  grid-area: box2;
}

.grid-item-3 {
  grid-area: box3;
}

.grid-item-4 {
  grid-area: box4;
}

.grid-item-5 {
  grid-area: box5;
}
@media (min-width: 992px) {
  .grid-item-5 {
    height: 100%;
  }
}

.grid-item-6 {
  grid-area: box6;
  height: 100%;
  display: grid;
  place-content: center;
}

.grid-item-7 {
  grid-area: box7;
  background-size: cover;
  background-position: center;
  height: 200px;
}
@media (min-width: 992px) {
  .grid-item-7 {
    height: 250px;
  }
}

.grid-item-8 {
  grid-area: box8;
  background-size: cover;
  background-position: center;
  height: 200px;
}
@media (min-width: 992px) {
  .grid-item-8 {
    height: 250px;
  }
}

.bentoImg__i11 {
  background-image: url("../img/HarinaFuerte1.jpeg");
}
.bentoImg__i12 {
  background-image: url("../img/HarinaFuerte2.jpeg");
}
.bentoImg__i21 {
  background-image: url("../img/Harina_Tradicional_1.jpeg");
}
.bentoImg__i22 {
  background-image: url("../img/Harina_Tradicional_2.jpeg");
}
.bentoImg__i31 {
  background-image: url("../img/Harina_Suave_1.jpeg");
}
.bentoImg__i32 {
  background-image: url("../img/Harina_Suave_2.jpeg");
}
.bentoImg__i41 {
  background-image: url("../img/Harina_Tortillera_1.jpeg");
}
.bentoImg__i42 {
  background-image: url("../img/Harina_Tortillera_2.jpeg");
}
.bentoImg__i51 {
  background-image: url("../img/Harina_Pastelera_1.jpeg");
}
.bentoImg__i52 {
  background-image: url("../img/Harina_Pastelera_2.jpeg");
}
.bentoImg__i61 {
  background-image: url("../img/Harina_Integral_1.jpeg");
}
.bentoImg__i62 {
  background-image: url("../img/Harina_Integral_2.jpeg");
}

@media (max-width: 992px) {
  .grid-container {
    grid-template-areas: "box1 box1" "box2 box3" "box4 box4" "box5 box5" "box7 box8" "box6 box6";
  }
}
@media (max-width: 440px) {
  .grid-container {
    grid-template-areas: "box1 box1" "box2 box2" "box3 box3" "box4 box4" "box5 box5" "box7 box7" "box8 box8" "box6 box6";
  }
}
.comparativo {
  padding: 100px 0 100px 0;
}
.comparativo__tituloseccion {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 100px 0;
}
@media (max-width: 480px) {
  .comparativo__tituloseccion {
    padding-left: 5px;
    font-size: 36px;
  }
}
.comparativo__img {
  height: 265px;
}
.comparativo__titulo {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
}
.comparativo__texto {
  padding: 20px 0;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #252525;
  min-height: 150px;
}
.comparativo__texto--subtitulo {
  font-weight: bold;
  display: block;
}
.comparativo__cta {
  padding: 50px 0;
}

.contenido__conocenos {
  padding: 50px 0 50px 0;
}

.conocenos__hero {
  padding: 100px 0 100px 0;
}
@media (max-width: 480px) {
  .conocenos__hero {
    padding: 0px 0 50px 0;
  }
}
.conocenos__titulo {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 58px;
  letter-spacing: 0.1em;
  color: #252525;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0px;
  padding: 0px;
}
.conocenos__subtitulo {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #252525;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.conocenos__subtitulo--texto {
  display: inline-block;
  transform: translateY(40px);
}
@media (max-width: 480px) {
  .conocenos__subtitulo--texto {
    transform: translateY(0px);
    display: block;
  }
}
.conocenos__historia {
  background-color: #A0375D;
}

.historia__detalle {
  padding: 100px 0 200px 0;
}
.historia__texto {
  padding: 20px 20px;
  font-weight: 200;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #f5f5f5;
}
@media (max-width: 480px) {
  .historia__texto {
    padding: 20px;
    font-size: 16px;
  }
}

.mision {
  background-color: #f5f5f5;
}
.mision__cuadro {
  transform: translateY(-200px);
}
@media (max-width: 480px) {
  .mision__cuadro {
    transform: translateY(-100px);
  }
}
.mision__detalle {
  padding: 30px 50px 30px 50px;
  margin: 10px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(226, 226, 226, 0.8);
}
@media (min-width: 1200px) {
  .mision__detalle {
    margin: 100px;
  }
}
.mision__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
}
.mision__texto {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 30px 0;
}

.compromiso__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  transform: translateY(-100px);
}
@media (max-width: 480px) {
  .compromiso__titulo {
    transform: translateY(-50px);
    font-size: 30px;
  }
}
.compromiso__subtitulo {
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #252525;
}
@media (max-width: 480px) {
  .compromiso__subtitulo {
    font-size: 18px;
  }
}
.compromiso__detalle {
  padding: 200px 10px;
}
.compromiso__texto {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px;
}

.aliados {
  background-color: #E2E2E2;
}
.aliados__contenido {
  padding: 100px 10px;
}
.aliados__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
}
@media (max-width: 480px) {
  .aliados__titulo {
    font-size: 30px;
  }
}
.aliados__detalle {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px 50px 50px 10px;
}
@media (max-width: 480px) {
  .aliados__detalle {
    font-size: 16px;
  }
}
.aliados__link {
  padding: 50px 0 50px 0;
}
.aliados__cta {
  padding: 100px 0 0 0;
}

.produccion {
  padding: 100px 0;
}
.produccion__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
}
@media (max-width: 480px) {
  .produccion__titulo {
    font-size: 30px;
    padding: 10px;
  }
}
.produccion__subtitulo {
  font-weight: 600;
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #252525;
  transform: translateY(10px);
}
@media (max-width: 480px) {
  .produccion__subtitulo {
    font-size: 16px;
  }
}
.produccion__contenido {
  padding: 100px 30px 100px 30px;
}
@media (min-width: 992px) {
  .produccion__contenido {
    padding: 100px 80px 100px 80px;
  }
}
.produccion__box {
  background-color: #f5f5f5;
  margin: 5px;
  border-radius: 20px;
  padding: 25px 35px;
}
.produccion__box--title {
  margin: 5px;
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
  color: rgb(204, 21, 23);
}

.box {
  font-weight: 400;
  font-size: 0.875rem;
  color: #252525;
}
.box__titulo {
  font-weight: 700;
  font-size: 16px;
  color: #252525;
  display: block;
}
.box__texto {
  font-weight: 400;
  font-size: 0.875rem;
  color: #252525;
}
.box__max {
  font-weight: 800;
  font-size: 60px;
  color: #252525;
}

.certifica__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
}
@media (max-width: 480px) {
  .certifica__titulo {
    font-size: 30px;
  }
}
.certifica__subtitulo {
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px;
}
@media (max-width: 480px) {
  .certifica__subtitulo {
    font-size: 18px;
  }
}
.certifica__detalle {
  padding: 100px 10px;
}
.certifica__texto {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px;
}
.certifica__leyenda {
  margin-top: 6px;
  text-align: center;
}
.certifica__certificado-trigger {
  display: inline-block;
  text-decoration: none;
}
.certifica__certificado-link {
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #5A493D;
  text-decoration: none;
  transition: color 0.2s ease;
}
.certifica__certificado-link:hover {
  color: rgb(204, 21, 23);
  text-decoration: underline;
}

/* INICIA CSS MEJORES PRACTICAS */
.mejores-practicas {
  padding: 100px 0;
}
.mejores-practicas__titulo {
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 36px 0 36px 0;
}
@media (max-width: 480px) {
  .mejores-practicas__titulo {
    padding: 10px 0px 20px 10px;
    font-size: 34px;
  }
}
.mejores-practicas__titulo--subtitulo {
  font-weight: 500;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #252525;
  transform: translateY(10px);
}
.mejores-practicas__heroTexto {
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px 0 50px 0;
  margin: 50px 15%;
}
@media (max-width: 480px) {
  .mejores-practicas__heroTexto {
    margin: 50px 20px;
    font-size: 20px;
  }
}
.mejores-practicas__heroCTA {
  padding: 16px 0 16px 0;
}
.mejores-practicas__heroCTA a {
  margin: 10px;
}
.mejores-practicas__detalle {
  padding: 100px 0 100px 0;
}
@media (max-width: 480px) {
  .mejores-practicas__detalle {
    padding: 40px 0;
  }
}
.mejores-practicas__icono {
  height: 150px;
}
@media (max-width: 480px) {
  .mejores-practicas__icono {
    height: 100px;
  }
}
.servicio__titulo {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 50px 0 50px 0;
}

.servicio__texto {
  font-size: 16px;
}

.faq__respuesta {
  color: #252525;
  font-weight: 400;
  font-size: 0.875rem;
  margin-left: 40px;
  margin-right: 5px;
  transform: translateY(-10px);
  z-index: 1;
  position: relative;
}

.collapse.show, .collapsing {
  z-index: 1 !important;
}

.faq__pregunta {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 20px 30px 10px 30px;
  z-index: 2;
  position: relative;
}

.faq__pregunta--texto {
  color: #252525;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 480px) {
  .faq__pregunta--texto {
    font-size: 14px;
  }
}

.aviso__titulo {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: rgb(204, 21, 23);
  padding: 50px 0 50px 0;
}
.aviso__subtitulo {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px 0 50px 0;
}
.aviso__texto {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #252525;
  padding: 50px 0 50px 0;
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes appear_moveLeft {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes appear_moveRight {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.block__animated--1 {
  animation: appear_moveLeft 0.5s linear;
}

.block__animated--2 {
  animation: appear_moveRight 0.5s linear;
}

.block__animated--3 {
  animation: appear 5s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.block__animated--4 {
  animation: appear_moveLeft 1s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.block__animated--5 {
  animation: appear_moveRight 1s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.block__animated--6 {
  animation: appear 1s linear;
}

.animated__atras--1 {
  animation-delay: 0.2;
}

.animated__atras--2 {
  animation-delay: 0.4;
}

.animated__atras--3 {
  animation-delay: 0.6;
}/*# sourceMappingURL=estilos.css.map */