/* ============================================================
   WP Recovery — Estilos
   ============================================================ */

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #f5f5f0;
    color: #222;
    line-height: 1.7;
}

a { color: #1a6aa0; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout ---------- */
.site-header {
    background: silver;
    color: #333;
    padding: 1.5rem 0;
    border-bottom: 4px solid #e8a020;
}

.site-header .inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header h1 { font-size: 1.6rem; font-weight: bold; }
.site-header h1 a { color: #fff; }

.site-logo {
    height: 150px;
    width: auto;
    display: block;
    max-width: none;
    object-fit: contain;
}
.site-header .badge {
    font-size: 0.7rem;
    background: #e8a020;
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-main {
    max-width: 860px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-size: 0.85rem;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
}

/* ---------- Listagem de posts ---------- */
.post-list { list-style: none; }

.post-card {
    background: #fff;
    border: 1px solid #e0e0d8;
    border-radius: 6px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.2rem;
    transition: box-shadow 0.15s;
}

.post-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.08); }

.post-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.post-card h2 a { color: #0d6b60; }
.post-card h2 a:hover { color: #1a6aa0; text-decoration: none; }

.post-meta {
    font-size: 0.82rem;
    color: #888;
    font-family: Arial, sans-serif;
    margin-bottom: 0.6rem;
}

.post-excerpt {
    font-size: 0.97rem;
    color: #444;
}

.read-more {
    display: inline-block;
    margin-top: 0.7rem;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    color: #1a6aa0;
    font-weight: bold;
}

/* ---------- Paginação ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: Arial, sans-serif;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    background: #fff;
}

.pagination a:hover { background: #1a6aa0; color: #fff; border-color: #1a6aa0; text-decoration: none; }
.pagination .current { background: #3ABBA7; color: #fff; border-color: #3ABBA7; }

/* ---------- Página de post individual ---------- */
.single-post {
    background: #fff;
    border: 1px solid #e0e0d8;
    border-radius: 6px;
    padding: 2rem 2.4rem;
}

.single-post h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: #0d6b60;
}

.single-post .post-meta { margin-bottom: 1.5rem; }

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-content p  { margin-bottom: 1.1rem; }
.post-content h2 { font-size: 1.3rem; margin: 1.5rem 0 0.5rem; }
.post-content h3 { font-size: 1.1rem; margin: 1.3rem 0 0.4rem; }
.post-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 0.8rem 0; }
.post-content a  { color: #1a6aa0; }
.post-content ul, .post-content ol { margin: 0.8rem 0 0.8rem 2rem; }
.post-content li { margin-bottom: 0.3rem; }
.post-content blockquote {
    border-left: 4px solid #e8a020;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    color: #555;
    background: #fffdf0;
}
.post-content pre, .post-content code {
    font-family: 'Courier New', monospace;
    background: #f3f3f0;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.92em;
}
.post-content pre { padding: 1rem; overflow-x: auto; }

.back-link {
    display: inline-block;
    margin-bottom: 1.2rem;
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
    color: #666;
}

.back-link::before { content: '← '; }

/* ---------- Navegação no header ---------- */
.header-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    /*text-transform: uppercase;*/
}

.header-nav a { color: #333; }
.header-nav a:hover { color: #000; text-decoration: none; }
.header-nav a.active { color: #c47800; }

.btn-nav {
    background: #e8a020;
    color: #fff !important;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.btn-nav:hover { background: #cf8c10; }

/* ============================================================
   LANDING PAGE — HOME
   ============================================================ */

body.home { background: #fff; }

/* Header variante home */
.site-header--home {
    background: silver;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #e8a020;
}

.site-header--home .site-header__logo a {
    color: #fff !important;
    font-family: Georgia, serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    text-decoration: none;
    font-size: 1.65rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.logo-tagline {
    display: block;
    font-size: 12pt;
    font-family: Arial, sans-serif;
    font-weight: normal;
    color: #e8a020;
    letter-spacing: 0.08em;
    text-transform: none;
    text-align: center;
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, #0d6b60 0%, #1a9485 60%, #3ABBA7 100%);
    color: #fff;
    padding: 6rem 1.5rem 5rem;
    text-align: center;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
}

.hero__eyebrow {
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #e8a020;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-family: Georgia, serif;
}

.hero__subtitle {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #b0b8d0;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Botões ---------- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.btn--primary {
    /*background: #e8a020;*/
    background: #f5833c;
    color: #fff;
}
.btn--primary:hover { background: #cf8c10; text-decoration: none; color: #fff; }

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: #fff; text-decoration: none; }

.btn--whatsapp {
    /*background: #25d366;*/
    background: #3abba7;
    color: #fff;
}
.btn--whatsapp:hover { background: #1db954; text-decoration: none; color: #fff; }

/* ---------- Seções genéricas ---------- */
.section {
    padding: 5rem 1.5rem;
}

.section--light { background: #f8f8f4; }
.section--dark  { background: linear-gradient(135deg, #0d6b60 0%, #1a9485 60%, #3ABBA7 100%); color: #fff; }

.container {
    max-width: 960px;
    margin: 0 auto;
}

.container--centered {
    text-align: center;
}

.section__header {
    margin-bottom: 2.8rem;
}

.section__label {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    /*color: #e8a020;*/
    color: #f5833c;
    margin-bottom: 0.5rem;
}
.section__label--light { color: #e8a020; }

.section__header h2,
.container--centered h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: inherit;
    margin-top: 0.3rem;
}
.section--dark .section__header h2,
.section--dark h2 { color: #fff; }

/* ---------- Sobre ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 680px) {
    .about-grid { grid-template-columns: 1fr; }
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.03rem;
    color: #444;
    text-align: justify;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.about-values > p {
    font-size: 1.03rem;
    color: #444;
    text-align: justify;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.value-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.value-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #0d6b60;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    text-align: justify;
}

/* ---------- Serviços ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0d8;
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    transition: box-shadow 0.15s, transform 0.15s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
    transform: translateY(-2px);
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #0d6b60;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.service-card__link {
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #e8a020;
}
.service-card__link:hover { color: #cf8c10; text-decoration: none; }

/* ---------- Blog CTA / Seção dark ---------- */
.cta-text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    /*color: #b0b8d0;*/
    color: darkolivegreen;
    max-width: 560px;
    margin: 0.8rem auto 2rem;
    line-height: 1.7;
}
.section--light .cta-text { 
    color: #555; 
}

/* ---------- Contato ---------- */
.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.8rem;
    color: #e8a020;
    font-family: Arial, sans-serif;
}

/* ---------- Footer home ---------- */
.footer-inner {
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}
.footer-inner a { color: #888; }
.footer-inner a:hover { color: #1a6aa0; }
.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    font-family: Arial, sans-serif;
}

/* ---------- Barra de busca (blog) ---------- */
.search-bar {
    background: #fff;
    border: 1px solid #e0e0d8;
    border-radius: 6px;
    padding: 1rem 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.search-bar__options {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.search-bar__radio {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
    color: #444;
    cursor: pointer;
}

.search-bar__radio input { cursor: pointer; accent-color: #0d6b60; }

.search-bar__field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 220px;
}

.search-bar__input {
    flex: 1;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: border-color 0.15s;
}
.search-bar__input:focus { border-color: #0d6b60; }

.search-bar__btn {
    padding: 0.4rem 1rem;
    background: #0d6b60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.15s;
}
.search-bar__btn:hover { background: #0a5248; }

.search-bar__clear {
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    color: #999;
    white-space: nowrap;
}
.search-bar__clear:hover { color: #c00; text-decoration: none; }

/* ---------- Botão inline com seta ---------- */
.btn-inline-arrow {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.05rem 0.5rem;
    background: #f5833c;
    color: #fff !important;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    vertical-align: middle;
    line-height: 1.4;
    transition: background 0.15s;
}
.btn-inline-arrow:hover {
    background: #cf8c10;
    text-decoration: none;
}

/* ---------- Quem Somos — Team card ---------- */
.team-card {
    background: #fff;
    border: 1px solid #e0e0d8;
    border-radius: 8px;
    padding: 2.2rem 2.4rem;
    margin-bottom: 2rem;
    max-width: 780px;
}

.team-card__header {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 2px solid #e8a020;
    padding-bottom: 1rem;
}

.team-card__photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 3px solid #e8a020;
}

.team-card__name {
    font-size: 1.5rem;
    color: #0d6b60;
    margin-bottom: 0.2rem;
}

.team-card__crp {
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    color: #888;
    letter-spacing: 0.05em;
}

.team-card__body p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.75;
    text-align: justify;
}

.team-card__contact {
    margin-top: 1.4rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #555;
}

.team-card__contact a {
    color: #1a6aa0;
}

.team-card__contact a:hover {
    text-decoration: underline;
}

/* ---------- Aviso de recuperação ---------- */
.recovery-notice {
    background: #fff8e1;
    border: 1px solid #f0c040;
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    color: #7a5c00;
    margin-bottom: 1.5rem;
}