body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #4541BF;
}

a:hover {
    color: #333;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #353273 !important;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header .navbar-brand {
    color: #fff !important;
  }
  
  .header .navbar-nav .nav-link {
    color: #fff !important;
  }
  
  .header .navbar-nav .nav-link:hover {
    color: #ddd !important;
  }
  
  .header .navbar-nav {
    margin-right: 0;
  }
  
  .header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff !important;
    margin-left: 20px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 20px;
  }
  
  .header .logo img {
    height: 75px;
    width: auto;
    margin-right: 10px;
  }
  
  .navbar {
    background-color: #353273 !important;
  }
  
  .logo-img {
    height: 50px;
    width: auto;
    margin-left: 10px;
  }
  
  .navbar-brand {
    padding: 5px 15px;
  }
  
  .navbar-nav {
    margin-right: 0;
  }
  
  .navbar-nav .dropdown-menu {
    background-color: #353273;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
  }
  
  .navbar-nav .dropdown-menu li a {
    color: #fff !important;
    padding: 10px 20px;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .navbar-nav .dropdown-menu li a:hover {
    background-color: #4541BF;
    color: #fff !important;
  }
  
  .navbar-nav .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  @media (max-width: 767px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: none;
    }
  
    .navbar-nav .dropdown-menu li a {
        padding: 10px 15px 10px 30px;
    }
  }



/* Hero Banner */
.equipos-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/servicios/bannerVentas.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 180px 0 100px;
    text-align: center;
}

.equipos-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.equipos-hero p {
    font-size: 22px;
    margin-bottom: 40px;
}

/* Tarjetas de categorías */
.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-card .icon-box {
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #353273;
}

.category-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Tarjetas de productos */
.product-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px 0;
    color: #353273;
}

.product-card ul {
    padding: 0 20px 20px;
    list-style-type: none;
}

.product-card ul li {
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.product-card ul li:before {
    content: "•";
    color: #353273;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-card .btn-primary {
    display: block;
    margin: 0 20px 20px;
    text-align: center;
}

/* Beneficios */
.benefit-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card .icon-box {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #353273;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
}


/* Carrusel de marcas */
.brands-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.brands-carousel img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brands-carousel img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer */

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}