body {
    padding-top: 56px; /* Ajuste para el navbar fijo */
}

/* Navbar Personalizado */
.navbar-custom {
    background: #ffffff;
    border-bottom: 3px solid #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-custom:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.navbar-brand-custom {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-brand-custom:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 87, 179, 0.2);
}

.navbar-brand-custom i {
    font-size: 1.6rem;
    color: #007bff;
}

.nav-link-custom {
    color: #333333 !important;
    font-weight: 500;
    margin-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link-custom:hover {
    color: #007bff !important;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
    padding: 50px 0;
    position: relative;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 15px;
}

#servicios .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#servicios .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#nosotros img {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

footer#contacto {
    background-color: #343a40;
}

footer#contacto .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    transition: background-color 0.3s;
}

footer#contacto .btn-success:hover {
    background-color: #1DAE54;
    border-color: #1DAE54;
}
