body {
    background: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.navbar-toggler {
    color: rgb(58, 113, 121) !important;
    background-color: #3a7179 !important;
    border: var(--bs-border-width) solid rgb(67, 119, 128) !important;
}

/* ===========================================
   HEADER – Estilo padronizado para a logo
   =========================================== */

.od-header {
    background: #2A666A;     /* Cor baseada na sua logo */
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.od-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.od-logo img {
    height: 55px;            /* Ajuste perfeito para sua logo horizontal */
    width: auto;
    display: block;
}

/* MENU */
.od-menu a {
    color: #e8f6f7;
    margin-left: 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color .2s ease;
}

.od-menu a:hover {
    color: #ffffff;
}

/* CAMPO DE BUSCA */
.od-search-form input {
    height: 38px;
    border-radius: 8px;
    padding-left: 12px;
    border: none;
    outline: none;
    background: #ffffff;
    width: 240px;
    font-size: 14px;
}

.od-search-form input:focus {
    box-shadow: 0 0 0 2px rgba(42, 102, 106, 0.4);
}


/* POSTS */
/* ================================
   BLOCO PRINCIPAL (1 card grande)
================================ */
.od-card-principal {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.od-card-principal:hover {
    transform: scale(1.01);
}

.od-principal-img-wrapper {
    height: 380px;
    overflow: hidden;
}

.od-principal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-principal-info {
    padding: 20px;
}

.od-principal-titulo {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: var(--verde-odonto);
}

.od-principal-resumo {
    color: #555;
    font-size: 15px;
}



/* ================================
   BLOCOS SECUNDÁRIOS (2 cards)
================================ */
.od-card-secundario {
    display: block;
    background: #fff;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.od-card-secundario:hover {
    transform: translateY(-4px);
}

.od-sec-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.od-sec-info {
    padding: 15px;
}

.od-sec-titulo {
    font-size: 20px;
    font-weight: bold;
    color: var(--verde-odonto);
}

.od-sec-resumo {
    font-size: 14px;
    color: #555;
}



/* ================================
   GRID DE 4 CARDS
================================ */
.od-grid-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

@media (max-width: 767px) {
    .od-principal-img-wrapper { height: 240px; }
    .od-principal-titulo { font-size: 22px; }
}


/* ===========================
   FOOTER
=========================== */

.od-footer {
    background: #e6eef2;
    color: #e9f7f7;
    padding: 50px 0 20px;
}

.footer-logo-img {
    height: 70px;
    filter: brightness(1.15);
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #43838c;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 15px;
    color: #43838c;
    margin: 4px 0;
}

.footer-links {
    list-style: none;
    color: #43838c;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #43838c;
    text-decoration: none;
    transition: opacity .2s, padding-left .2s;
}

.footer-links a:hover {
    opacity: 0.85;
    padding-left: 4px;
}

/* Redes sociais */
.footer-social-icon {
    font-size: 22px;
    margin-right: 12px;
    color: #43838c;
    text-decoration: none;
    transition: opacity .2s;
}

.footer-social-icon:hover {
    opacity: 0.8;
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Copyright */
.footer-copy {
    color: #d6f1f1;
    font-size: 14px;
}


/* TÍTULO PÁGINA */
.od-page-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* POST INTERNO */
.od-post-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.od-post-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 15px;
}

.od-post-image {
    max-height: 380px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.od-post-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

/* ===========================================
   CORES PADRÃO DO SITE – baseadas na logo
   =========================================== */

:root {
    --verde-odonto: #2A666A;
    --verde-claro: #3ba4a5;
    --preto-suave: #333;
    --cinza-claro: #f5f5f5;
}

/* Botões padrão */
.btn-success,
.btn-primary {
    background: var(--verde-odonto) !important;
    border-color: var(--verde-odonto) !important;
}

.btn-success:hover,
.btn-primary:hover {
    background: #1f4d50 !important;
    border-color: #1f4d50 !important;
}

/* HEADER */
.od-header {
    background: #2A666A;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.od-logo img {
    height: 55px;
    width: auto;
}

.od-menu a {
    color: #e8f6f7;
    margin-left: 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color .2s;
}

.od-menu a:hover {
    color: #ffffff;
}

/* BOTÃO MOBILE */
.od-mobile-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 0 10px;
}

/* MENU MOBILE */
.od-mobile-menu {
    display: none;
    background: #2A666A;
    padding: 15px 0;
    flex-direction: column;
    text-align: center;
}

.od-mobile-menu a {
    color: #ffffff;
    padding: 12px 0;
    font-size: 18px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* QUANDO ABRIR */
.od-mobile-menu.ativo {
    display: flex;
}

/* AJUSTE DA LOGO EM CELULAR */
@media (max-width: 480px) {
    .od-logo img {
        height: 45px;
    }
}

@media (max-width: 768px) {

    /* Margens internas melhores */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .od-card-post img {
        height: 160px;
    }

    .od-card-titulo {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    .od-post-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .od-post-image {
        max-height: 240px;
    }

    .od-post-content {
        padding: 15px;
        font-size: 15px;
    }
}
