    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f4f7fa;
      color: #343a40;
      line-height: 1.6;
    }   

    .hero {
      background-image: url('../imagenes/portada.jpg');
      background-size: cover;
      background-position: center;
      padding: 200px 0;
      text-align: center;
      color: white;
      min-height: 80vh;
    }

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

    .hero p {
      font-size: 1.25rem;
      font-weight: 400;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
      font-weight: 700;
      color: #006400;
    }
    .section-nosotros {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
      font-weight: 700;
      color: #cc6321;
    }
    .section-subtitle {
      font-size: 1.25rem;
      color: #777;
      margin-bottom: 30px;
    }

    .content-section {
      padding: 60px 0;
      background-color: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .mission-vision-section {
      background-color: #e9ecef;
      padding: 60px 0;
    }

    .icon-box {
      background-color: #cc6321;
      padding: 20px;
      border-radius: 50%;
      color: white;
      font-size: 2rem;
      display: inline-block;
      margin-bottom: 20px;
    }

    .footer {
      background-color: #333;
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }

    .product-card {
      margin: 15px; 
      border: none; 
      border-radius: 10px;
      transition: transform 0.3s;
    }

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

    .custom-div {
        box-shadow: 0 0 27px 0 rgba(84, 84, 84, 0.62);
        height: 60px;
        background-color: black; /* Fondo negro por defecto */
        border-top: 15px solid #006400; /* Borde superior con color dinámico */
        border-bottom: 15px solid #006400; /* Borde inferior con color dinámico */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .avatar {
        margin-top: 35px;
        width: auto; /* Ajusta el tamaño del avatar según tus preferencias */
        height: 90px;
        border-radius: 50%;
        padding: 3px; /* Ajusta el tamaño del margen según tus preferencias */
        background-color: #006400; /* Color de fondo del margen */
    }

    .verificado {
        
        margin-top: 40px;
        width: auto; /* Ajusta el tamaño del avatar según tus preferencias */
        height: 25px;
        position: absolute;
        top: 0;
        left: 90%; /* Cambié "start-30" a "left: 30%;" */
        transform: translateX(-50%); /* Traducción de "translate-middle-x" */
        
       
}

    .language-bar {
      background-color: #006400; 
      padding: 10px 20px; 
      position: fixed; 
      top: 0; 
      width: 100%; 
      z-index: 1000; 
    }

    .language-bar .btn {
      color: white; 
      border-color: white; 
    }

    .language-bar .btn:hover {
      background-color: #004d00; 
    }

    @media (max-width: 768px) {
      .hero {
        padding: 100px 0;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }


            footer {
            background: linear-gradient(135deg, #000 0%, #333 100%); /* Fondo degradado */
            color: #fff; /* Texto blanco */
            padding: 60px 20px; /* Espaciado */
            text-align: center;
            position: relative;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6); /* Sombra más intensa */
            margin-top: 40px; /* Espaciado superior */
        }
        .contact-info {
            margin: 20px 0;
        }
        .contact-info h3 {
            margin-bottom: 10px;
            font-size: 26px; /* Tamaño de fuente */
            font-weight: 700; /* Peso de fuente más fuerte */
            letter-spacing: 1.2px; /* Espaciado de letras */
            text-transform: uppercase; /* Texto en mayúsculas */
            border-bottom: 2px solid #cc6321; /* Línea inferior */
            display: inline-block; /* Alinear la línea inferior con el texto */
            padding-bottom: 10px; /* Espaciado inferior */
        }
        .contact-info p {
            margin: 8px 0;
            font-size: 18px; /* Tamaño de fuente */
            line-height: 1.5; /* Espaciado entre líneas */
        }
        a {
            color: #cc6321; /* Color de enlaces */
            text-decoration: none;
            transition: color 0.3s, transform 0.3s; /* Transiciones suaves */
        }
        a:hover {
            color: #cc6321; /* Color al pasar el ratón */
            text-decoration: underline; /* Subrayar en hover */
            transform: scale(1.05); /* Aumentar ligeramente el tamaño */
        }
        .footer-bottom {
            margin-top: 30px;
            font-size: 14px; /* Tamaño de fuente */
            border-top: 1px solid rgba(255, 255, 255, 0.3); /* Línea superior */
            padding-top: 15px;
            opacity: 0.8; /* Opacidad para el texto */
        }

                  .loading {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); 
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: 1s all;
        opacity: 0;
    }
    .loading.show {
        opacity: 1;
    }