/*estilo footer*/
 

    .footer-main {
      background-color: #121212;
      color: white;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 20px;
    }

    .footer-column {
      flex: 1 1 200px;
      min-width: 200px;
    }

    .footer-column h3 {
      color: #f1c40f;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 10px;
      font-size: 14px;
    }

    .footer-column a {
      color: white;
      text-decoration: none;
    }

    .footer-column a:hover {
      text-decoration: underline;
    }

    .logo-section img {
      width: 150px;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons img {
      width: 30px;
      height: 30px;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .social-icons img:hover {
      transform: scale(1.2);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      font-size: 14px;
      color: #ccc;
    }

    
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-column {
        margin-bottom: 30px;
      }

      .logo-section {
        margin-bottom: 20px;
      }
    }

     /* Codigo del menu*/


.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px 20px;
    color: white;
    position: relative;
}

.header-menu {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #333;
}


.logo-img {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
}


.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


.nav {
    display: flex;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
}

.btn-cotizacion {
    background-color: orange;
    padding: 5px 10px;
    border-radius: 5px;
}


@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 59px; 
        left: 0;
        z-index: 10;
        padding: 10px 0;
    }

    .nav.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu li {
        text-align: center;
    }
}

/*textos*/
.hero {
  background-color: #fafafa#fafafabf;
  padding: 50px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  color: #f1c40f;
  margin-bottom: 20px;
}

.hero p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  color: #333;
}


.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background-color: #fafafa#fafafabf
}

.card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h1 {
  font-size: 20px;
  color: #0f0f0f;
  margin-bottom: 15px;
}

.card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #555;
  text-align: justify;
}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .card h1 {
    font-size: 18px;
  }

  .card p {
    font-size: 15px;
  }
}
/*container button*/
 .container-boton {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
  }

  .boton {
      width: 60px;
      transition: transform 0.3s ease-in-out;
      animation: efecto 1.5s infinite alternate;
  }

  .boton:hover {
      transform: scale(1.1);
  }

  @keyframes efecto {
      0% {
          box-shadow: 0 0 0 0 rgba(50, 126, 29, 0.85);
      }
      100% {
          box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
      }
  }