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------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #353273 !important;
    padding: 10px 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;
    }
  }
/* --------------------------- Body Styles -------------------------- */

.hero-banner.soporte-hero {
    background: linear-gradient(rgba(53, 50, 115, 0.8), rgba(53, 50, 115, 0.8)), 
                url('../img/servicios/bannerSoporteSitio.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 50px;
}

.soporte-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.soporte-hero p {
    font-size: 1.5rem;
    margin: 0 0 25px;
    line-height: 1.3;
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #353273;
    margin: 0 auto 10px;
    font-weight: 700;
    line-height: 1.2;
}

.bottom-line {
    width: 100px;
    height: 3px;
    background-color: #4541BF;
    margin: 0 auto 30px;
    border: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0 auto 30px;
    line-height: 1.4;
}

/* --------------------------- Service Cards -------------------------- */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #353273;
    font-size: 1.5rem;
    margin: 15px 0 10px;
    line-height: 1.3;
}

.service-features {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    margin: 15px 0 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-features li:before {
    content: "✓";
    color: #4541BF;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.icon-box img {
    margin: 0 0 10px;
}

/* --------------------------- Benefits Section -------------------------- */
.bg-gray {
    background-color: #f5f5f7;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #353273;
    font-size: 1.3rem;
    margin: 0 0 8px;
    line-height: 1.3;
}

.benefit-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* --------------------------- Coverage Section -------------------------- */
.coverage-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.coverage-card h3 {
    color: #353273;
    font-size: 1.3rem;
    margin: 0 0 10px;
    line-height: 1.3;
}

.coverage-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.coverage-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.coverage-card li:before {
    content: "•";
    color: #4541BF;
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* --------------------------- Responsive Adjustments -------------------------- */
@media (max-width: 768px) {
    .hero-banner.soporte-hero {
        padding: 120px 0 60px;
    }
    
    .soporte-hero h1 {
        font-size: 2.2rem;
        margin: 0 0 10px;
    }
    
    .soporte-hero p {
        font-size: 1.1rem;
        margin: 0 0 20px;
    }
    
    .section-padding {
        padding: 25px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin: 0 auto 7px;
    }
    
    .bottom-line {
        margin: 0 auto 20px;
    }
    
    .benefit-item {
        flex-direction: column;
    }
    
    .benefit-icon {
        margin-bottom: 10px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .bg-primary h3 {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-light {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .soporte-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;

    }
    
    .service-card h3, .coverage-card h3, .benefit-content h3 {
        font-size: 1.2rem;
    }
}


/*---------------------------fooder------------------------------*/

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}