* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: roboto, sans-serif;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #61b379;
    padding: 20px;
    display: flex;
    align-items: center;
}
.logo img {
    height: 80px;
    margin-right: 50px;
}
nav {
    flex-grow: 1;
}
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 20px; /* Altere o valor conforme desejado */
}
.menu > li {
    position: relative;
}
.menu > li > a {
    color: rgb(1, 34, 14);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 10;
}
.menu > li > a:hover {
    background-color: #9e9999;
}
.menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #9e9999;
    padding: 0;
    list-style-type: none;
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}
.menu li.show > ul {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.menu li ul li {
    width: 200px;
}
.menu li ul li ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #eceaea;
    transform: translateX(-20px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}
.menu li ul li.show > ul {
    display: block;
    transform: translateX(0);
    opacity: 1;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu {
        flex-direction: column;
        width: 100%;
    }
    .menu > li {
        width: 100%;
    }
    .menu li ul {
        position: static;
        transform: none;
        opacity: 1;
    }
    .menu li ul li ul {
        position: static;
        transform: none;
        opacity: 1;
    }
}

#carousel-imagens {
    width: 100%;
    max-width: 1280px;
    height: 30vw;
    max-height: 420px;
    margin: auto;
}
#carousel-imagens img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    #carousel-imagens {
        max-height: 250px;
    }
    #carousel-imagens img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        object-fit: cover;
        display: block;
    }
}
 .navigation label {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            border-radius: 50%;
            background: #f7f3f3;
            cursor: pointer;
        }

        .telemedicina-section {
            padding: 20px;
            background: #fff;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 20px 0;
        }

        .telemedicina-section h2 {
            margin-top: 0;
            color: #007134;
            font-size: 45px;
            margin-bottom: 24px;
            display: block;
            text-align: center;
            font-weight: 90;
            line-height: 1.2;
            text-align: center;
            text-transform: uppercase;
        }

        .telemedicina-section p {
            margin-bottom: 0;
            color: #edeef0;
            font-size: 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
}
.content img {
    max-width: 100%;
    height: auto;
}
.content-text {
    flex: 1;
    padding: 20px;
}
.whatsapp-button {
    padding: 20px 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-button img {
    margin-right: 10px;
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}


.faculdade-ead-section {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 8px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.content-text {
    margin-bottom: 20px;
    padding: 40px;
    background-color: #e0e0eb;
    border-radius: 8px;
}

.content-text h2 {
    color: #189762;
    font-size: 24px;
    margin-bottom: 10px;
}
.content-text h2 {
    animation: fadeIn 1s ease-in-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.content-text p {
    color: #747272;
    font-size: 16px;
    line-height: 1.5;
}

.content {
    gap: 40px; /* Espaço entre imagem e texto */
}

.content-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.content-image strong {
    color: #02725a;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeIn 0.5s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;

    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    padding: 80px 0;
}

.content-image ul {
    list-style: none;
    padding: 0;
}

.content-image ul li {
    color: #747272;
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInList 0.6s forwards;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes fadeInList {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer icons side by side */
.footer-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-direction: row; /* Alterado de column para row */
}

.footer-icons img,
.footer-icons a {
    display: inline-block;
    vertical-align: middle;
    width: 40px; /* Ajuste o tamanho conforme necessário */
    height: 40px; /* Ajuste o tamanho conforme necessário */
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0; /* Fundo para os ícones */
    padding: 10px; /* Espaçamento interno */
    text-decoration: none; /* Remove underline dos links */
    color: inherit; /* Mantém a cor do texto */
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp-button img {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .content-text h2 {
        font-size: 20px;
    }
    .h3{
        font-size: 18px;
        color: #038157;
    }

    .content-text p {
        font-size: 14px;
        background-color: #dddbe4;
    }

    .content-image strong {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .content-image ul li {
        font-size: 14px;
    }

    .whatsapp-button {
        font-size: 14px;
    }
}
