
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)),
    url('../img/panoramica.jpg') no-repeat center center/cover;
    height: 70vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}



.hero h1 {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 95%;
}

.hero h4 {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
}

.navbar-brand {
    font-weight: bold;
}

a {
    display: inline-block !important;
    width: auto !important; 
    flex: none;
}

.fixed-whatsapp {
    position: fixed;
    bottom: 55px;
    right: 8px;
    z-index: 1000;
}

.fixed-top-button {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 1000;
    display: none;
}

.card-bg {
    background-size: cover;
    color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    border: 3px solid #39291a;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.card-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease-in-out;
}

.card-bg span {
    position: relative;
    z-index: 2;
}

.card-bg:hover {
    transform: scale(1.05); /* Efeito de zoom */
    filter: brightness(1.2); /* Aumenta o brilho */
}

.card-bg:hover::before {
    background: rgba(0, 0, 0, 0.7); /* Aprofunda a sombra ao passar o mouse */
}
.bg-top {
    background-color: #39291a !important;
}

#topBtn {
    background-color: rgb(36, 26, 16) !important;
    border: 1px solid #fff;
}

.title {
    text-align: center;
}

.whatsapp-icon {
    margin-top: 5px;
    animation: pulse 1.5s infinite;
}

.container {
    width: 100%;
    margin: auto;
}
.collapsible {
    background-color: #39291a;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
}

.footer{
    background-color: rgb(36, 26, 16) !important;
}

.active, .collapsible:hover {
    background-color: #1a120b;
}
.content {
    padding: 0 15px;
    display: block;
    overflow: hidden;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.list-column {
    flex: 1;
    min-width: 300px;
}

.doencas{
    list-style: none;
    padding: 0;
}

p{
    text-align: justify;
    text-justify: inter-word;
}

.list-doencas{
    background: #ffffff;
    padding: 10px 15px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.list-doencas:hover {
    background: #f1f1f1;
}

.list-doencas i {
    color: #007bff;
    margin-right: 10px;
}
.team {
    display: flex;
    
   
    max-width: 100%;
    margin: auto;
    padding-inline: 5px;
}
.profile {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-align: center;
    
}
.profile:hover {
    transform: scale(1.05);
    opacity: 0.8;
}
.profile img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #39291a;
}

.profile button{
    background-color: #39291a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.profile button:hover{
    background-color: #22180f;
}

.profile-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}
.collapse {
    display: none;
    background-color: #39291a;
    border-radius: 10px;
   
}
.collapse.active {
    display: block;
}


@media (max-width: 991.98px) { /* Aplica apenas em telas menores */
    .collapse {
        display: none !important;
    }
    .collapse.show {
        display: block !important;
    }
    .collapse.active {
        display: block !important;
    }
}


.contact-info {
    text-align: center;
}

.card {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
}
.highlight {
    background-color:rgb(36, 26, 16);
    color: white;
    font-size: 1.2em;
}
.contact a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        margin-top: 15%;
    }
    .hero h1 {
        font-size: 1.5rem;
        margin-top: 10%;
    }
    .card-bg{
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1800px) {
    .container {
        width: 80%;
    }
}

@media screen and (min-width: 1200px) {
    .hero h1 {
        margin-top: 10%;
    }
    
}