@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;900&display=swap');
@import 'mediaqueries.css';
@font-face {
  font-family: "Good";
  src: url("good.ttf") format("truetype");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
}

.hero {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/vectores/vector-1.png);
  max-width: 100%;
}

.header{
  background-color: rgb(85, 162, 85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  
}

.navbar {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  padding: 15px;
}

.navbar .brand {
  color: #f7b733;
  margin-top: 5px;
  padding-left: 20px;
}

.navbar .menu {
  grid-column: 6 / 9;
  display: flex;
  margin-top: 18px;
}

.menu li {
  list-style: none;
}

.menu li a {
  text-decoration: none;
  margin-right: 3em;
  font-size: 1.3em;
  color: #fff;
  font-weight: 200;
  padding: 10px 20px;
  margin-left: -35px;
}
.menu li a:hover {
  background-color: #f7b733;
  transition: all .5s;
  color: #000;
}

.menu-bar {
  display: none;
}

.titol{
  font-family: "Good";
  font-size: 35px;
  user-select: none;
}

.titol2{
  font-family: "Good";
 -webkit-text-stroke: 0.2px yellow;
  color: white;
  font-size: 55px;
  user-select: none;
}

/* MAIN SECTION */

.main {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.content-info {
  margin-top: 5em;
  color: #fff;
}

button {
  cursor: pointer;
  color: #fff;
  box-shadow: 0px 3px 14px -8px rgba(0,0,0,0.78);
}
button:hover {
  box-shadow: none;
}

.btn-toBuy, .read-more {
  background-color: #ca4172;
  padding: 8px 40px;
  font-size: 1.2em;
  border-radius: 20px;
  border: none;
}

.read-more {
  background: none;
  border: 1px solid #fff;
  margin: 20px;
}

.main img {
  margin-top: 3em;
}

/* ABOUT SECTION */

.logo{
  font-size: 350px;
  font-family: "good";
  margin-right: 25px;
  color: rgb(85, 162, 85);
  user-select: none;
   text-shadow:
    2px 2px 0px rgba(0,0,0,0.2),
    4px 4px 10px rgba(0,0,0,0.3);
}

.about h2 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: .3em;
}

.about .divider, .products .divider {
  background-color: rgb(85, 162, 85);
  width: 50px;
  height: 3px;
  margin: 0 auto;
}

.about .about-content {
  width: 90%;
  margin: 0 auto;
  display: grid;
  display: flex;
  align-items: center;
}

.about .about-info {
  margin: 4em;
}

.about .about-info h3 {
  text-transform: uppercase;
  margin-bottom: 1em;
}

/* PRODUCTS SECTION */

.card{
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  scroll-snap-align: start;
  flex-shrink: 0;
}

.card img{
  width: 100%;
  display: block;
}

.card h2{
  margin: 15px;
}

.card p{
  margin: 0 15px 15px;
}

.marcas{
  width: 190px;
  height: 190px;
}

.marcasp{
  width: 190px;
  height: 190px;
}

.products h2 {
  text-align: center;
  font-weight: bold;
}

.products .divider {
  margin-bottom: 8em;
}

.products .container-products {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.container-products::-webkit-scrollbar{
  height: 8px;
}

.container-products::-webkit-scrollbar-thumb{
  background: #999;
  border-radius: 10px;
}
.content-products-info,
.content-price,
.btn-content {
  display: flex;
  justify-content: center;
}

.content-product-info {
  display: flex;
  justify-content: center;
}

.content-product-info .stars {
  margin-right: 20px;
  text-align: center;

}
.content-product-info h4 {
  text-transform: uppercase;
  text-align: center;
}

.products .content-price .last-price {
  text-decoration: line-through;
  font-weight: lighter;
  margin-right: 20px;
}

.products .content-price .new-price {
  background-color: #ca4172;
  padding: 5px 10px;
  color: #fff;
}

.products .btn-product {
  margin: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  color: #000;
}



/* SUPPORT SECTION */

.dubte{
  width: 250px;
  height: 250px;
}

.support {
  margin-top: 5em;
  background-color: rgb(85, 162, 85);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 50px;
}

.support h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 300;
}

/*  BANNER SECTION */

.mercat{
  width: 100%;
  height: 100%;
}

.banner {

  background-size: cover;
  background-repeat: no-repeat;
  background-position: auto;
  width: 100vw;
  max-width: 100%;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  height: 100vh;
}

.banner .rating {
  grid-column: 3 / 4;
}
.banner .rating {
  text-align: center;
}

.banner .secundary-info {
  grid-column: 8 / 11;
}

.banner h2 {
  font-size: 3em;
}

.secundary-info h2,
.secundary-info h3 {
  margin-bottom: 10px;
}

/*  FOOTER SECTION */

.footer {
  background-color: rgb(85, 162, 85);
  color: #fff;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer .menu li {
  margin-top: 20px;
}

.footer .social-network .fab {
  font-size: 1.8em;
  margin: 10px;
}

.footer .social-network .fab:hover {
  color: #f7b733;
}

.brand-name{
  font-family: "good";
  font-size: 35px;
  color: #f7b733;
  user-select: none;
}