/* ===================================
    Google font
====================================== */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ===================================
    Variables
====================================== */
:root {
  --merri: "Merriweather", serif;
  --lato: "Lato", serif;
  --black: rgba(0, 0, 0, 1);
  --black-80: rgba(0, 0, 0, 0.8);
  --black-60: rgba(0, 0, 0, 0.6);
  --black-40: rgba(0, 0, 0, 0.4);
  --black-20: rgba(0, 0, 0, 0.2);
  --black-0: rgba(0, 0, 0, 0);
  --white: rgba(255, 255, 255, 1);
  --gray-dark: rgba(18, 18, 18, 1);
  --gray-light: rgba(248, 248, 248, 1);
  --gray: rgba(248, 248, 248, 1);
  --yellow: rgba(241, 182, 52, 1);
  --yellow-second: rgba(255, 184, 0, 1);
  --clr-black-rgb: 0, 0, 0;
}
/* ===================================
    Reset
====================================== */
html {
  width: 100% !important;
  overflow-x: hidden;
}

body {
  padding: 0 !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

p {
  margin-bottom: 0;
}
/* Buttons */
/* Bloque base del botón */
.hero__button {
  min-width: 315px;
  max-width: 315px;
  min-height: 40px;
  height: auto;
  padding: 8px 5px;
  border-radius: 100px;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  text-decoration: none;
  transition: all 0.5s ease;
  text-transform: uppercase;
  cursor: pointer;
}

.hero__button.no-wh {
  min-width: auto;
  max-width: auto;
  width: 100%;
  padding: 12px 32px;
}

/* Modificador para el color amarillo */
.hero__button--yellow {
  background-color: var(--yellow-second);
  height: 40px;
}

.hero__button--yellow:hover {
  background-color: rgba(230, 166, 0, 1);
  opacity: 0.9;
}

/* Fondo negro */

/* Modificador para el botón blanco */
.hero__button--white {
  background-color: var(--white);
  color: var(--gray-dark);
  border: 2px solid var(--gray-dark);
}

.hero__button--white:hover {
  background-color: var(--gray-dark);
  color: var(--white);
}
.hero__button--white:hover svg path {
  fill: white;
}

/* Modificador para el botón gris */
.hero__button--grey {
  background-color: var(--gray-light);
  color: var(--black);
  border: 2px solid var(--gray-light);
}

.hero__button--grey:hover {
  background-color: rgba(225, 224, 220, 1);
  border-color: rgba(225, 224, 220, 1);
}

.hero__button--transparent {
  min-width: 160px;
  max-width: 160px;
  background-color: transparent;
  color: var(--gray-dark);
  min-height: 33px;
  max-height: 33px;
  border: 1px solid var(--gray-dark);
  transition: all 0.5s ease;
  opacity: 1;
}

.hero__button--transparent:hover {
  transition: all 0.5s ease;
  background-color: var(--grey-light);
  opacity: 0.9;
}
.hero__button--transparent.white {
  border: 1px solid white;
  color: white;
  font-weight: 500;
}
.hero__button--transparent.white.auto {
  min-width: 100%;
  max-width: 100%;
  min-height: 40px;
}
.hero__button--transparent.inverse {
  min-width: 315px;
  max-width: 315px;
  min-height: 40px;
  height: auto;
  padding: 12px 5px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid var(--white);
}

.hero__button--transparent.inverse:hover {
  color: var(--black);
  border: 1px solid var(--black);
  background-color: var(--white);
}


.hero__button--transparent svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.mb-32 {
  margin-bottom: 32px;
}

.overflow-x {
  overflow-x: auto;
}

.bg-image {
  filter: brightness(0.6);
  max-height: 800px;
}