   body {
      font-family: 'Poppins', sans-serif;
      color: #333;
    }

    /* Navbar */
    .navbar {
      background-color: #000;
      padding: 0.8rem 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
    }

 .fondogris { background-color: #dcdcdc!important;
    }

 
 

  .imagenfondo {
     background: url('../images/lamparitas.jpg') no-repeat center center fixed;
      background-size: cover;
  padding-top: 120px; /* espacio para el navbar fijo */
  padding-bottom: 80px; /* espacio para respirar antes del footer */
  min-height: 100vh; /* asegura que ocupe toda la altura visible */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* para que el formulario arranque debajo del menú */
    }


    .contact-container {  
   background-color: white;
      max-width: 500px;
      width: 100%;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .contact-container:hover {
      transform: translateY(-5px);
    }

 

    form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    label {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 5px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    input:focus, textarea:focus {
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0,123,255,0.3);
      outline: none;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

   
    .status-message {
      display: none;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    .status-message.success {
      color: green;
    }

    .status-message.error {
      color: red;
    }


   .navbar-brand img {
  height: 70px; /* Más grande */
  margin-right: 10px;
  margin-top: 5px;
}

.navbar {
  background-color: #000;
  padding: 0.5rem 0; /* más fino */
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand span {
  color: white;
  font-weight: 500;
  font-size: 1.5rem;
  margin-left: 5px;
}
    .navbar-brand span {
      color: white;
      font-weight: 500;
      font-size: 1.3rem;
    }

    .navbar-nav {
      margin: 0 auto;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 600;
      margin: 0 12px;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: #6cb38f !important;
    }

    .navbar .phone {
      color: white;
      font-weight: 600;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .navbar .phone i {
      font-size: 1.2rem;
      margin-right: 6px;
      color: #00c98d;
    }
      
      .carousel-item {
  transition: opacity 1.5s ease-in-out;
}

    .textotitulosuper {
font-size: 70px!important;
}
    /* Dropdown personalizado */
    .dropdown-menu {
      border-radius: 0;
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      margin-top: 0.8rem;
    }

    .dropdown-item {
      font-weight: 600;
      text-transform: uppercase;
      padding: 10px 20px;
    }

    .dropdown-item:hover {
      background-color: #00c98d;
      color: #fff;
    }

    /* Slider */
    .carousel-item img {
      height: 90vh;
      object-fit: cover;
      filter: brightness(85%);
    }

    .hero-overlay {
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      color: #fff;
      background: rgba(0, 0, 0, 0.45);
      padding: 40px 50px;
      border-radius: 10px;
      max-width: 550px;
      z-index: 10;
    }

    .hero-overlay h1 {
      font-weight: 700;
      font-size: 3rem;
    }

    .hero-overlay h3 {
      font-weight: 600;
      font-size: 1.5rem;
    }

    .hero-overlay p {
      margin-top: 15px;
      line-height: 1.5;
      font-size: 1rem;
    }    

/* Contenedor de producto */
    .product-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 4rem;
      align-items: center; /* centrado vertical */
      justify-content: space-between;
    }

    .product-images {
      flex: 1 1 400px;
      text-align: center;
    }

    .product-images img.main-image {
      width: 100%;
      max-width: 420px;
      border-radius: 10px;
      transition: opacity 0.3s ease;
      margin: 0 auto;
      display: block;
    }

    .product-thumbnails {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .product-thumbnails img {
      width: 75px;
      height: 75px;
      object-fit: cover;
      border-radius: 6px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.3s ease, transform 0.2s ease;
    }

    .product-thumbnails img:hover {
      transform: scale(1.05);
    }

    .product-thumbnails img.active-thumb {
      border-color: #007bff;
    }

    .product-info {
      flex: 1 1 400px;
      padding: 10px;
    }

    .product-info h2 {
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .product-info p {
      text-align: justify;
      line-height: 1.6;
    }

    .btn-custom {
      background-color: #47916e;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      font-weight: 600;
    }

    .btn-custom:hover {
      background-color: #6db591;
    }




    /* Productos */
    #productos {
      background-color: #f8f9fa;
      padding: 70px 0;
    }

    .product-card {
      background: #fff;
      border: none;
      text-align: center;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      width: 100%;
      max-height: 230px;
      border-radius: 8px;
      object-fit: cover;
    }


   .product-card2 {
      background-color: #f6f6f6;
      border-radius: 5px;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease;
    }
    .product-card2:hover {
      transform: translateY(-5px);
    }
    .product-card2 img {
      max-height: 260px;
      width: auto;
      margin-bottom: 10px;
    }
    
    
  .product-card3 {      background-color: #f6f6f6;
      border-radius: 5px;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease;
}

    .btn-leer {
      background-color: #008d5c;
      color: white;
      border: none;
    }

    .btn-leer:hover {
      background-color: #00b875;
    }

    /* Empresa */
    #empresa {
      background-color: #f4f6f8;
      padding: 80px 0;
    }

    #empresa h2 {
      font-weight: 700;
      margin-bottom: 30px;
    }

    #empresa p {
      color: #444;
    }

    /* Footer */
    footer {
      background: #000;
      color: #ddd;
      padding: 50px 0;
    }

    footer h5 {
      color: #fff;
      margin-bottom: 15px;
    }

    footer a {
      color: #bbb;
      text-decoration: none;
    }

    footer a:hover {
      color: #00c98d;
    }
      .phone {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone i {
  font-size: 1.2rem;
  margin-right: 6px;
  color: #00c98d;
}

.phone:hover {
  color: #00c98d;

}
      
 .copy {
  font-size: 0.80rem;
}
      
      /* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: floatIn 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}
      
     



    /* --- Nuevo bloque de producto --- */
    #productos {
      background-color: #f8f9fa;
      padding: 80px 0;
    }

    .product-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .product-images {
        margin-top: 110px;
      flex: 1 1 400px;
      text-align: center;
      position: relative;
    }

    .product-images img {
      max-width: 100%;
      border-radius: 10px;
      transition: opacity 0.6s ease;
    }

    .product-thumbnails {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 15px;
    }

    .product-thumbnails img {
      width: 60px;
      height: 60px;
      border-radius: 6px;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .product-thumbnails img:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    .product-info {
      flex: 1 1 400px;
    }

    .product-info h2 {
      font-weight: 700;
      margin-bottom: 15px;
      color: #333;
    }

    .product-info p {
      color: #555;
      line-height: 1.6;
    }

    .btn-custom {
      background-color: #008d5c;
      border: none;
      color: #fff;
      padding: 10px 25px;
      font-weight: 600;
      margin: 10px 10px 0 0;
      transition: background 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #00b875;
    }

    /* WhatsApp flotante */
    .whatsapp-float {
      position: fixed;
      width: 80px;
      height: 80px;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      text-align: center;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
    }


      .marginmensajehome { margin: 35px 0px;
}
      
       .marginslide { padding-top: 95px;  
}

/* Ajuste del tamaño del texto del detalle del producto */
.product-info p {
  font-size: 14px !important; /* podés poner 10px o 11px si querés más chico */
  line-height: 1.6;
}

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

      .product-info {
        padding: 0;
      }
     
     .hero-overlay.marginmensajehome {
    padding: 25px 30px; /* menos espacio interno */
    max-width: 85%;
  }

  .hero-overlay.marginmensajehome h1 {
    font-size: 2rem; /* antes 3rem */
  }

  .hero-overlay.marginmensajehome h3 {
    font-size: 1.1rem; /* antes 1.5rem */
  }

  .hero-overlay.marginmensajehome p {
    font-size: 0.9rem;
  }
       /* Color del icono del menú (hamburguesa) */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3); /* opcional: borde suave */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(250,250,250, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
                .textotitulosuper {
font-size: 24px!important;
}
      
}
   @media (max-width: 576px) {
  .hero-overlay.marginmensajehome {
    padding: 20px;
    max-width: 90%;
  }

  .hero-overlay.marginmensajehome h1 {
    font-size: 1.6rem;
  }

  .hero-overlay.marginmensajehome h3 {
    font-size: 1rem;
  }

  .hero-overlay.marginmensajehome p {
    font-size: 0.85rem;
  }
       
       
         /* Color del icono del menú (hamburguesa) */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3); /* opcional: borde suave */
}
            

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(250,250,250, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
           .textotitulosuper {
font-size: 24px!important;
}
       
       
}
   
 