*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --green: #203723;
  --gray: #d9d9d9;
  --black: #020202;
  --accent: #3a7041;
  --white: #fafafa;
  --gradient: linear-gradient(159deg, rgb(9, 73, 36) 0%, rgba(32,55,35,1) 56%);
  --gradient-dark: linear-gradient(159deg, rgb(6, 52, 25) 0%, rgb(15, 46, 19) 56%);
  --gradient-light: linear-gradient(159deg, rgb(7, 69, 33) 0%, rgb(8, 93, 19) 56%);
  --ff-ss: "Open Sans", sans-serif;
  --ff-s: "Cinzel", serif;
  --sec-pad: 8.5rem 0;
}

html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 70%;
}

body {
  color: var(--black);
  background-color: var(--gray-light);
  font-family: var(--ff-ss);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle, rgb(230, 230, 230) 50%, rgb(255, 255, 255) 100%);
}

.btn-xl {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1.2px;
  font-weight: 300;
  cursor: pointer;
  background: var(--green);
  height: 52px;
  padding: 0 24px;
  line-height: 52px;
  border-radius: 2px;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  -ms-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
  font-family: var(--ff-ss);
}

.btn {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.2px;
  font-weight: 300;
  cursor: pointer;
  background: var(--green);
  padding: 10px 20px;
  line-height: 36px;
  border-radius: 2px;
  border: 1px solid transparent;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  -ms-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
  font-family: var(--ff-ss);
}

.btn-xl:hover,
.btn-xl:focus,
.btn:hover,
.btn:focus {
  background: var(--accent);
  box-shadow: 1px 0px 50px -2px rgba(0, 0, 0, 0.75) inset;
}

body::-webkit-scrollbar {
  width: 0.5rem;
}

body::-webkit-scrollbar-track {
  background: var(--gray);
}

body::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 0.5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-dark);
}

.nav {
  position: relative;
  z-index: 100;
  height: 90px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
}
.nav .navbar {
  display: flex;
  justify-content: space-between;
  margin: 0 40px;
}
.nav .navbar .logo {
  display: grid;
  place-items: center;
}
.nav .navbar .logo .logo-img {
  height: 50px;
  margin-right: 20px;
}
.nav .navbar .navbar-nav {
  justify-content: right;
  display: flex;
  margin-right: 2rem;
  list-style: none;
  transition: 0.4s;
}
.nav .navbar .navbar-nav .nav-item {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0 15px;
  line-height: 90px;
}
.nav .navbar .navbar-nav .nav-item .nav-link {
  color: var(--white);
  text-decoration: none;
  transition: 1ms;
}
.nav .navbar .navbar-nav .nav-item .cta {
  background: var(--green);
  padding: 10px 18px;
  border-radius: 2px;
  color: var(--white);
  border: 1px solid transparent;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  -ms-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.nav .navbar .navbar-nav .nav-item .cta:hover,
.nav .navbar .navbar-nav .nav-item .cta:focus {
  background: var(--accent);
  box-shadow: 1px 0px 50px -2px rgba(0, 0, 0, 0.75) inset;
}
.nav .navbar .col-btn {
  color: var(--black);
  background: none;
  border: none;
  font-size: 2.7rem;
  cursor: pointer;
  display: none;
}

.scrolled {
  background: var(--gradient);
  transition: 0.1s ease-in-out;
  box-shadow: 2px 7px 46px 3px rgba(0, 0, 0, 0.83);
}
.scrolled .navbar .navbar-nav .nav-item .nav-link {
  color: var(--white);
  transition: 0.17s;
}
.scrolled .navbar .navbar-nav .nav-item .cta {
  background: var(--gray);
  color: var(--black);
  border: 1px solid transparent;
}
.scrolled .navbar .navbar-nav .nav-item .cta:hover,
.scrolled .navbar .navbar-nav .nav-item .cta:focus {
  background: var(--accent);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 1px 0px 50px -2px rgba(0, 0, 0, 0.75) inset;
}
@media (min-width: 768px) {
  .scrolled .navbar-nav {
    background: none;
  }
}

@media (max-width: 808px) {
  .nav .navbar {
    height: 90px;
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 90px 1fr;
    gap: 0px 0px;
    grid-template-areas: "logo hamburger" "nav nav";
  }
  .nav .navbar .logo {
    grid-area: logo;
    background: var(--gradient);
    position: relative;
    z-index: 10;
    padding-left: 40px;
  }
  .nav .navbar .logo .logo-img {
    justify-self: left;
    height: 40px;
  }
  .nav .navbar .navbar-nav {
    grid-area: nav;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    background-color: var(--gray);
    position: relative;
    width: 100%;
    top: -100%;
    z-index: 2;
    transition: top 0.3s;
  }
  .nav .navbar .navbar-nav .nav-item .nav-link {
    color: var(--black);
  }
  .nav .navbar .navbar-nav .nav-item .cta {
    background: var(--gradient);
    color: var(--white);
  }
  .nav .navbar .navbar-nav_visible {
    top: 0;
  }
  .nav .navbar .col-btn {
    background: var(--green);
    z-index: 10;
    grid-area: hamburger;
    display: block;
    color: var(--white);
    display: grid;
    justify-content: right;
    align-content: center;
    padding-right: 30px;
  }
  .nav .navbar .col-btn .fa-solid {
    opacity: 0.7;
  }
  .nav .navbar .col-btn .fa-solid:hover {
    opacity: 1;
  }
}
.main-grid {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(5, 7, 8, 0.8) -30%, rgba(5, 7, 12, 0.1)), url(/assets/images/main-bg.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding: var(--sec-pad);
}
.main-grid .grid-content {
  margin: 0 3rem;
  font-family: var(--ff-s);
}
.main-grid .grid-content .title {
  text-align: center;
  font-size: clamp(1.4rem, 6vw, 2.8rem);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.main-grid .grid-content .sub-title {
  text-align: center;
  font-size: clamp(1.5rem, 6vw, 2.8rem);
  color: var(--white);
  margin-bottom: 30px;
}
.main-grid .grid-content .btn-div {
  display: flex;
  justify-content: center;
}

.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50px 1fr 1fr 100px;
  gap: 40px 20px;
  grid-template-areas: "title title" "box-1 img-1" "img-2 box-2" "eslo eslo";
  justify-content: stretch;
  justify-items: stretch;
  padding: var(--sec-pad);
  width: 80%;
}
.about-us .section-title {
  grid-area: title;
  font-size: 2.8rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  width: 100%;
  font-family: var(--ff-s);
}
.about-us .section-title::after {
  width: 100%;
  content: "";
  position: absolute;
  background: var(--green);
  height: 0.2rem;
  left: 0;
  top: 100%;
}
.about-us .box {
  background: linear-gradient(167deg, rgb(254, 254, 254) 0%, rgb(222, 227, 233) 100%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 15px;
  grid-area: box-1;
  width: clamp(250px, 85%, 1000px);
  justify-self: center;
  height: 100%;
}
.about-us .box .title {
  font-family: var(--ff-s);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem;
  position: relative;
  margin-bottom: 15px;
}
.about-us .box .title::after {
  width: 100%;
  content: "";
  position: absolute;
  background: var(--green);
  height: 0.2rem;
  left: 0;
  top: 100%;
}
.about-us .box .text {
  font-size: 1.25rem;
  line-height: 22px;
  font-family: var(--ff-ss);
  margin-bottom: 20px;
}
.about-us .box .text b {
  color: var(--accent);
  font-weight: bold;
}
.about-us .img {
  aspect-ratio: 4/3;
  height: 300px;
  justify-self: center;
}
.about-us .img-1 {
  grid-area: img-1;
}
.about-us .img-2 {
  grid-area: img-2;
}
.about-us .box-2 {
  grid-area: box-2;
}
.about-us .contenedor-eslogan {
  grid-area: eslo;
  padding-top: 30px;
}
.about-us .contenedor-eslogan .eslogan {
  text-align: center;
  color: #203723;
  font-size: clamp(2rem, 6vw, 2.8rem);
  letter-spacing: 0, 5px;
  font-weight: bold;
  font-family: var(--ff-s);
  text-transform: uppercase;
  background-color: red;
  background-image: linear-gradient(159deg, rgb(18, 188, 41) 0%, rgb(31, 102, 40) 60%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

@media (max-width: 1040px) {
  .about-us {
    padding-bottom: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto 1fr auto auto;
    grid-template-areas: "title" "box-1" "img-1" "box-2" "img-2" "eslo";
  }
  .about-us .box {
    width: 100%;
  }
  .about-us .img {
    justify-self: center;
    height: auto;
    width: 100%;
    max-width: 500px;
  }
}
.camisas {
  width: 80%;
  padding: var(--sec-pad);
}
.camisas .grid-containter {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 40px 0px;
  grid-template-areas: "Title Title" "Box Box";
  justify-content: stretch;
  align-content: center;
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
}
.camisas .grid-containter .box {
  justify-self: center;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto auto;
  gap: 0px 20px;
  grid-template-areas: "Info Vid";
  background: linear-gradient(167deg, rgb(254, 254, 254) 0%, rgb(222, 227, 233) 100%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 2.5rem;
  width: clamp(800px, 80%, 1000px);
}
.camisas .grid-containter .box .video {
  grid-area: Vid;
  width: 350px;
  -webkit-clip-path: inset(1% 0 1% 0);
  clip-path: inset(1% 0 1% 0);
  display: block;
  box-shadow: rgba(0, 0, 0, 0.385) 0px 8px 24px;
}
.camisas .grid-containter .box .info {
  grid-area: Info;
  min-width: 300px;
}
.camisas .grid-containter .box .info .title {
  font-family: var(--ff-s);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}
.camisas .grid-containter .box .info .title::after {
  width: 100%;
  content: "";
  position: absolute;
  background: var(--green);
  height: 0.2rem;
  left: 0;
  top: 100%;
}
.camisas .grid-containter .box .info .sub-title {
  font-family: var(--ff-s);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 5px;
  opacity: 0.8;
}
.camisas .grid-containter .box .info .sub-title::after {
  width: 100%;
  content: "";
  position: absolute;
  background: var(--green);
  height: 0.1rem;
  opacity: 0.7;
  left: 0;
  top: 100%;
}
.camisas .grid-containter .box .info .text {
  font-size: 1.25rem;
  line-height: 22px;
  font-family: var(--ff-ss);
  margin-bottom: 20px;
}
.camisas .grid-containter .box .info .text b {
  color: var(--accent);
  font-weight: bold;
}
.camisas .grid-containter .box .info .text-2 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.camisas .grid-containter .section-title {
  grid-area: Title;
  font-size: 2.8rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  width: 100%;
  font-family: var(--ff-s);
}
.camisas .grid-containter .section-title::after {
  width: 100%;
  content: "";
  position: absolute;
  background: var(--green);
  height: 0.2rem;
  left: 0;
  top: 100%;
}

@media (max-width: 920px) {
  .camisas .grid-containter .box {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-template-areas: "Vid" "Info";
    width: clamp(200px, 100%, 500px);
    gap: 20px 0px;
  }
  .camisas .grid-containter .box .video {
    justify-self: center;
    height: auto;
    width: clamp(150px, 100%, 400px);
  }
  .camisas .grid-containter .box .info {
    min-width: 200px;
  }
}
.contact {
  display: grid;
  width: 80%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "box";
  justify-content: stretch;
  justify-items: stretch;
  padding: var(--sec-pad);
  position: relative;
  z-index: 20;
}
.contact .box {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr;
  gap: 0px 20px;
  grid-template-areas: "info qr";
  justify-self: center;
  align-self: center;
  grid-area: box;
  width: 80%;
  max-width: 950px;
  background: radial-gradient(circle, rgb(230, 230, 230) 50%, rgb(255, 255, 255) 100%);
  box-shadow: rgba(0, 0, 0, 0.385) 0px 8px 24px;
  border-radius: 2px;
  padding: 20px;
}
.contact .box .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.contact .box .info .title {
  font-size: 2.3rem;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  margin: 0 0 2rem 0;
}
.contact .box .info .title::after {
  width: 100%;
  content: "";
  position: absolute;
  background: var(--green);
  height: 0.2rem;
  left: 0;
  top: 100%;
}
.contact .box .info .sub-title {
  font-family: var(--ff-s);
  font-size: 1.2rem;
  margin: 5px 0 20px;
}
.contact .box .info .text {
  font-size: 1.4rem;
  font-family: var(--ff-s);
  margin-bottom: 20px;
}
.contact .box .info .text i {
  color: var(--green);
  margin-right: 5px;
}
.contact .box .info .btn {
  width: 80%;
  max-width: 250px;
  text-align: center;
  align-self: center;
}
.contact .box .info .btn .fa-brands {
  margin-right: 5px;
}
.contact .box .image {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.385) 0px 8px 24px;
  justify-self: center;
  width: 100%;
  justify-self: center;
  align-self: center;
}

@media (max-width: 874px) {
  .contact {
    width: 100%;
  }
  .contact .box {
    max-width: 450px;
    grid-template-columns: 1fr;
    grid-template-rows: 3fr 100%;
    grid-template-areas: "info" "qr";
  }
  .contact .box .info {
    margin-bottom: 20px;
  }
  .contact .box .image {
    justify-self: auto;
    align-self: auto;
    margin-bottom: 0;
  }
}
footer {
  position: relative;
  bottom: 0;
  left: 0;
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--gray-dark);
  color: white;
  background-color: #121212;
}
footer .footer-container {
  height: fit-content;
  width: 100%;
  padding: 3rem 6rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
footer .footer-container .footer-content-container {
  display: flex;
  flex-direction: column;
}
footer .footer-container .footer-content-container .website-logo {
  display: flex;
  margin-bottom: 20px;
}
footer .footer-container .footer-content-container .website-logo .website-logo-img {
  width: 200px;
}
footer .footer-container .footer-content-container .footer-info {
  margin: 0.2rem 0;
  opacity: 1;
  color: white;
  transition: 0.5s;
}
footer .footer-container .footer-content-container .menu-title {
  font-size: var(--medium-text-font);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
footer .footer-container .footer-content-container .social-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  width: 90%;
  margin: 0 auto;
}
footer .footer-container .footer-content-container .social-container .social-link {
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  line-height: 33px;
  transition: 0.3s;
  font-size: 2.2rem;
}
footer .footer-container .footer-content-container .social-container .social-link:hover {
  opacity: 0.7;
  transform: scale(1.05);
}
footer .footer-container .footer-bemanagement {
  padding-top: 20px;
  padding-left: 20px;
}
footer .footer-container .footer-bemanagement .bemanagement-logo {
  width: 200px;
  height: 50px;
}
footer .copyright-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
footer .copyright-container .copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 400;
  padding: 10px 0;
}

@media (max-width: 768px) {
  footer .footer-container {
    padding: 2rem;
    flex-direction: column;
  }
  footer .footer-container .footer-content-container {
    padding: 2rem 0;
    border-bottom: 1px solid #2A2A2A;
    justify-content: center;
    align-items: center;
  }
  footer .footer-container .footer-content-container .social-container {
    width: 100px;
  }
  footer .footer-container .footer-bemanagement {
    align-self: center;
  }
}
