/* =========================================
   1. VARIÁVEIS, RESET E GERAL
   ========================================= */
:root {
    --primary-green: #9acd32;
    /* Verde Limão */
    --secondary-green: #76b72a;
    --dark-green: #2e4a15;
    --dark-bg: #111;
    --text-grey: #666;
    --light-grey: #f4f4f4;
    --white: #fff;
    --whatsapp-color: #25D366;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-grey);
    line-height: 1.6;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

ul,
ol {
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:visited,
a:active {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* =========================================
   2. UTILITÁRIOS E BOTÕES
   ========================================= */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #333;
}

.section-title span {
    color: var(--secondary-green);
    font-weight: bold;
}

/* Botões Gerais */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn:hover {
    opacity: 0.8;
}

/* =========================================
   3. HEADER E NAVEGAÇÃO
   ========================================= */
.top-bar {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-green);
    letter-spacing: 2px;
    /* width: 180px; Remover largura fixa evita quebra em mobile */
}

.logo img {
    width: 160px;
}

.contact-info span {
    font-size: 0.9rem;
}

.nav-bar {
    background-color: var(--primary-green);
    color: var(--white);
    position: relative;
    z-index: 1000;
}

.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

/* =========================================
   10. ARQUIVO DE EMPRESAS (CUSTOM POST TYPE)
   ========================================= */

/* Container Principal (Alinhado com o site) */
.container-empresas {
    max-width: 1170px;
    margin: 0 auto;
    padding: 60px 15px;
    /* Espaçamento padrão */
}

/* Cabeçalho da Página de Arquivo */
.archive-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.archive-header h1 {
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Detalhe verde abaixo do título */
.archive-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-green);
    margin: 10px auto 0;
}

.archive-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* GRID de Cards (Responsivo) */
.empresas-grid {
    display: grid;
    /* Cria colunas de no mínimo 300px ou divide igualmente */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Ajustes no Card para garantir alinhamento */
.modern-card {
    height: 100%;
    /* Garante que todos tenham a mesma altura */
    display: flex;
    flex-direction: column;
}

.modern-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-card .card-footer {
    margin-top: auto;
    /* Empurra o botão para o fundo */
}

/* Badge (Etiqueta) - Usando sua cor secundária */
.card-badge {
    background-color: var(--secondary-green);
    color: #fff;
    /* Texto branco para contraste */
    box-shadow: 0 4px 10px rgba(118, 183, 42, 0.4);
}

/* Paginação (Estilo Personalizado) */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    border-radius: 50%;
    /* Bolinha */
    color: var(--text-grey);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(154, 205, 50, 0.3);
}

/* Placeholder quando não tem imagem (Cinza elegante) */
.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .container-empresas {
        padding: 40px 15px;
    }

    .archive-header h1 {
        font-size: 2rem;
    }

    .empresas-grid {
        grid-template-columns: 1fr;
        /* 1 Coluna no celular */
        gap: 40px;
    }
}

/* =========================================
   LAYOUT ARQUIVO EMPRESAS (GOPARATY)
   ========================================= */

/* Hero da Categoria */
.cat-hero {
    /* Imagem de fundo padrão ou dinâmica */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1544645224-b1b70228805a?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.cat-hero h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cat-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Layout Principal (Sem Sidebar) */
.category-layout {
    display: block;
    /* Removido o Grid de 2 colunas */
    margin-bottom: 60px;
}

/* Cabeçalho de Resultados (Contador e Ordenação) */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.results-count {
    font-weight: bold;
    color: #333;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    background: #fff;
}

/* GRID DE CARDS */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Colunas */
    gap: 30px;
}

/* ESTILO DO CARD (Listing Card) */
.listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    height: 100%;
    /* Garante altura igual */
}

.listing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .card-img {
    transform: scale(1.1);
}

/* Badges (Etiquetas) */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green, #9acd32);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.badge.featured {
    background: #ff9800;
    /* Laranja para destaque */
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-cat {
    color: var(--secondary-green, #76b72a);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.card-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.card-title a {
    text-decoration: none;
    color: inherit;
}

.card-title a:hover {
    color: var(--primary-green, #9acd32);
}

.card-location {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 1rem;
}

.card-footer {
    margin-top: auto;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #333;
    font-weight: 800;
    font-size: 1.1rem;
}

.price span {
    font-size: 0.8rem;
    font-weight: normal;
    color: #999;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Botão do Card */
.btn-card {
    display: block;
    text-align: center;
    background: #f4f4f4;
    color: #333;
    padding: 12px;
    margin-top: 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-card:hover {
    background: var(--secondary-green, #76b72a);
    color: #fff;
    box-shadow: 0 4px 10px rgba(118, 183, 42, 0.3);
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #555;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--primary-green, #9acd32);
    color: #fff;
    border-color: var(--primary-green, #9acd32);
}

/* Responsividade */
@media(max-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }

    .results-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* CSS ESPECÍFICO DA PÁGINA SINGLE */
/* (Se você já tiver isso no style.css, pode remover daqui) */

.page-header {
    background: linear-gradient(rgba(46, 74, 21, 0.8), rgba(46, 74, 21, 0.8)), url('<?php echo $hero_bg; ?>');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.breadcrumbs {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs span {
    margin: 0 10px;
}

.listing-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.content-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
    padding-bottom: 5px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.amenity-item i {
    color: var(--secondary-green);
}

/* GALERIA ACF */
.company-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item-link {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    height: 150px;
}

.gallery-thumb {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item-link:hover .gallery-thumb {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* SIDEBAR */
.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-green);
    position: sticky;
    top: 100px;
}

.company-meta {
    list-style: none;
    margin-bottom: 25px;
}

.company-meta li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.company-meta li i {
    color: var(--primary-green);
    margin-top: 4px;
}

.btn-whatsapp-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-sidebar:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    color: #fff;
}

.hours-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.current-status {
    color: var(--secondary-green);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* LIGHTBOX CSS */
#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-btn {
    position: absolute;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lb-close {
    top: 20px;
    right: 30px;
}

.lb-prev {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.lb-next {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

/* Container principal da seção */
.sobre-nos {
    background-color: #f9fbfd;
    /* Fundo levemente azulado/claro */
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    /* Centraliza o container na tela */
    border-radius: 8px;
}

/* Títulos */
.sobre-nos h2 {
    color: #2c5282;
    /* Azul escuro (tema mar/oceano) */
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #38b2ac;
    /* Detalhe verde água */
    display: inline-block;
    padding-bottom: 5px;
}

.sobre-nos h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Parágrafos */
.sobre-nos p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Lista de diferenciais */
.sobre-nos ul {
    list-style: none;
    /* Remove bolinhas padrão */
    padding: 0;
    display: grid;
    gap: 15px;
    /* Espaço entre os itens */
}

.sobre-nos li {
    background: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Sombra suave */
    border-left: 4px solid #38b2ac;
    /* Borda lateral verde */
    display: flex;
    flex-direction: column;
}

/* Destaque para os termos em negrito na lista */
.sobre-nos li strong {
    color: #2c5282;
    font-size: 1.1rem;
    margin-bottom: 4px;
    display: block;
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
    .sobre-nos {
        padding: 40px 15px;
    }

    .sobre-nos h2 {
        font-size: 1.75rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsividade */
@media(max-width: 992px) {
    .listing-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }

    .featured-image {
        height: 300px;
    }
}

@media(max-width: 768px) {
    .company-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .lb-prev,
    .lb-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }
}

/* --- Estilização do Contact Form 7 (GoParaty) --- */

/* Container e Espaçamento */
.wpcf7-form p {
    margin-bottom: 20px;
}

/* Labels (Rótulos) */
.wpcf7-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

/* Campos de Input e Textarea */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #444;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

/* Efeito ao Clicar (Foco) */
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    outline: none;
    border-color: var(--secondary-green, #76b72a);
    /* Usa a variável ou o verde padrão */
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(118, 183, 42, 0.1);
    /* Glow verde suave */
}

/* Ajuste específico para área de texto */
.wpcf7-form-control.wpcf7-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Botão de Enviar */
.wpcf7-submit {
    background-color: var(--secondary-green, #76b72a);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    /* Formato Pill */
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    width: auto;
}

.wpcf7-submit:hover {
    background-color: var(--dark-green, #2e4a15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Mensagens de Erro de Validação (O campo obrigatório) */
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Borda vermelha no input quando há erro */
.wpcf7-not-valid {
    border-color: #dc3232 !important;
    background-color: #fff0f0 !important;
}

/* Caixa de Resposta (Mensagem de Sucesso/Erro geral no fundo) */
.wpcf7-response-output {
    border-radius: 6px;
    padding: 15px !important;
    margin: 20px 0 !important;
    text-align: center;
    font-size: 0.95rem;
    border-width: 1px !important;
}

/* Estilo para Sucesso */
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #eef9e3;
    border-color: #76b72a !important;
    color: #2e4a15;
}

/* Estilo para Erro */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: #fff8e5;
    border-color: #ffb900 !important;
    color: #856404;
}

/* Spinner de carregamento (ajuste visual) */
.wpcf7-spinner {
    margin-top: 0;
    vertical-align: middle;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Ícones e Busca */
.header-actions {
    display: flex;
    align-items: center;
}

.search-icon {
    padding: 15px;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.search-icon:hover {
    background: rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    /* Escondido no Desktop */
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* --- Botão de Enviar do Contact Form 7 --- */

/* Estilo Base do Botão */
input.wpcf7-form-control.wpcf7-submit {
    background-color: var(--secondary-green, #76b72a);
    /* Verde da sua marca */
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    /* Formato Pílula */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(118, 183, 42, 0.3);
    /* Sombra verde suave */
    margin-top: 10px;
    width: auto;
    /* Tamanho automático baseado no texto */
    -webkit-appearance: none;
    /* Remove estilo padrão do iPhone/Safari */
}

/* Efeito ao passar o mouse (Hover) */
input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: var(--dark-green, #2e4a15);
    /* Verde mais escuro */
    transform: translateY(-3px);
    /* Sobe levemente */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Sombra aumenta */
}

/* Efeito ao Clicar (Active) */
input.wpcf7-form-control.wpcf7-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Spinner de carregamento (Ajuste para não quebrar o layout) */
.wpcf7-spinner {
    margin: 0 0 0 10px;
    vertical-align: middle;
}

/* Search Container (Hidden) */
.search-container {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

.search-container.active {
    display: block;
}

.search-form {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    padding: 0 15px;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.search-form button {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   4. HERO E CABEÇALHOS DE PÁGINA
   ========================================= */
/* Hero da Home */
.hero {
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x800/000000/333333?text=Landscape');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--primary-green);
}

.hero-content p {
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns .btn {
    margin-right: 10px;
}

/* Hero de Páginas Internas (ex: Contato) */
.page-header {
    background: linear-gradient(rgba(46, 74, 21, 0.8), rgba(46, 74, 21, 0.8)), url('https://via.placeholder.com/1920x600/2e4a15/ffffff?text=Pagina+Interna');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.breadcrumbs {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs span {
    margin: 0 10px;
}

/* =========================================
   5. SEÇÕES DA HOME (Welcome, Services, etc)
   ========================================= */
/* Welcome */
.welcome {
    position: relative;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.leaves-decor {
    width: 100%;
}

.circle-graphic {
    position: relative;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    border: 1px dashed #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    background: #666;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.orbit-icon {
    position: absolute;
    color: var(--secondary-green);
    font-size: 1.5rem;
}

.orbit-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-3 {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.orbit-4 {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.service-icon {
    font-size: 2rem;
    color: var(--secondary-green);
}

.service-text h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.service-text p {
    font-size: 0.85rem;
}

/* Projects Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.gallery-item {
    height: 250px;
    background: #ccc;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.big {
    grid-column: span 2;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    background: #fafafa;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 20px;
}

.testimonial-quote {
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Volunteer */
.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.circles-images {
    position: relative;
    height: 300px;
}

.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--secondary-green);
    background: #eee;
    position: absolute;
    overflow: hidden;
}

.c1 {
    left: 0;
    top: 50px;
    z-index: 1;
}

.c2 {
    left: 140px;
    top: 0;
    z-index: 2;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.c3 {
    left: 280px;
    top: 60px;
    z-index: 1;
}

/* Upcoming Events */
.event-card {
    display: flex;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.event-content {
    padding: 30px;
    flex: 2;
}

.event-action {
    flex: 1;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

/* Stats */
.stats-section {
    background: linear-gradient(to right, #2e4a15, #4a7c20);
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.drop-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 50% 50% 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.drop-icon i {
    transform: rotate(-45deg);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* News & Newsletter */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 200px;
    background: #ddd;
}

.news-body {
    padding: 20px;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.news-title {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.newsletter {
    background: linear-gradient(to right, #222, #444);
    padding: 30px 0;
    color: #fff;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl-form {
    display: flex;
    gap: 10px;
}

.nl-form input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 250px;
}

/* =========================================
   6. CARDS MODERNOS (BLOG/DICAS)
   ========================================= */
.custom-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.modern-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-placeholder,
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .img-placeholder,
.modern-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-meta i {
    color: var(--primary-green);
    margin-right: 5px;
}

.card-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.card-title a {
    text-decoration: none;
    color: #222;
    transition: color 0.2s;
}

.card-title a:hover {
    color: var(--primary-green);
}

.card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
}

.btn-invite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-invite:hover {
    background-color: var(--primary-green);
    color: #fff;
    box-shadow: 0 5px 15px rgba(154, 205, 50, 0.4);
}

.btn-invite:hover i {
    transform: translateX(5px);
}

/* =========================================
   7. PÁGINA DE CONTATO & FORMULÁRIOS
   ========================================= */
/* Grid de Layout (Sidebar Esquerda / Form Direita) */
.listing-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Coluna 1 menor, Coluna 2 maior */
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

/* Sidebar Box */
.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-green);
    position: sticky;
    top: 20px;
}

.company-meta {
    list-style: none;
    margin-bottom: 25px;
}

.company-meta li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 15px;
}

.company-meta li:last-child {
    border-bottom: none;
}

.company-meta li i {
    color: var(--primary-green);
    margin-top: 4px;
    font-size: 1.1rem;
}

.btn-whatsapp-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-color);
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp-sidebar:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    color: #fff;
}

/* Formulário Principal */
.content-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
    padding-bottom: 5px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    color: #333;
    background: #fdfdfd;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-green);
    background: #fff;
    box-shadow: 0 0 5px rgba(118, 183, 42, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 180px;
}

.btn-submit {
    background-color: var(--secondary-green);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    justify-self: start;
}

.btn-submit:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    background: #111;
    color: #888;
    padding: 60px 0 20px;
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.fg-item {
    height: 60px;
    background: #333;
}

.copyright {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   9. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================= */
@media(max-width: 992px) {

    .services-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.big {
        grid-column: span 2;
    }

    /* Contato Mobile: Vira 1 coluna */
    .listing-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
        margin-bottom: 40px;
    }
}

@media(max-width: 768px) {

    /* Header Mobile */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-green);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .search-icon {
        display: none;
    }

    .search-container {
        position: relative;
        display: block;
        padding: 10px;
        background: #f4f4f4;
    }

    .search-container input {
        width: 100%;
    }

    /* Ajustes Gerais */
    .welcome-grid,
    .volunteer-grid,
    .stats-grid,
    .newsletter-content,
    .footer-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }

    /* Imagens Círculo */
    .circles-images {
        height: auto;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .circle-img {
        position: static;
        margin: 0;
    }

    /* Componentes */
    .event-card {
        flex-direction: column;
    }

    .event-action {
        padding: 20px;
    }

    .nl-form {
        flex-direction: column;
        width: 100%;
    }

    .nl-form input {
        width: 100%;
    }
}

/* O Container com a Imagem de Fundo */
.paraty-404-hero {
    background: linear-gradient(rgba(0, 50, 80, 0.4), rgba(0, 50, 80, 0.6)),
        url('https://images.unsplash.com/photo-1596395811329-87c126602330?q=80&w=1920&auto=format&fit=crop');
    /* Foto de Paraty */
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Ocupa a altura total da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* O Cartão de Vidro (Glassmorphism) */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    /* Efeito de desfoque no fundo */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-card h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: #f0f0f0;
}

.glass-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Botões de Ação */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-action {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}



.btn-primary:hover {
    background-color: #ffcf40;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #003250;
}

/* Campo de Busca Estilizado */
.search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-wrapper input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 1rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 600px) {
    .glass-card {
        padding: 30px 20px;
    }

    .glass-card h1 {
        font-size: 2.2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        box-sizing: border-box;
    }
}

body,
html {
    height: 100%;
    margin: 0;
}

/* Seção Principal que ocupa toda a tela */
.error-404-hero {
    position: relative;
    /* Imagem de fundo incrível (substitua pela sua URL final) */
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=2560&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Altura total menos o header (ajuste os 80px se seu header for maior/menor) */
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

/* Overlay escuro para melhorar a leitura do texto sobre a imagem */
.error-404-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente sutil para escurecer a imagem */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Conteúdo centralizado */
.error-content {
    position: relative;
    z-index: 2;
    /* Garante que o texto fique sobre o overlay */
    max-width: 600px;
}

/* O número 404 gigante */
.big-404 {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    /* Cor de destaque (verde da sua paleta) */
    color: var(--primary-green, #9acd32);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Título principal */
.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Texto descritivo */
.error-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* Estilo do Botão (reutilizando suas classes se existirem, ou um fallback) */
.btn-404 {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-green, #9acd32);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-404:hover {
    background-color: #fff;
    color: var(--primary-green, #9acd32);
    transform: translateY(-3px);
}

/* Ícone dentro do botão */
.btn-404 i {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .big-404 {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }
}

/* --- Layout de Coluna Única --- */

/* Container Principal */
.single-column-wrapper {
    background-color: #f4f7f6;
    padding-bottom: 60px;
}

.single-column-wrapper .container {
    max-width: 800px;
    /* Largura ideal para leitura */
    margin: 0 auto;
    padding: 0 20px;
    display: block;
    /* Garante que não é grid/flex lateral */
}

/* 1. Imagem de Destaque (Thumbnail) */
.post-featured-image {
    width: 100%;
    height: 400px;
    /* Altura fixa para impacto visual */
    overflow: hidden;
    margin-bottom: 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* A imagem cobre a área sem distorcer */
}

/* 2. Título e Breadcrumbs */
.post-header-content {
    text-align: center;
    /* Centralizado para ficar elegante */
    margin-bottom: 40px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.main-post-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* 3. Caixas de Conteúdo */
.content-box.single-layout {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.section-label {
    font-size: 1.5rem;
    color: #2c5282;
    margin-bottom: 20px;
    border-bottom: 2px solid #38b2ac;
    display: inline-block;
    padding-bottom: 5px;
}

.entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Comodidades */
.amenities-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.amenities-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.amenity-item {
    background: #e6fffa;
    color: #2c7a7b;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Galeria */
.company-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

/* 4. Footer Info (Antiga Sidebar) */
.post-footer-info {
    margin-top: 40px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.map-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.btn-whatsapp-full {
    display: block;
    width: 100%;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-whatsapp-full:hover {
    background-color: #1ebc57;
}

/* Responsividade Mobile */
@media (max-width: 600px) {
    .post-featured-image {
        height: 250px;
    }

    .main-post-title {
        font-size: 1.8rem;
    }

    .content-box.single-layout {
        padding: 20px;
    }
}