 .hero_2 {
      background: url('https://images.unsplash.com/photo-1592179900498-1779fc002b8d') center/cover no-repeat;
      color: white;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero_2 h1 {
      font-size: 3rem;
    }
    .beneficio-icono {
      font-size: 2.5rem;
      color: #007bff;
    }
.hero {
    background: url("images/bg4.jpg") no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: left;
}

.hero h1 {
    /*font-size: 3rem;*/
    font-weight: bold;
}
.orange_rich {
    color: #fd9800;
    font-weight: bold;
    font-size: 85px;
}

@media (max-width: 576px) {
    .orange_rich {
        font-size: 45px;
    }
}
.bg-gray{
    min-height: 0px;
    box-shadow: 0px 4px 12px 0px #00000070;
    padding-top: 7px;
    padding-bottom: 10px;
    background-color: #54565a;
    padding-top:20px;
}
.orange-card{
    color:white;
    background-color: #fd9800;
    border:none;
    border-radius: 0px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 40px;
}
.white_rich {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 65px;
}

@media (max-width: 576px) {
    .white_rich {
        font-size: 35px;
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-orange {
    background-color: #f05423;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 25px;
}

.navbar-nav .nav-item .nav-link.active {
    color: #f05423 !important;
    font-weight: bold;
}

.navbar .user-icon {
    font-size: 1.2rem;
    color: #f05423;
}
.hover-box-shadow {
    box-shadow: none;
    border:none;
    transition: box-shadow 0.3s ease;
}

.hover-box-shadow:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #444;
    color: #fd9800;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s;
    text-decoration: none;
}

.info-icon:hover {
    background-color: #fd9800;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .info-icon {
        width: 45px;
        height: 45px;
    }
}
.btn-rich{
    background-color:  #f05423 !important;
    color:white;
    border-color:#f05423 !important;
}
.contact-section {
    background: linear-gradient(to bottom right, #ff9100, #ffc107);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
}

.contact-section h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 0.5rem;
}

.btn-orange {
    background-color: #ff6f00;
    border: none;
    color: white;
}

.btn-orange:hover {
    background-color: #e65100;
}
#whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#whatsapp-form {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
    width: 250px;
}

#whatsapp-form input {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
}

#whatsapp-form button {
    width: 100%;
    background-color: #ff6f00;
    border: none;
    color: white;
    padding: 8px;
    border-radius: 5px;
}

#whatsapp-form button:hover {
    background-color: #e65100;
}
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.product-card .card-body {
    flex-grow: 1;
}
.circulo-color{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 2px;
    border: 1px solid #ccc;
}