@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600&family=Raleway:wght@500;700&display=swap');

/* Estilo Global */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header */
header {
    position: relative;
    width: 100%;
}

/* Navegação */
header nav#nav-esq {
    width: 100%;
    height: 150px;
    background-color: #0A3D62; /* Azul odontologia */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
}

/* Logo */
header nav#nav-esq div#logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
}

header nav#nav-esq div#logo img {
    max-width: 100%;
    max-height: 100%;
}

/* Menu Principal */
header nav#nav-esq ul#menu-principal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

header nav#nav-esq ul#menu-principal li {
    list-style: none;
}

header nav#nav-esq ul#menu-principal li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 4px 6px 10px #000;
    padding-bottom: 8px;
    transition: all 0.3s ease-out;
    white-space: nowrap;
}

header nav#nav-esq ul#menu-principal li a:hover {
    border-bottom: 3px solid #FF6F00;
    opacity: 0.7;
}

/* Ícones de Links */
header nav#nav-esq ul#menu-principal li img {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: opacity 0.3s ease-out;
}

header nav#nav-esq ul#menu-principal li img:hover {
    opacity: 0.7;
}

/* Menu de Ícones (Mobile) */
header nav#nav-esq ul#icone-menu {
    display: none;
}

header nav#nav-esq ul#icone-menu li {
    list-style: none;
}

header nav#nav-esq ul#icone-menu li ion-icon {
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease-out;
}

header nav#nav-esq ul#icone-menu li ion-icon:hover {
    color: #D9D9D9;
}

/* Responsividade (Mobile) */
@media screen and (max-width: 768px) {
    header nav#nav-esq {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    header nav#nav-esq ul#menu-principal {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    header nav#nav-esq ul#icone-menu {
        display: block;
        margin-left: auto;
    }
}

/* Seção "Sobre" */
.sobre {
    background-image: url('../Imagens/HeaderCapa.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    text-align: center;
    color: white;
    position: relative;
}

/* Gradiente no Fundo da Seção "Sobre" */
.sobre::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Melhorando o contraste para o texto */
    z-index: -1;
}

.sobre h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8); /* Aumentando a sombra */
}

/* Melhorando o texto da descrição */
.sobre p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7); /* Aumentando a sombra para maior contraste */
    padding: 0 15px;
}

/* Botão da Seção "Sobre" */
.sobre .btn-secondary {
    background-color: #0583F2;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.sobre .btn-secondary:hover {
    background-color: #0A3D62;
    transform: scale(1.05);
}

/* Seção "Sobre 2" */
.sobre2 {
    background-color: #f8f9fa;
    padding: 50px 20px;
    margin-top: 0; /* Removendo qualquer espaço superior */
    border-top: none; /* Garantindo que não haja borda entre as seções */
}

/* Melhorando o visual da seção sobre2 */
.sobre2 .featurette {
    margin-bottom: 40px;
}

.sobre2 .featurette-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.sobre2 .lead {
    font-size: 1.25rem;
    color: #6c757d;
}

.sobre2 .featurette-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sobre2 .featurette-divider {
    border-top: 2px solid #dee2e6;
    margin: 40px 0;
}

/* Responsividade */
@media (max-width: 767px) {
    .sobre2 .featurette {
        text-align: center;
    }

    .sobre2 .col-md-7, .sobre2 .col-md-5 {
        margin-bottom: 20px;
    }

    .sobre2 .featurette-image {
        max-width: 100%;
    }
}

/* Estilo do Footer */
footer.footer {
    background-color: #0A3D62; /* Cor de fundo azul */
    color: #fff;
    padding: 40px 0;
    font-family: 'Open Sans', sans-serif;
}

/* Container do footer */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Linhas no footer */
footer .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Títulos do footer */
footer h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Parágrafo e lista de contato */
footer p, footer ul {
    font-size: 1.1rem;
}

/* Lista de ícones sociais */
footer .social-icons {
    display: flex;
    gap: 1rem;
}

footer .social-icons li {
    list-style: none;
}

footer .social-icons li a {
    font-size: 30px;
    color: #fff;
    transition: color 0.3s ease-out;
}

footer .social-icons li a:hover {
    color: #FF6F00;
}

/* Lista de contatos */
footer .contact-list {
    list-style: none;
}

footer .contact-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

footer .contact-list li ion-icon {
    margin-right: 10px;
}

/* Rodapé inferior (Copyright) */
footer .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: #ccc;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    footer .row {
        flex-direction: column;
        align-items: center;
    }

    footer h4 {
        font-size: 1.5rem;
    }

    footer .social-icons {
        justify-content: center;
    }

    footer .contact-list li {
        font-size: 1rem;
    }
}


.Title {
    font-family: 'Playfair Display', serif; /* Fonte elegante e clássica */
    font-size: 3rem; /* Tamanho de fonte adequado */
    font-weight: 600; /* Peso médio, não muito pesado */
    color: #333; /* Cor escura para manter a legibilidade */
    text-align: center; /* Centraliza o título */
    margin: 30px 0; /* Espaçamento superior e inferior */
    letter-spacing: 1px; /* Pequeno espaçamento entre as letras */
    line-height: 1.2; /* Aumenta o espaço entre as linhas, se necessário */
    text-transform: uppercase; /* Transforma as letras em maiúsculas */
}

@media (max-width: 768px) {
    .Title {
        font-size: 2.5rem; /* Tamanho menor em telas pequenas */
        letter-spacing: 0.5px; /* Menos espaçamento em dispositivos móveis */
    }
}