/* Reset e estilos base */
:root {
    --primary-color: #004C70;
    --secondary-color: #FAC01F;
    --text-color: #161616;
    --white: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Dosis', sans-serif;
    --button-bg: #FAC01F;
    --button-text: #004C70;
    --title-color: #004C70;
    --paragraph-color: #161616;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--paragraph-color);
    line-height: 1.1;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--title-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 1200px !important;
    background-color: var(--white) !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    padding: 10px 0 !important;
}

.header .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 20px !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    margin-right: 30px !important;
}

.logo img {
    height: 40px !important;
    width: auto !important;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    margin: 0 10px;
    position: relative;
}

.nav-list > li > a {
    font-weight: 300;
    color: var(--primary-color);
    position: relative;
    padding: 8px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list > li > a i {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Estilo do submenu */
.nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-list .sub-menu li {
    margin: 0;
}

.nav-list .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--primary-color);
    font-size: 13px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-list .sub-menu a:hover {
    background-color: rgba(0, 76, 112, 0.05);
    padding-left: 25px;
}

/* Efeito hover no item pai */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-has-children:hover > a i {
    transform: rotate(180deg);
}

/* Estilo para o item ativo */
.nav-list > li > a:hover,
.nav-list > .current-menu-item > a {
    background-color: rgba(0, 76, 112, 0.05);
    color: var(--primary-color);
}

/* Estilo para o botão de agendamento */
.nav-menu .btn {
    margin-left: 20px;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1000;
    position: relative;
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

/* Garantir que o botão do menu mobile seja exibido em todas as páginas na versão mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ajustes para a seção de credenciais na página drulbiramar.html */
    .credenciais .mobile-only-image {
        display: block !important;
    }
    
    .credenciais .desktop-only-image {
        display: none !important;
    }
    
    .credenciais .credenciais-content {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Ajustes para a seção clínicas na página drulbiramar.html */
    .clinicas .clinicas-cards {
        flex-direction: column;
    }
    
    .clinicas .clinicas-cards > div {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .header .container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 20px 30px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0 0;
    position: relative;
    overflow: visible;
    min-height: auto;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('../images/clinica-ortopedica-em-Goiania-COE.webp') no-repeat center center/cover;
    padding-bottom: 0;
    z-index: 1;
}

.hero .container {
    display: flex;
    position: relative;
    z-index: 1;
    min-height: 600px;
    padding-bottom: 0;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    margin: auto 0;
}

.hero-tag {
    display: inline-block;
    color: var(--primary-color);
    padding: 5px px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1.hero-tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: absolute;
    right: 10%;
    bottom: 0;
    height: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    overflow: visible;
}

.hero-image-container {
    width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    overflow: visible;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: block;
    margin-bottom: 0;
    max-height: none;
}

/* Responsivo */


@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding-bottom: 0;
        display: block;
        margin-bottom: 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        position: relative;
        padding-bottom: 0;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        position: relative;
        margin: 0 auto;
        height: auto;
        right: auto;
        bottom: auto;
        display: flex;
        justify-content: center;
        overflow: visible;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    
    .hero-image img {
        border-radius: 0;
        border: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 20px 0;
        margin-bottom: 0;
        position: relative;
    }
    
    /* Ajustes para a seção de estatísticas na versão mobile */
    .sobre-medico-content {
        flex-direction: column;
    }
    
    .sobre-medico-image {
        width: 100%;
        margin-bottom: 60px;
        position: relative;
        overflow: visible;
    }
    
    .estatisticas {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        width: 90%;
        max-width: 100%;
        margin: -100px auto 60px;
        border-top: 3px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(5px);
        z-index: 2;
    }
    
    .estatistica-item h3 {
        font-size: 22px;
    }
    
    .estatistica-item p {
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 280px;
        height: auto;
        max-height: none;
        margin-bottom: 0;
        overflow: visible;
    }
    
    .hero-image img {
        border-radius: 0;
        border: none;
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .header {
        top: 10px;
        width: 95%;
        padding: 8px 0;
    }
    
    .logo {
        margin-right: 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-list a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .nav-menu .btn {
        padding: 6px 15px;
        font-size: 13px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header .container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
        background: var(--white);
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary-color);
        z-index: 1001;
        position: fixed;
        top: 27px;
        right: 15px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
        background-color: var(--secondary-color);
        color: var(--white);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 20px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
        left: auto;
        opacity: 1;
    }
    
    /* Overlay escuro quando o menu mobile estiver aberto */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .nav-list > li {
        margin: 5px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 76, 112, 0.1);
    }
    
    .nav-list > li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 15px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-list > li > a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }
    
    .nav-list > li > a:hover:after,
    .nav-list > li > a.active:after {
        width: 100%;
    }
    
    .nav-list a:hover {
        background-color: rgba(0, 76, 112, 0.05);
        padding-left: 20px;
        color: var(--secondary-color);
    }
    
    .nav-list .sub-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        padding-left: 15px;
        margin-top: 5px;
        background-color: #f9f9f9;
        border-radius: 8px;
        border-left: 3px solid var(--secondary-color);
    }
    
    .nav-list .sub-menu a {
        padding: 12px 15px;
        font-size: 15px;
        color: var(--primary-color);
        opacity: 0.9;
        position: relative;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(0, 76, 112, 0.08);
        transition: all 0.3s ease;
    }
    
    .nav-list .sub-menu a:before {
        content: '•';
        margin-right: 8px;
        color: var(--secondary-color);
    }
    
    .nav-list .sub-menu a:hover {
        background-color: rgba(0, 76, 112, 0.05);
        transform: translateX(5px);
    }
    
    .nav-list .sub-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-list .sub-menu a:before {
        content: '•';
        margin-right: 8px;
        color: var(--secondary-color);
        font-size: 18px;
    }
    
    .nav-list .sub-menu a:hover {
        opacity: 1;
        background-color: rgba(0, 76, 112, 0.1);
        color: var(--secondary-color);
        transform: translateX(3px);
    }
    
    /* Estilo para a lista expandida no menu mobile */
    .mobile-expanded-list {
        list-style: none;
        margin: 0;
        padding-left: 15px;
        background-color: #f9f9f9;
        border-radius: 8px;
        border-left: 3px solid var(--secondary-color);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-expanded-list li {
        margin: 0;
        border-bottom: 1px solid rgba(0, 76, 112, 0.08);
    }
    
    .mobile-expanded-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-expanded-list a {
        padding: 12px 15px;
        font-size: 15px;
        color: var(--primary-color);
        opacity: 0.9;
        position: relative;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .mobile-expanded-list a:before {
        content: '•';
        margin-right: 8px;
        color: var(--secondary-color);
        font-size: 18px;
    }
    
    .mobile-expanded-list a:hover {
        opacity: 1;
        background-color: rgba(0, 76, 112, 0.1);
        color: var(--secondary-color);
        transform: translateX(3px);
    }
    
    /* Estilo para o botão "Ver todas as especialidades" no menu mobile */
    .mobile-expanded-list .ver-todas-especialidades-item {
        margin-top: 10px;
        border-bottom: none;
    }
    
    .mobile-expanded-list .ver-todas-especialidades {
        background-color: var(--secondary-color);
        color: var(--primary-color) !important;
        text-align: center;
        padding: 12px 15px;
        border-radius: 5px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-expanded-list .ver-todas-especialidades:before {
        display: none;
    }
    
    .mobile-expanded-list .ver-todas-especialidades i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .mobile-expanded-list .ver-todas-especialidades:hover {
        background-color: var(--primary-color);
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-expanded-list .ver-todas-especialidades:hover i {
        transform: translateX(3px);
    }
    
    /* Estilo para o botão "Ver todas as especialidades" */
    .ver-todas-especialidades {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 15px;
        margin: 15px 0 5px;
        background-color: var(--secondary-color);
        color: var(--white) !important;
        text-align: center;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 14px;
    }
    
    .ver-todas-especialidades:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .ver-todas-especialidades:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .ver-todas-especialidades:before {
        display: none !important;
    }
    
    .ver-todas-especialidades i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .ver-todas-especialidades:hover i {
        transform: translateX(3px);
    }
    
    .nav-menu .btn {
        width: 100%;
        margin: 20px 0 10px 0;
        text-align: center;
        padding: 15px;
        font-size: 16px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    
    .hero {
        padding: 120px 0 20px 0px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero h2 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* Footer */
/* Seção de Certificações */
.certificacoes {
    background: linear-gradient(to bottom, #7FCCCE, #ffffff);
    display: flex;
    gap: 0px 0px;
    row-gap: 0px;
    column-gap: 0px;
    border-radius: 50px 50px 0px 0px;
    padding-top: 3em;
    padding-bottom: 3em;
    padding-left: 2em;
    padding-right: 2em;
    margin: -39px auto 0;
    text-align: center;
    flex-direction: column;
    max-width: 1500px;
    position: relative;
    z-index: 10;
}

.certificacoes h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    flex: 0 0 calc(25% - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(0.5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .logo-item {
        flex: 0 0 calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .logo-item {
        flex: 0 0 calc(50% - 30px);
    }
    
    .certificacoes h2 {
        font-size: 24px;
    }
    
    /* Ajustes para o botão de WhatsApp em dispositivos móveis */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .logos-container {
        gap: 20px;
    }
    
    .certificacoes {
        padding: 40px 0;
    }
    
    .certificacoes h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

/* Seção Sobre o Médico */
.sobre-medico {
    padding: 80px 0;
    background-color: #f9f9f9;
    margin-top: 0px;
}

.sobre-medico-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-medico-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.sobre-medico-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.estatisticas {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    min-height: 120px;
}

.estatistica-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.estatistica-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
    line-height: 1;
}

.estatistica-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/* Animação de contagem */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: inherit;
}

.sobre-medico-texto {
    flex: 1;
    padding-bottom: 50px;
}

.sobre-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.sobre-medico-texto h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.citacao {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

.citacao p {
    font-style: italic;
    color: #555;
    font-size: 18px;
}

.sobre-medico-texto p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.btn-secondary {
    background-color: var(--button-bg);
    color: var(--button-text);
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: #e0ad1c;
    transform: translateY(-3px);
}

/* Serviços Section */
.servicos {
    padding: 80px 0;
    background-color: #fff;
}

.servicos-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.servicos-texto {
    flex: 1;
}

.servicos-tag {
    font-size: 16px;
    font-weight: 600;
    color: #004d71;
    display: block;
    margin-bottom: 10px;
}

.servicos-texto h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.servicos-texto > p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.servico-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.servico-icon {
    width: 50px;
    height: 50px;
    background-color: #004d71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.servico-icon i {
    color: #fff;
    font-size: 20px;
}

.servico-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.servico-info p {
    color: #555;
    line-height: 1.6;
}

.servicos-imagem {
    flex: 1;
    position: relative;
}

.servicos-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experiencia-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.experiencia-badge .anos {
    font-size: 36px;
    font-weight: 700;
    color: #004d71;
    line-height: 1;
}

.experiencia-badge .texto {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

.btn-agendar {
    display: inline-block;
    background-color: #FAC01F;
    color: #004C70;
    font-size: 14px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
}

.btn-agendar:hover {
    background-color: #e0ad1c;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .servicos-content {
        flex-direction: column-reverse;
    }
    
    .servicos-imagem {
        margin-bottom: 50px;
        max-width: 500px;
        width: 100%;
    }
    
    .experiencia-badge {
        top: -20px;
        left: 20px;
    }
}

/* Especialidades Section */
.especialidades {
    background-color: #f0f7f8;
    padding: 80px 0;
}

.especialidades-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.especialidades h2 {
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.especialidades-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.especialidade-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.especialidade-card:hover {
    transform: translateY(-5px);
}

.especialidade-icon {
    background-color: #ffeaa7;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.especialidade-icon i {
    color: #004d71;
    font-size: 32px;
}

.especialidade-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.especialidade-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.especialidades-btn-container {
    text-align: center;
}

/* Credenciais do Ortopedista Section */
.credenciais-ortopedista {
    background-color: #ffffff;
    padding: 80px 0;
}

.credenciais-header {
    text-align: center;
    margin-bottom: 50px;
}

.credenciais-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.credenciais-ortopedista h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.credenciais-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.credenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.credencial-item {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credencial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 76, 112, 0.1);
}

.credencial-icon {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.credencial-icon i {
    color: var(--white);
    font-size: 20px;
}

.credencial-info h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.credencial-info p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

.sociedades-detalhes {
    background-color: #f0f7f8;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.sociedades-detalhes h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.sociedades-lista {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.sociedades-lista li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
}

.sociedades-lista li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.credenciais-social {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f7f8 0%, #e8f4f6 100%);
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
}

.credenciais-social h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.credenciais-social p {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.credenciais-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 18px;
    margin-right: 8px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-facebook {
    background: #1877F2;
    color: white;
}

.social-facebook:hover {
    background: #166FE5;
}

.credenciais-btn-container {
    text-align: center;
}

.btn-ver-todos {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-ver-todos:hover {
    background-color: #e9b01d;
    transform: translateY(-2px);
}

.ver-todas-especialidades {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ver-todas-especialidades:hover {
    background-color: #e0ad1c;
    transform: translateY(-2px);
}

@media (min-width: 769px) {
    .ver-todas-especialidades-item,
    .ver-todas-especialidades {
        display: none !important;
    }
}

/* Avaliações */
.avaliacoes {
    background-color: #f0f7f8;
    padding: 80px 0;
}

.avaliacoes-tag {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.avaliacoes h2 {
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.avaliacoes-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color);
    line-height: 1.6;
}

.avaliacoes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.depoimento-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.depoimento-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.depoimento-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-info h3 {
    font-size: 16px;
    margin: 0;
    color: var(--heading-color);
}

.depoimento-data {
    font-size: 12px;
    color: #777;
    display: block;
    margin-top: 3px;
}

.depoimento-estrelas {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.depoimento-estrelas i.fa-star {
    color: #fac01f;
    margin-right: 2px;
    font-size: 14px;
}

.google-icon {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.google-icon i {
    color: #4285F4;
    font-size: 16px;
}

.depoimento-texto {
    flex-grow: 1;
}

.depoimento-texto p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .avaliacoes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .especialidades-grid {
        grid-template-columns: 1fr;
    }
    
    .credenciais-ortopedista {
        padding: 60px 0;
    }
    
    .credenciais-ortopedista h2 {
        font-size: 28px;
    }
    
    .credencial-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .credencial-icon {
        margin: 0 auto 15px;
    }
    
    .sociedades-detalhes {
        padding: 30px 20px;
    }
    
    .sociedades-detalhes h3 {
        font-size: 20px;
    }
    
    .credenciais-social {
        padding: 30px 20px;
    }
    
    .credenciais-social h3 {
        font-size: 20px;
    }
    
    .credenciais-social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .avaliacoes-container {
        grid-template-columns: 1fr;
    }
    
    .avaliacoes h2 {
        font-size: 28px;
    }
    
    .avaliacoes-desc {
        padding: 0 20px;
    }
}

/* Seção de Contato */
.contato {
    background: linear-gradient(rgba(0, 77, 113, 0.9), rgba(0, 77, 113, 0.9)), url('../images/clinica-de-joelho-em-Goiania.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.contato-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 500px;
}

.contato-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 100%;
    margin: 0;
    color: #333;
}

.contato-tag {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.contato-form-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.contato-form-container p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-enviar {
    background-color: #FAC01F;
    color: #004C70;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
}

.btn-enviar:hover {
    background-color: #e9b01d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contato-container {
        padding: 20px;
    }
    
    .contato-form-container {
        width: 100%;
        margin: 30px 0;
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Seção de FAQs */
.faqs {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faqs-tag {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
}

.faqs h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--heading-color);
    text-align: center;
}

.faqs-desc {
    max-width: 800px;
    margin-bottom: 40px;
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.accordion-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-icon {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .faqs {
        padding: 60px 0;
    }
    
    .faqs h2 {
        font-size: 28px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 15px;
    }
}

/* Clínicas Section */
.clinicas {
    padding: 80px 0;
    background-image: linear-gradient(to right, #012130 70%, #fff), url('../images/Ortopedista-de-joelho-e-articulacoes-goiania.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    background-blend-mode: multiply;
}

.clinicas-title {
    font-size: 18px;
    font-weight: 600;
    color: #f1c40f;
    margin-bottom: 10px;
    text-align: center;
}

.clinicas-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.clinicas-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}

.clinicas-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.clinica-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #f1c40f;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.clinica-card h4 {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 10px;
}

.clinica-card p {
    margin-bottom: 20px;
    font-size: 16px;
}

.clinica-map {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
}

.clinica-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .clinicas-cards {
        flex-direction: column;
    }
    
    .clinica-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .sobre-medico-content {
        flex-direction: column;
    }
    
    .sobre-medico-image {
        width: 100%;
        margin-bottom: 60px;
        position: relative;
        overflow: visible;
    }
    
    .estatisticas {
        width: 80%;
    }
    
    .sobre-medico-texto {
        width: 100%;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .estatisticas {
        width: 95%;
        padding: 25px 30px;
        gap: 25px;
        max-width: 480px;
    }
    
    .estatistica-item h3 {
        font-size: 20px;
    }
    
    .estatistica-item p {
        font-size: 12px;
    }
    
    .sobre-medico-texto h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .estatisticas {
        grid-template-columns: 1fr;
        width: 85%;
        padding: 30px 25px;
        gap: 25px;
        max-width: 320px;
        min-height: auto;
    }
    
    .estatistica-item h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .estatistica-item p {
        font-size: 13px;
    }
    
    .sobre-medico {
        padding: 60px 0;
    }
}

/* Footer */
.footer {
    color: #fff;
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.footer-main {
    background-color: #004C70;
    padding: 50px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 10px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    flex: 1;
}
.footer-logo img {
    max-width: 300px;
    height: auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #FAC01F;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
}

.footer-links a:hover {
    color: #FAC01F;
}

.footer-location {
    margin-bottom: 20px;
}

.location-title {
    font-weight: bold;
    color: #FAC01F;
    margin-bottom: 5px;
    font-size: 14px;
}

.location-address {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
}

.location-address i {
    margin-right: 10px;
    margin-top: 3px;
    color: #FAC01F;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact-item i {
    margin-right: 10px;
    color: #FAC01F;
    width: 16px;
}

.footer-social {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-logo-bottom img {
    max-width: 200px;
    height: auto;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-social a i {
    margin-right: 10px;
    color: #FAC01F;
}

.footer-social a:hover {
    color: #FAC01F;
}

.footer-bottom {
    background-color: #003A56;
    padding: 15px 0;
    font-size: 14px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #FAC01F;
    text-decoration: none;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-logo img {
        max-width: 250px;
    }
}

/* Estilo para botão do formulário */
.btn-form {
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-form:hover {
    background-color: #e0ad1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}/* Corre
ções adicionais para garantir que todos os elementos sejam exibidos corretamente */

/* Garantir que as seções tenham espaçamento adequado */
section {
    position: relative;
    z-index: 1;
}

/* Garantir que o header não sobreponha o conteúdo */
body {
    padding-top: 0;
}

/* Ajustes para o hero */
.hero {
    margin-top: 80px;
    margin-bottom: -50px;
}

/* Garantir que as imagens sejam carregadas corretamente */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ajustes para formulários */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 76, 112, 0.3);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero {
        margin-top: 80px;
        margin-bottom: 0;
    }
}

/* Garantir que os ícones do Font Awesome sejam exibidos */
.fas, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
}

/* Ajustes para garantir visibilidade em todos os navegadores */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}/* Esti
los para a seção de informações de contato */
.contato-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 40px;
}

.contato-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contato-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contato-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contato-card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contato-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.contato-card p strong {
    color: var(--secondary-color);
}

/* Responsividade para a seção de contato */
@media (max-width: 992px) {
    .contato-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contato-info {
        margin-left: 0;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contato-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contato-card {
        padding: 20px;
    }
    
    .contato-icon {
        width: 50px;
        height: 50px;
    }
    
    .contato-icon i {
        font-size: 20px;
    }
}/* Me
lhorias adicionais para mapas e seção de contato */

/* Garantir que os iframes dos mapas sejam responsivos */
.clinica-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Melhorar a aparência dos cards de clínica */
.clinica-card {
    transition: transform 0.3s ease;
}

.clinica-card:hover {
    transform: translateY(-5px);
}



/* Melhorar a aparência dos cards de contato */
.contato-card:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* Garantir que os ícones sejam exibidos corretamente */
.contato-icon i,
.servico-icon i,
.especialidade-icon i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 576px) {
    .contato-card {
        padding: 15px;
    }
    
    .contato-card h3 {
        font-size: 16px;
    }
    
    .contato-card p {
        font-size: 13px;
    }
    
    .clinica-map {
        height: 250px;
    }
}

/* Garantir que o formulário seja bem exibido */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}/*
 Footer Otimizado */
.footer-optimized {
    background: linear-gradient(135deg, #004C70 0%, #003A56 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-optimized::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-main {
    padding-right: 20px;
}

.footer-logo img {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.footer-credentials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 192, 31, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(250, 192, 31, 0.3);
    font-size: 14px;
    font-weight: 600;
}

.credential-item i {
    color: #FAC01F;
    font-size: 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FAC01F;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #FAC01F;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 14px;
    width: 16px;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-services i {
    color: #FAC01F;
    font-size: 12px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #FAC01F;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-details strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.contact-details span,
.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #FAC01F;
}

.footer-convenios {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.footer-convenios h4 {
    color: #FAC01F;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.convenios-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.convenios-list span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.convenios-list span:hover {
    background: rgba(250, 192, 31, 0.2);
    border-color: rgba(250, 192, 31, 0.3);
    color: #FAC01F;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-whatsapp {
    background: #25D366;
    color: white;
}

.social-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-facebook {
    background: #1877F2;
    color: white;
}

.social-facebook:hover {
    background: #166FE5;
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FAC01F;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsividade do Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col-main {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        max-width: 220px;
    }
    
    .footer-credentials {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .convenios-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
}

.footer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.credential-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links, .footer-services {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-services li {
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services i {
    color: var(--secondary-color);
    font-size: 12px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

.contact-item a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.footer-convenios {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.footer-convenios h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.convenios-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.convenio-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #e0e0e0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #e0e0e0;
    font-size: 14px;
}

.footer-copyright strong {
    color: var(--secondary-color);
}

/* Redes Sociais Discretas */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--secondary-color);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-legal a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.footer-legal span {
    color: #666;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social {
        order: -1;
        display: flex !important;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-social a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

.contato-card {
    background-color: rgba(255, 255, 255, 0.1) !important;
    padding: 25px !important;
    border-radius: 10px !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contato-icon {
    width: 60px !important;
    height: 60px !important;
    background-color: #FAC01F !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 15px !important;
}

.contato-card h3 {
    color: white !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
}

.contato-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 5px !important;
}

.contato-card strong {
    color: #FAC01F !important;
}

@media (max-width: 992px) {
    .contato-info {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .contato-info {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contato-container {
        flex-direction: column;
        min-height: auto;
    }
}

/* Footer Developer com Redes Sociais */
.footer-developer {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.footer-developer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-developer p {
    color: #999;
    margin: 0;
}

.footer-developer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: #fff;
}

.footer-developer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-developer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #999;
    font-size: 11px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-developer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    border-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-developer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}