@import url('https://fonts.googleapis.com/css?family=Montserrat');


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

body {
  background: #111;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

/*Header*/
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px 50px;
  z-index: 1000;
  background-color: white;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LOGO */
.logo {
  justify-self: start;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.7;
}


header .HomePage{
  float: right;
}
header .HomePage ul{
  margin: 0;
  padding: 0;
  display: flex;
}
header .HomePage ul li{
  list-style: none;
}
header .HomePage ul li.none{
  display: none;
}
header .HomePage ul li a{
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #333;
  display: block;
  letter-spacing: 0.3px;
}
header .HomePage ul li a.action{
  color: #333;
  opacity: 0.98;
  text-decoration: none;
  transition: all 0.3s ease;
}
header .HomePage ul li a.action:hover{
  background-color: rgba(0,0,0,0.1);
}
header .HomePage ul li a.active{
  color: #333;
  text-decoration: none;
  border-right: 1px solid white;
  transition: all 0.3s ease;
}
header .HomePage ul li a.active:hover{
  background-color: rgba(0,0,0,0.1);
}

.menu-toggle{
  color: #333;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/*Header*/

.hero {
  height: 100vh;
  background: url('https://res.cloudinary.com/dz0610bcp/image/upload/v1777819823/portada_pvrouq.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-magrahanger {
  height: 100vh;
  background: url('https://res.cloudinary.com/dz0610bcp/image/upload/v1777835108/IMG_1356_wnu3fk.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-guitartStands {
  height: 100vh;
  background: url('https://res.cloudinary.com/dz0610bcp/image/upload/v1777902009/IMG_6464_w72aqk.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* DARK OVERLAY */
.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* CONTENT */
.hero-content h1 {
  font-size: 82px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: transparent;
  color: white;
  border: 1px solid white;
}


/* IMPACT SECTION */
.impact-section {
  background: white;
  padding: 100px 60px;
  color: #111;
  display: grid;
}

.impact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin: 0px auto;
}

/* LEFT TEXT */
.impact-text {
  flex: 1;
  max-width: 550px;
}

.impact-text h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
}

.impact-text h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.impact-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 50px;
}

/* STATS */
.impact-stats {
  display: flex;
  gap: 50px;
}

.stat h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat span {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}

/* RIGHT IMAGE */
.impact-image {
  flex: 1;
}

.impact-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: cover;
}


/* PRODUCTS SECTION */
.products-section {
  padding: 100px 50px;
  background: #f8f8f8;
  text-align: center;
}

.products-header h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #333;
}

.products-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

/* GRID */
.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.products-grid-hanger {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* CARD */
.product-card {
  background: #f8f8f8;
  padding: 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  object-fit: contain;
  border-radius: 20px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

/* BUTTON */
.product-btn {
  display: inline-block;
  padding: 12px 26px;
  background: black;
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.product-btn:hover {
  background: #333;
}

.market-section {
  background: white;
  padding: 100px 60px;
  color: #111;
  display: grid;
}

.market-section .products-header{
    text-align: center;
}

.market-section .products-header h2{
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #333;
}

.market-section .impact-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0px auto;
}

.market-section .impact-container .section-magdalena{
    height: 100vh;
    max-height: 700px;
    background: url('/images/magrashoetrees/pto_venta_magdalena.png') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vh;
    max-width: 600px;
}

.market-section .impact-container .section-sanisidro{
    height: 100vh;
    max-height: 700px;
    background: url('/images/magrashoetrees/pto_venta_negreiros.png') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vh;
    max-width: 600px;
}

.market-section .impact-container .overlay{
    width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.market-section .impact-container .text-inside{
    color: white;
}

.family-brands {
  background: white;
  padding: 100px 60px;
  color: #111;
  display: grid;
}

.family-brands .products-header{
    text-align: center;
}

.family-brands .products-header h2{
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #333;
}

.family-brands .impact-image {
  width: 100%;
  max-width: 300px;
}


/*FOOTER*/

footer{
    text-align: center;
    bottom: 0;
    left: 0px;
    width: 100%;
    padding: 20px;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    display: block;
}

footer .a_box_footer h2{
  margin:0 auto;
  font-size: 10px;
}
/*FOOTER*/


/* RESPONSIVE */

@media (max-width: 1400px) {

    .market-section .impact-container{ 
        display: grid;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        margin: 0px auto;
    }

    .market-section .impact-container .section-magdalena{
        height: 100vh;
        max-height: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .market-section .impact-container .section-sanisidro{
        height: 100vh;
        max-height: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
} 

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
    .nav-container {
      display: grid;
      grid-template-columns: 1fr auto 0fr;
      align-items: center;
    }
    .menu-toggle{
        display: block;
        color: #333;
    }
    header .HomePage{
        display: none;
        position: absolute;
        width: 100%;
        height: calc(130vh - 50px);
        opacity: 0.97;
        background: #333;
        top:70px;
        left:0;
        transition: 0.5s;
    }
    header .HomePage ul{
        padding: 20px;
        display: block;
        text-align: center;
    }

    header .HomePage.active{
        left:0;
        display: block;
    }
    header .HomePage ul li a{
        border-bottom: 1px solid rgba(0,0,0,.2);
    }
    header .HomePage ul li a.active{
        color: white;
        text-decoration: none;
        border-right:none;
        text-align: left;
    }
    header .HomePage ul li a.action{
        color: white;
        opacity: 0.98;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: left;
    }
    header .HomePage ul li.none{
        display: block;
    }
}

@media (max-width: 992px) {
  .impact-container {
    flex-direction: column;
    text-align: center;
  }

  .market-section .impact-container {
    flex-direction: column;
    text-align: center;
  }

  .impact-text {
    max-width: 100%;
  }

  .impact-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .impact-text h2 {
    font-size: 38px;
  }
  .family-brands .products-header h2{
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .nav-menu {
    gap: 25px;
  }
}

@media (max-width: 700px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid-hanger {
    grid-template-columns: 1fr;
  }

  .products-header h2 {
    font-size: 38px;
  }

  .products-header p {
    font-size: 16px;
  }

  .market-section .products-header h2{
    font-size: 38px;
    }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .impact-section {
    padding: 70px 25px;
  }

  .market-section {
    padding: 70px 25px;
  }

  .impact-text h2 {
    font-size: 30px;
  }

  .impact-text p {
    font-size: 15px;
  }

  .impact-stats {
    gap: 25px;
  }

  .stat h3 {
    font-size: 28px;
  }
}