
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p {
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

#contenedor {
    width: 100%;
    margin: 0 auto;
    font-optical-sizing: auto;
    margin-top: 100px;
}


header{
    background-color: #F4F3F0;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
} 

#logo{
  display: inline-block;
  width: 230px;
  height: 82px;
  background-image: url(imagenes/Logo2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 0px;
  margin: 9px 0 0 20px;
}

nav{
  display: flex;
  margin: 17px 0 0 auto;
}

nav ul{
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 20px 20px;
}

nav ul li{
  display: inline-block;
  list-style-type: none;
  text-align: center;
  padding: 0px 10px;
  font-size: 20px;
}

a{
    color: black;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover{
    color: rgb(58, 121, 54);
}

header nav a,
#nav-menu.show a,
.submenu li a {
    color: #1D1D1B;
}

header nav a:hover,
#nav-menu.show a:hover,
.submenu li a:hover {
    color: rgb(58, 121, 54);
}

#nav-menu.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    background: #F4F3F0;
    width: 100%;
    padding: 10px 0;
    z-index: 1001;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

#nav-menu.show li {
    margin: 10px 0;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 40px 20px 0 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1D1D1B;
    border-radius: 2px;
}

/* MEDIA QUERIES - RESPONSIVE DESIGN */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    #logo {
        width: 150px;
        height: 50px;
        margin: 20px 0 0 10px;
    }
    
    nav ul {
        gap: 15px;
        margin: 20px 10px;
    }
    
    nav ul li {
        font-size: 16px;
        padding: 0px 8px;
    }
    
    h3 {
        font-size: 40px;
    }
    
    h4 {
        font-size: 24px;
    }
    
    p {
        font-size: 16px;
    }
    
    .Arribaimagen h2 {
        font-size: 45px;
    }
    
    .boton-whatsapp {
        font-size: 20px;
        padding: 10px 20px;
    }
    
    .Información .imagentilde,
    .Información .imagenchat {
        width: 150px;
        height: 150px;
        padding: 18px;
    }
    
    .industrias .card {
        padding: 20px 40px;
        width: 100%;
        max-width: 400px;
    }
    
    .parrafo {
        width: 100%;
        text-align: center;
        margin: 50px 0px;
    }
    
    #nosotros div div div {
        width: 250px;
        margin: 15px;
    }
    
    #nosotros div div img {
        width: 100px;
    }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    #contenedor {
        margin-top: 70px;
    }
    
    header {
        height: 70px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    #logo {
        width: 110px;
        height: 38px;
        margin: 0 0 0 15px;
    }
    
    .hamburger {
        display: flex;
        margin: 0 15px 0 auto;
    }

    nav {
        margin: 0;
        width: auto;
    }

    #nav-menu.show {
        top: 70px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul.show {
        display: flex;
        position: static;
        background: #F4F3F0;
        padding: 10px 0;
    }
    
    nav ul li {
        font-size: 14px;
        padding: 8px 10px;
    }
    
    h3 {
        font-size: 23px;
        margin: 15px 0;
    }
    
    h4 {
        font-size: 18px;
    }
    
    p {
        font-size: 16px;
    }
    
    .Arribaimagen {
        position: relative;
        min-height: 340px;
        overflow: hidden;
        padding: 22px 20px 22px 20px;
        box-sizing: border-box;
        display: block;
    }

    .Arribaimagen::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.5) 100%);
        z-index: 2;
    }

    .Arribaimagen img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .Arribaimagen h2,
    .Arribaimagen h3,
    .Arribaimagen p {
        position: relative;
        max-width: 85%;
        z-index: 10;
    }

    .Arribaimagen h2 {
        font-size: 24px;
        line-height: 1.2;
        margin: 0 0 8px 0;
        color: white;
        text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }
    
    .Arribaimagen h3 {
        font-size: 16px;
        line-height: 1.3;
        margin: 0 0 8px 0;
        color: white;
        text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }
    
    .Arribaimagen p {
        margin: 0 0 8px 0;
        color: white;
        font-size: 12px;
        line-height: 1.4;
        text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    }
    
    .Arribaimagen .boton-whatsapp {
        position: relative;
        top: 0;
        left: 0;
        z-index: 10;
        display: inline-block;
        width: auto;
        margin: 4px 0 0 0;
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .Información {
        padding: 20px 10px 40px 10px;
    }
    
    .Información > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 6px;
        margin-top: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .Información div div {
        width: 33%;
        padding: 0 4px;
        box-sizing: border-box;
    }

    .Información h4 {
        font-size: 12px;
        margin: 6px 0 4px 0;
    }

    .Información p {
        font-size: 10px;
        line-height: 1.3;
        margin: 4px 0;
    }

    .Información hr {
        width: 60%;
        margin: 6px auto;
    }
    
    .Información .imagentilde,
    .Información .imagenchat,
    .Información .imagencamion {
        width: 55px;
        height: 55px;
        padding: 12px;
    }
    
    .industrias {
        margin: 30px 15px;
        margin-bottom: 40px;
        background-color: #FAFAF7;
        border-radius: 16px;
        padding: 20px 0;
    }
    
    body .industrias h3 {
        width: 100%;
        max-width: 100%;
        margin: 0 0 12px 0;
        text-align: center;
        box-sizing: border-box;
    }
    
    .industrias div {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .industrias .imagenbolsas {
        order: -1;
        width: 80%;
        max-width: 320px;
        margin: 0 auto;
        margin-left: auto;
        display: block;
    }
    
    .industrias .card {
        padding: 20px;
        width: 100%;
        max-width: 340px;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 16px;
        justify-content: initial;
    }
    
    .industrias .column {
        gap: 10px;
    }
    
    .industrias .column p {
        margin: 0;
        font-size: 12px;
        line-height: 1.4;
    }
    
    body #nosotros {
        padding: 15px 15px 10px 15px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    #nosotros hr {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
    
    #nosotros h4 {
        font-size: 20px;
        margin: 8px 0;
    }
    
    .contenedor-superpuesto {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .contenedor-superpuesto .tarjeta {
        order: 1;
        position: relative;
        width: 100%;
        max-width: 300px;
        padding: 16px;
        box-sizing: border-box;
        margin: 6px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contenedor-superpuesto .tarjeta div {
        position: static;
        padding-left: 0;
        width: 100%;
    }
    
    .contenedor-superpuesto .tarjeta img {
        padding-top: 0;
    }
    
    #nosotros div div img.imagenpersonas,
    #nosotros div div img.imagenmedalla,
    #nosotros div div img.imagenescudo {
        width: 80px;
        height: 80px;
    }
    
    .contenedor-superpuesto .imagenpaquetes {
        display: none;
    }
    
    body footer div {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 15px 12px;
    }
    
    body footer div div {
        justify-content: flex-end;
        gap: 10px;
    }
    
    .parrafo {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }
    
    body #logofooter {
        width: 95px;
        margin: 0;
        flex-shrink: 0;
    }
    
    body footer div div img {
        width: 30px;
        height: 30px;
        margin: 0;
        object-fit: contain;
    }
    
    .submenu {
        min-width: 200px;
    }
    
    #mapa {
        padding: 30px 15px;
        box-sizing: border-box;
    }
    
    #mapa iframe {
        width: 100%;
        max-width: 100%;
        height: 260px;
        box-sizing: border-box;
    }
    
    .parrafo-showroom {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    #contenedor {
        margin-top: 70px;
    }
    
    #logo {
        width: 100px;
        height: 35px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 16px;
    }
    
    p {
        font-size: 14px;
    }
    
    .Arribaimagen {
        min-height: 300px;
        padding: 18px 15px 18px 15px;
    }
    
    .Arribaimagen h2 {
        font-size: 20px;
    }
    
    .Arribaimagen h3 {
        font-size: 14px;
    }
    
    .Arribaimagen p {
        font-size: 11px;
        max-width: 80%;
    }
    
    .Arribaimagen .boton-whatsapp {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .industrias .card {
        padding: 10px 15px;
        width: calc(100% - 30px);
    }
    
    .Información div div {
        width: 100%;
    }
    
    .parrafo {
        margin: 10px 0;
    }
    
    body #logofooter {
        width: 78px;
    }
    
    body footer div div img {
        width: 24px;
        height: 24px;
    }

    body footer div div {
        gap: 8px;
    }

    .Información div div {
        padding: 0 2px;
    }

    .Información .imagentilde,
    .Información .imagenchat,
    .Información .imagencamion {
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    .Información p {
        font-size: 9px;
    }
}

.dropdown {
    position: relative;
    padding-bottom: 10px; 
}

.submenu {
    display: none;
    position: absolute;
    top: 90%;
    left: 0;
    background: #F4F3F0;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    padding: 0;
    margin-top: 0px;
}

.dropdown:hover .submenu,
.submenu:hover {
    display: block;
}

.submenu li {
    display: block;
    padding: 10px;
    margin: 0;
}

.submenu li a {
    color: #1D1D1B;
    text-decoration: none;
}

.submenu li a:hover {
    color: rgb(58, 121, 54);
}

.Nosotros h3 {
  margin: 100px;
}
.Arribaimagen {
  position: relative;
  display: inline-block;
  width: 100%;
}

.Arribaimagen div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 769px) {
  .Arribaimagen h2 {
    font-size: 48px;
    margin: 0 0 10px 0;
    color: white;
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 10;
  }

  .Arribaimagen h3 {
    font-size: 36px;
    margin: 0 0 15px 0;
    color: white;
    position: absolute;
    top: 80px;
    left: 40px;
    z-index: 10;
  }

  .Arribaimagen p {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.5;
    position: absolute;
    top: 120px;
    left: 40px;
    z-index: 10;
    max-width: 80%;
  }

  #parrafo-contacto {
    top: 120px;
  }
}

.boton-whatsapp {
  display: inline-block;
  background-color: rgb(90, 185, 90);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: fit-content;
  text-decoration: none;
  position: absolute;
  top: 260px;
  left: 40px;
  z-index: 10;
}

.boton-whatsapp:hover {
  background-color: rgb(58, 121, 54);
}

.imagenbobinador {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

.Información {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  h3 {
    font-size: 50px;
    margin: 20px 0;
  }

  h4 {
    font-size: 30px;
    margin: 10px 0;
  }

  p {
    font-size: 20px;
    margin: 20px 0;
  }
}

@media (min-width: 769px) {
  .Información div {
    display: inline-block;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
  }

  .Información div div {
    width: 400px;
    text-align: left;  
    padding: 20px;
    justify-content: center;
    text-align: center;
  }
}

.imagentilde,
.imagenchat {
  width: 200px;
  height: 200px;
  background-color: #E7F3DE;
  border-radius: 50%;
  padding: 24px;
  box-sizing: border-box;
}

.imagencamion{
    width: 235px;
    height: 235px;
    background-color: #E7F3DE;
    border-radius: 50%;
    padding: 28px;
    box-sizing: border-box;
    object-fit: contain;
}

hr {
  border: none;
  border-top: 3px solid rgb(58, 121, 54);
  margin: 10px auto;
  width: 50%;
}

.industrias{
  margin: 50px;
  margin-bottom: 100px;
}

.industrias h3{
  text-align: center;
  margin: 100px;
}

.industrias div{
 display: flex;
 justify-content: center;
}


.imagenbolsas{
  width: 30%;
  margin-left: 60px;
  border-radius: 25px;
}

.card {
  background-color: rgba(0, 0, 0, 0.945);
  border-radius: 15px;
  padding: 30px 70px;
  width: 500px;
  display: flex;
  justify-content: space-between;
  border-color: rgb(58, 121, 54);
  border-style: solid;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.column p {
  margin: 0;
  color: #ffffff;
  margin: 0px 15px;
}

#nosotros {
  padding: 0px 40px 0px 70px; 
  position: relative;
  display: inline-block;
}

@media (min-width: 769px) {
  #nosotros h4 {
    font-size: 30px;
  }
}

#nosotros hr{
width: 40%;
margin-bottom: 20px;
margin-left: 0;
}

#nosotros div div {
  justify-content: center;
  margin: 50px;
}

#nosotros div div div {
  display: inline-block;
  width: 300px;
  text-align: left;  
  justify-content: center;
  text-align: center;
  margin: 20px;
}

#nosotros div div img {
  width: 120px;
  height: auto;
}

.imagenpaquetes { 
  width: 350%;
  justify-content: right;
  position: absolute;
 }

.tarjeta{
 position: relative;
 padding: 35px;
 }

.tarjeta div{
  position: absolute;
  padding-left: 20px;
}

.tarjeta img{
  padding-top: 40px;
}

.tarjeta div h4{
  color: rgb(58, 121, 54);
}

footer{
  width: 100%;
  background-color: #F4F3F0;
}

footer div{
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}

footer div div{
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
}

footer div div img{
  margin: 0;
  display: inline-block;
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.parrafo{
  display: inline-block;
  width: 700px;
  text-align: right;
  margin: 90px 0px;
  vertical-align: top;
}

#logofooter{
  display: inline-block;
  width: 170px;
  margin: 20px;
}

#mapa {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

#mapa h3 {
  text-align: center;
}

#mapa iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
}

.parrafo-showroom {
  text-align: center;
  margin: 25px 0 15px 0;
  font-size: 18px;
  max-width: 500px;
}


/* =======================================================
   MEJORAS VISUALES - Sombras, transiciones, hover
   ======================================================= */

.Arribaimagen {
  overflow: hidden;
}

.Arribaimagen img {
  transition: transform 0.4s ease;
}

.Arribaimagen:hover img {
  transform: scale(1.035);
}

.boton-whatsapp {
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.boton-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.card,
#nosotros div div div {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.imagenbolsas,
#nosotros div div img,
.imagentilde,
.imagenchat,
.imagencamion {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.imagenbolsas:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

.imagentilde:hover,
.imagenchat:hover,
.imagencamion:hover {
  transform: translateY(-3px);
}

footer div div img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

footer div div a:hover img {
  transform: translateY(-3px);
  opacity: 0.85;
}

nav ul li a {
  transition: color 0.2s ease;
}

/* =======================================================
   BOTON FLOTANTE DE WHATSAPP
   ======================================================= */

#whatsapp-flotante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#whatsapp-flotante:hover {
  background-color: rgb(58, 121, 54);
  transform: translateY(-3px);
}

/* =======================================================
   PAGINA ACTIVA EN EL MENU
   ======================================================= */

header nav a.active,
#nav-menu.show a.active {
  color: rgb(58, 121, 54);
  font-weight: bold;
  border-bottom: 2px solid rgb(58, 121, 54);
  padding-bottom: 2px;
}

.submenu a.active {
  color: rgb(58, 121, 54);
  font-weight: bold;
}

/* =======================================================
   FADE-IN AL HACER SCROLL
   ======================================================= */

.fade-in-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
