/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
    z-index: 2;
}

.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    right: 5%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.banner-content-2 {
    position: absolute;
    top: 35%;
    right: 5%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.banner-content-3 {
    position: absolute;
    top: 30%;
    right: 5%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.last-banner-especialidades {
    font-size: 5.5rem; 
    text-align: end; 
    color: #BF2025; 
    font-weight: 900;
    margin-right: 6%;
    cursor: pointer;
}

.last-banner-conheca {
    font-size: 3.5rem; 
    text-align: end; 
    color: #0D2450; 
    font-weight: 900;
}

.last-banner-diagnostico {
    font-size: 2.5rem; 
    text-align: end; 
    color: #0D2450; 
    font-weight: 800;
    margin-right: 8%;
}

.first-banner-circulaçao{
    font-size: clamp(16px, 10vw, 70px);
}

.first-banner-text {
    text-align: end;
    font-size: 2rem;
}

@media (max-width: 1150px) {
    .first-banner-circulaçao{
        text-align: end;
        font-size: clamp(25px, 13vw, 70px);
    }

    .first-banner-text {
        font-size: 1.5rem;
    }
    
    .banner-content {
        top: 35%;
    }
}

@media (max-width: 766px) {
    .last-banner-especialidades {
        font-size: 3rem;
    }

    .last-banner-conheca {
        font-size: 2rem;
    }

    .last-banner-diagnostico {
        font-size: 1.5rem;
    }
}

/* Desktop Navigation */
.desktop-nav {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    width: calc(100% - 40px);
    background: #BF2025;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.desktop-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

.desktop-nav li {
    padding: 15px 15px;
    position: relative;
    flex: 0 0 auto;
}

.desktop-nav a {
    display: block;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    width: 135px;
}

.desktop-nav a:hover {
    font-weight: 800;
}