﻿@import url('css2');

html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    position: relative;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    color: #303030;
    font-size: 25px;
    font-weight: 800;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #303030;
    display: block;
    font-weight: 600;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.bg {
    position: absolute;
    width: 100%; 
    height: 400px;
    z-index: -10;
    right: 0;
    top: -50px;
    animation: strongFloat 20s ease-in-out infinite;
}

@media (max-width: 768px) {
  .header1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-secundario {
    display: none;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    position: static;
  }

  .nav-secundario.active {
    display: flex;
    flex-direction: column;
  }

  .nav-secundario-menu li {
    text-align: left;
    padding-left: 20px;
  }

  /* Empuja el contenido automáticamente */
}


/* Botón hamburguesa visible solo en móviles */
.menu-toggle {
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: block;
}

/* A partir de 768px, menú horizontal */
@media (min-width: 768px) {
    .nav-secundario {
        display: flex !important;
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        background: none;
        z-index: auto;
    }

    .nav-secundario-menu {
        display: flex;
        gap: 20px;
    }

    .menu-toggle {
        display: none;
    }
}


    @keyframes strongFloat {
        0% {
            top: -50px; /* Posición inicial */
        }
        50% {
            top: 50px; /* Posición intermedia, mucho más abajo */
        }
        100% {
            top: -50px; /* Vuelve a la posición inicial */
        }
    }


.esp {
    position: absolute;
    top: 700px;
    bottom: 0;
    width: 100px;
}

.header-info {
    display: flex;
    align-items: center;
    margin-top: 120px;

}

.header-txt {
    width: 50%;
    padding-right: 35px;
}

.header-txt h1 {

    font-size: 55px;
    line-height: 70px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 25px;
    text-transform: capitalize;

}

.header-txt p {
    font-size: 16px;
    color: #545454;
    margin-bottom: 35px;
}

.btn-1 {
    display: inline-block;
    background-color: #FF9F0D;
    padding: 13px 30px;
    border-radius: 25px;
    color: #ffffff;
    text-transform: capitalize;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-1:hover {
    background-color: #EE9003;
}

.header-img {
    width: 45%;
}

.header-img img {
    width: 650px;
    animation: zoomEffect 25s ease-in-out infinite; 
}

@keyframes zoomEffect {
    0%, 100% {
        transform: scale(1); /* Tamaño normal */
    }
    50% {
        transform: scale(1.2); /* Aumenta de tamaño */
    }
}


.info {
    padding: 100px;
    display: flex;
    justify-content: space-between;
}

.info-1 {
    width: 300px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.info-1 img {
    width: 35px;
}

.info-1 h3 {
    font-size: 18px;
    color: #303030;
    margin-bottom: 10px
}

.info-1 p {
    font-size: 16px;
    color: #545454;
}

.nosotros {
    position: relative;
}

.doosbg {
    position: absolute;
    width: 1500px; /* Ancho inicial */
    height: 400px; /* Altura inicial automática */
    z-index: -10;
    right: 0;
    top:-50px; /* Ajusta el valor para bajar la imagen */
}


.nosotros-info {
    padding: 100px 0;
    display: flex;
    align-items: center;
    

}

.nosotros-img {
    width: 80%;
}
.nosotros-img img {
    width: 550px;
  animation: zoomEffect 25s ease-in-out infinite; 
}

@keyframes zoomEffect {
    0%, 100% {
        transform: scale(1); /* Tamaño normal */
    }
    50% {
        transform: scale(1.2); /* Aumenta de tamaño */
    }
}

.nosotros-txt {
    width: 50%;
}

.nosotros-txt span {
    font-size: 16px;
    color: #FF9F0D;
    font-weight: 700;
    margin-bottom: 25px;
}

.nosotros-txt h2 {
    font-size: 45px;
    color: #303030;
    margin-bottom: 30px;
}

.nosotros-txt p {
    font-size: 18px;
    color: #545454;
    margin-bottom: 50px;
}

.products {
    padding: 80px 0;
    text-align: center;
}

.products h2 {
    font-size: 45px;
    color: #303030;
    margin-bottom: 30px;
}

.products p {
    font-size: 18px;
    color: #545454;
    margin-bottom: 70px;
    padding: 0 200px;
}

.product-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: auto;
    grid-gap: 3rem;
}

.product {
    padding-bottom: 35px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

.product img {
    width: 100%;
    height: 250px;
    border-radius: 25px 25px 0 0;
}

.product h3 {
    font-size: 20px;
    color: #303030;
    margin-top: 15px;
}

.product p {
    font-size: 16px;
    padding: 30px;
    color: #545454;
    margin: 0;
}

.product span {
    background-color: #FF9F0D;
    padding: 10px;
    color: #ffffff;
    border-radius: 15px;
}

hr {
    border: 1px solid #EEE;
}

.footer {
    padding: 100px 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}


.link h3 {
    font-size: 20px;
    color: #303030;
    margin-bottom: 20px;
}

.socials img {
    margin-right: 15px;
}

a {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    color: #545454;
}


@media(max-width: 991px) {


    .menu {
        padding: 30px;
    }
    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #303030;
        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
    }

    .menu .navbar ul li a {
        color: #ffffff;
    }

    .menu .navbar ul li a:hover {
        color: #bebebe;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .bg {
        width: 500px;
    }

    .esp {
        display: none;
    }

    .header-info {
        flex-direction: column;
        padding: 30px;
    }

    .header-txt {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .header-txt h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .header-img {
        width: 100%;
        text-align: center;
        padding-top: 35px;
    }

    .header-img img {
        width: 300px;
    }

    .info {
        padding: 0;
        flex-direction: column;
        align-items: center;
    }

    .info-1 {

        margin-bottom: 20px;
    }

    .nosotros {
        padding: 30px;
    }

    .bg-2 {
        top: 80px;
        width: 200px;
    }

    .nosotros-info {
        padding: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nosotros-img {
        width: 100%;
    }


    .nosotros-img img {
        width: 300px;
    }


    .nosotros-txt {
        width: 100%;
    }

    .nosotros-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .nosotros-txt p {
        margin-bottom: 20px;
    }
    .product-title {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%; /* Asegura que el título se expanda completamente */
    }
    

    .products h2 {
    font-size: 30px;
    color: #303030;
    margin-bottom: 30px;
    text-align: 200; /* Asegura que el texto esté centrado */
    display: block; /* Asegura que ocupe el ancho completo */
    width: 100%; /* Asegura que abarque toda la sección */
    }
    .products {
        padding: 80px 0;
        text-align: center; /* Asegura que todo dentro esté centrado */
    }

    .products p {
        padding: 0;
        margin-bottom: 40px;
    }

    .product-info {
        grid-template-columns: repeat(1, 1fr);
    }

    .product p {
        padding: 30px;
    }

    .footer {
        padding: 30px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .socials {
        margin-bottom: 25px;
    }



}

body{
    background-color: rgb(249, 246, 246);
}




 /* Codigo del menu*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
}


.header1 {
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;

}

.header1 {
    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-secundario {
    display: flex;
}

.nav-secundario-menu {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-secundario-menu li a {
    color: white;
    text-decoration: none;
}

.btn-cotizacion {
    background-color: orange;
    padding: 5px 10px;
    border-radius: 5px;
}

.menu,
.header1,
.nav-secundario {
    
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .header1 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .menu-toggle {
        display: block;
    }

  .nav-secundario {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 43px;
        left: 0;
        z-index: 10;
        padding: 10px 0;
    }

    .nav-secundario.active {
        display: flex;
    }

    .nav-secundario-menu {
        flex-direction: column;
        gap: 10px;
    }

    .nav-secundario-menu li {
        text-align: center;
    }
}

    

/*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;
      }
    }


    

    /*productos*/
.product-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  gap: 2rem;
  padding: 2rem;
  background-color: #f5f5f5;
}

.product {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.product p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product span {
  display: inline-block;
  background-color: #ff9f0d;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95rem;
}

/* Responsive: 2 columnas en tablets */
@media (max-width: 992px) {
  .product-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 columna en móviles */
@media (max-width: 600px) {
  .product-info {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .product h3 {
    font-size: 1rem;
  }

  .product p {
    font-size: 0.9rem;
  }

  .product span {
    font-size: 0.85rem;
  }
}

.responsive-paragraph {
  font-size: clamp(1rem, 2.5vw, 1.5rem); /* Escala entre 16px y 24px */
  line-height: 1.6;
  text-align: center;
  padding: 1rem;
  color: #333; /* Cambia si tienes un fondo oscuro */
  max-width: 900px;
  margin: 0 auto;
}

/*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);
      }
  }

  .menu1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.texto1 {
    color: #303030;
    font-size: 25px;
    font-weight: 800;
    margin-top: -16px;
}
