/* Estilos generales */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 56px;
}

/* Navbar */
.navbar-brand img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Hero Section con Slider */
.hero-section {
    position: relative;
}

.carousel-item {
    height: 100vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100vh;
    min-height: 400px;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    padding: 0 20px;
}

.carousel-indicators {
    margin-bottom: 3rem;
}

/* Resto de los estilos permanecen igual */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

/* Servicios */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Formulario de contacto */
.form-control {
    padding: 0.8rem;
    border-radius: 0.5rem;
}

/* Footer */
.social-links a {
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}