html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f7f7;
}

.logo-img {
    height: 90px;
}

.custom-nav-pill {
    padding: 6px 18px;
    border-radius: 12px;
    background: transparent;
    color: #000 !important;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.custom-nav-pill:hover {
    background: #e9ecef;
}

.custom-nav-pill.active {
    background: #000;
    color: #fff !important;
}

.gallery-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 20px;
}

.custom-page-bg {
    background-color: #f7f7f7;
    min-height: 100vh;
}

.custom-card {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; 
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0, 0, 0) !important;
}

.custom-card-img {
    height: 220px; 
    object-fit: cover; 
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.custom-link-color {
    color: #257bfc; 
    font-weight: 600;
}

.custom-link-color:hover {
    color: #333;
}

.custom-inner-container {
    border-radius: 15px;
    background-color: white;
}

.custom-illustration {
    height: 180px; 
    border-radius: 0 0 12px 12px;
    background-size: cover;
    background-position: center bottom;
}

/* Fondo degradado principal */
.custom-gradient-bg {
    min-height: 500px;
    background: linear-gradient(135deg, #ffffff, #7c7c7c, #000000);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.custom-section-height {
    height: 500px;
}

.custom-btn-dark {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
}

.custom-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.6;
    filter: grayscale(100%);
}

.custom-image-box {
    background-color: #000000; 
    border-radius: 12px;
}

.custom-inner-card {
    border-radius: 15px; 
}

.custom-btn-width {
    width: 200px; 
    border-radius: 0.25rem;
}

.custom-rounded-img {
    border-radius: 8px; 
}