body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #b388ddcc;
}

#heroCarousel {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 0;
}

#heroCarousel .carousel-item {
    height: 100vh;
}

.hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    padding: 2rem;
}


.carousel-caption h1 {
    font-size: 3rem;
}

.carousel-caption p {
    font-size: 1.25rem;
}

/* Sección de cómo trabajamos */
.services-content {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-text {
    font-size: 1rem;
    color: #555;
}


#services .section-title {
    font-size: 2.5rem;
}

#services h3 {
    font-size: 1.8rem;
}

#services p {
    font-size: 1.25rem;
    line-height: 1.8;
}


/* Sección de imagen de fondo  - No utilizable de momento*/
.image-section {
    background-image: url('img/image-bg.jpg');
    /* Ruta de tu imagen */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.image-content {
    max-width: 700px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.image-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.image-section .section-description {
    font-size: 1.2rem;
}

/* Menú de navegación */
.navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 350;
    padding: 0.8rem 1rem;
    color: #000;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #b388ddcc;
    /* Color de hover lila */
}

/* Animación y estilo del submenú */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(158, 54, 123, 0.1);
    transition: all 0.3s ease;
    min-width: 220px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.dropdown-menu a.dropdown-item {
    font-size: 1.1rem;
    padding: 10px 20px;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
}

.navbar-collapse {
    flex-basis: 100%;
}

/* LOGO estilizado */
.logo-img {
    height: 100px;
    /* Tamaño adecuado */
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px #b388ddcc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: #b388ddcc;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }

    .dropdown-menu {
        left: 0;
        transform: none;
        min-width: 100%;
    }
}