/*
Theme Name: InoMedical
Theme URI: https://inomedical.com
Description: Tema médico profissional para o site InoMedical
Author: Murilo Manoel
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inomedical
*/

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Albert Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

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

/* Estilos gerais para botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Search + 404 */
.search-page,
.not-found-page {
    padding: 48px 0 64px;
}

.search-page-header h1,
.not-found-page h1 {
    margin-bottom: 12px;
    color: #1f4b6a;
}

.search-page-form {
    margin-bottom: 24px;
}

.search-results-list {
    display: grid;
    gap: 18px;
}

.search-result-item {
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(19, 55, 79, 0.08);
}

.search-result-title a {
    color: #0b5984;
    text-decoration: none;
}

.search-result-title a:hover {
    text-decoration: underline;
}

.search-result-excerpt {
    color: #365f7b;
}

.search-no-results {
    color: #365f7b;
}

/* Pagina Servicos */
.servicos-page {
    padding: 64px 0 72px;
    background: #f8f9fa;
}

.servicos-content {
    text-align: center;
}

.servicos-title {
    font-size: clamp(28px, 3.4vw, 44px);
    color: #1f4b6a;
    margin-bottom: 18px;
    font-weight: 700;
}

.servicos-text {
    max-width: 760px;
    margin: 0 auto 28px;
    color: #365f7b;
    font-size: 18px;
    line-height: 1.7;
}

.servicos-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: #9acb3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.servicos-home-button:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
