/* Reset */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Neo Sans', sans-serif;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

header {
    background-color: #071d49;
    color: #FFFFFF;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #8b784a;
}

/* Efeito hover no menu */

header nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #8b784a;
    transition: width 0.3s;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* Banner */

#banner {
    background: linear-gradient(rgba(7, 29, 73, 0.9), rgba(7, 29, 73, 0.9)), url('http://katiaramos.com.br/imagens/banner-dra-katia.png') no-repeat center center/cover;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
}

#banner h1 {
    font-family: 'FS Joey', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

#banner p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Botão Genérico */

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #8b784a;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #FFFFFF;
    color: #071d49;
}

/* Estilos para a seção "Sobre" */
#sobre {
    padding: 80px 0;
    background-color: #071d49; /* Azul Royal */
    color: #FFFFFF; /* Cor do texto alterada para branco */
}

#sobre h2 {
    font-family: 'FS Joey', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #FFFFFF; /* Cor do título alterada para branco */
}

.sobre-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.image-and-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
}

.sobre-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

/* Estilos para o quadro de informações */
.sobre-content .info-quadro {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.sobre-content .info-quadro h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #071d49;
}

.sobre-content .info-quadro p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sobre-content p {
    font-size: 1.1rem;
    width: 60%;
    color: #FFFFFF; /* Cor do texto alterada para branco */
}

/* Estilos para o quadro de informações - CRM e RQE */
.sobre-content .info-quadro-crm {
    background-color: rgba(139, 120, 74, 0.4); /* Fundo dourado com transparência */
    border: none; /* Remove a borda */
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    width: 93%; /* Mantém a largura total */
}

.sobre-content .info-quadro-crm h3,
.sobre-content .info-quadro-crm p {
    font-size: 1.1rem; /* Tamanho do texto para o título */
    margin-bottom: 5px; /* Margem inferior */
    color: #071d49; /* Cor azul royal */
}


/* Estilos para o botão "Agende sua Consulta" na seção "Sobre" */
#sobre .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #8b784a;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px; /* Adicionado */
}

#sobre .btn:hover {
    background-color: #FFFFFF;
    color: #071d49;
}




/* Estilos compartilhados para as seções "Nefrologia" e "Nutrologia" */
#nefrologia,
#nutrologia {
    padding: 80px 0;
    background-color: #f9f9f9;
}

#nefrologia .container,
#nutrologia .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#nefrologia .specialty-content,
#nutrologia .specialty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nefrologia .specialty-content .specialty-text,
#nutrologia .specialty-content .specialty-text {
    width: 100%;
    text-align: center;
}

#nefrologia .specialty-content .specialty-text h2,
#nutrologia .specialty-content .specialty-text h2 {
    font-family: 'FS Joey', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #071d49;
}

#nefrologia .specialty-content .specialty-text p,
#nutrologia .specialty-content .specialty-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

#nefrologia .specialty-content .specialty-text ul,
#nutrologia .specialty-content .specialty-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

#nefrologia .specialty-content .specialty-text ul li,
#nutrologia .specialty-content .specialty-text ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

#nefrologia .specialty-content img,
#nutrologia .specialty-content img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    filter: none; /* Removido */
    opacity: 1; /* Removido */
}

#nefrologia .specialty-content .specialty-text .btn,
#nutrologia .specialty-content .specialty-text .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8b784a; /* Cor dourada restaurada */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#nefrologia .specialty-content .specialty-text .btn:hover,
#nutrologia .specialty-content .specialty-text .btn:hover {
    background-color: #2d8a80;
}


/* Avaliações */

#avaliacoes {
    background-color: #f0f0f0;
    padding: 80px 0;
}

#avaliacoes h2 {
    font-family: 'FS Joey', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #071d49;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.avaliacao-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.avaliacao-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avaliacao-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.avaliacao-info h4 {
    font-family: 'FS Joey', sans-serif;
    font-size: 1.2rem;
    color: #071d49;
}

.avaliacao-info .stars {
    color: #8b784a;
}

.avaliacao-text {
    font-size: 1.1rem;
}

/* Instagram */

#instagram {
    background-color: #071d49;
    color: #FFFFFF;
    padding: 80px 0;
}

#instagram h2 {
    font-family: 'FS Joey', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #FFFFFF;
}

#instagram p {
    text-align: center;
}

#instagram .instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

#instagram .instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#instagram .instagram-post img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

#instagram .instagram-post:hover img {
    transform: scale(1.1);
}

#instagram .instagram-button-container {
    text-align: center;
    margin-top: 20px;
}

/* Contato */

#contato {
    padding: 80px 0;
}

#contato h2 {
    font-family: 'FS Joey', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #071d49;
}

.localizacao-container {
    display: flex;
    justify-content: space-around;
}

.localizacao-coluna {
    width: 45%;
}

.localizacao-coluna h3 {
    font-family: 'FS Joey', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #071d49;
}

.localizacao-coluna iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.localizacao-coluna p {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Rodapé */

footer {
    background-color: #071d49;
    color: #FFFFFF;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px; /* Adicionado para espaçamento interno */
}

.footer-column {
    width: 23%;
    text-align: left; /* Alinhamento à esquerda */
}

.footer-column h3 {
    font-family: 'FS Joey', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #8b784a;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.contato-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.contato-info li i {
    margin-right: 0.5rem;
    color: #8b784a;
}

.horario-info li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
}

.social-media a {
    color: #FFFFFF;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #8b784a;
}

/* Responsividade */

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
        align-items: center;
    }

    header .logo img {
        margin-bottom: 20px;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    #banner h1 {
        font-size: 2.5rem;
    }

    #banner p {
        font-size: 1.2rem;
    }

    .sobre-content {
        flex-direction: column;
    }

    .sobre-content img {
        width: 80%;
        margin-bottom: 20px;
    }

    .sobre-content p {
        width: 100%;
    }

    .specialty-content {
        flex-direction: column;
        align-items: center;
    }

    .specialty-content img {
        width: 80%;
        margin-bottom: 20px;
    }

    .specialty-text {
        width: 90%;
    }

    #avaliacoes .avaliacoes-grid {
        grid-template-columns: 1fr;
    }

    .localizacao-container {
        flex-direction: column;
    }

    .localizacao-coluna {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-container {
        flex-direction: column;
        padding: 0; /* Removendo o padding */
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
        text-align: left;
    }
}
