/* ============================================
STYLE.CSS - JRFAC IMÓVEIS
Versão corrigida com logo transparente e tamanhos ajustados
============================================ */

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* CABEÇALHO ATUALIZADO COM LOGO TRANSPARENTE */
.header-main {
    background: linear-gradient(135deg, #243e55 0%, #1a2e3f 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(36, 62, 85, 0.3);
    border-bottom: 4px solid #D4AF37;
}

/* ============================================
CORREÇÃO: ESPAÇAMENTO PARA CABEÇALHO FIXO
============================================ */

/* Espaçamento para TODO conteúdo principal após cabeçalho fixo */
main, .content, .container-principal, .page-content {
    padding-top: 170px !important;
}

/* Ajuste para a seção hero */
.hero-banner {
    margin-top: 170px !important;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo-header-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

/* LOGO GRANDE E TRANSPARENTE */
.logo-header {
    height: 130px !important;
    width: auto;
    transition: all 0.3s;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.4));
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-header:hover {
    transform: scale(1.05);
    filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.5));
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.4);
    color: #F4E4A6;
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* BANNER PRINCIPAL - IMAGEM ORIGINAL VISÍVEL */
.hero-banner {
    background: url('imagens/banner_casa.jpg') center center/cover no-repeat;
    color: white;
    padding: 80px 0 60px;
    margin-top: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 62, 85, 0.3) 0%, rgba(26, 46, 63, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Contêiner para o subtítulo do hero */
.hero-subtitle-container {
    margin-top: 15px;
    text-align: center;
    width: 100%;
}

/* Filtros */
.filters-section {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(36, 62, 85, 0.1);
    margin-bottom: 30px;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #243e55;
}

.filters-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    min-width: 180px;
    background: white;
    color: #333;
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.filter-btn {
    background: linear-gradient(135deg, #243e55 0%, #1a2e3f 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: 2px solid #243e55;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #1a2e3f 0%, #243e55 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(36, 62, 85, 0.3);
}

.clear-btn {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    border-color: #666;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #444 0%, #666 100%);
    box-shadow: 0 6px 15px rgba(102, 102, 102, 0.3);
}

/* Seção de Imóveis */
.properties-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: #243e55;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #243e55);
    margin: 15px auto;
    border-radius: 2px;
}

/* LAYOUT 3 COLUNAS FIXO - 12 IMÓVEIS */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

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

/* Cards de Imóveis */
.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(36, 62, 85, 0.1);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(36, 62, 85, 0.2);
    border-color: #D4AF37;
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.property-card:hover .property-img {
    transform: scale(1.12);
}

.property-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(36, 62, 85, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.property-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.property-title {
    color: #243e55;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.property-location {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.property-price {
    font-size: 1.6rem;
    color: #243e55;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.btn-details {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%);
    color: #243e55;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: auto;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-details:hover {
    background: linear-gradient(135deg, #F4E4A6 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
    border-color: #243e55;
}

/* Mensagem sem resultados */
.no-results {
    text-align: center;
    padding: 60px 30px;
    color: #666;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 4px dashed #dee2e6;
    grid-column: 1 / -1;
}

.no-results i {
    color: #D4AF37;
    margin-bottom: 25px;
    font-size: 4rem;
}

.no-results h3 {
    color: #243e55;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.no-results p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Rodapé com Banner - ATUALIZADO COM LOGO TRANSPARENTE */
.footer-main {
    background: linear-gradient(135deg, #1a2e3f 0%, #243e55 100%);
    color: white;
    margin-top: 50px;
    border-top: 3px solid #D4AF37;
}

/* Banner do rodapé - IMAGEM ORIGINAL */
.footer-banner {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-bottom: 30px;
}

.footer-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.footer-banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.footer-banner-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 10px;
}

.footer-banner-overlay p {
    font-size: 1.1rem;
    color: #D4AF37;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.footer-content {
    padding: 40px 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* LOGO DO RODAPÉ - GRANDE E TRANSPARENTE */
.footer-logo {
    background: transparent !important;
}

.logo-footer {
    height: 85px !important;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.95;
    transition: all 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-footer:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-info h4, .footer-social h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.footer-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-info p i {
    color: #D4AF37;
    width: 20px;
    font-size: 1.1rem;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: #D4AF37;
    color: #243e55;
    transform: translateY(-3px) scale(1.1);
    border-color: #D4AF37;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* RODAPÉ COM ANO CORRETO E CRÉDITOS */
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom .developer-credit {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 8px;
}

.footer-bottom .developer-credit strong {
    color: #D4AF37;
}

/* MODAL - X FUNCIONANDO */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 62, 85, 0.92);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 18px;
    max-width: 1100px;
    width: 100%;
    margin: 20px auto;
    position: relative;
    animation: modalAppear 0.4s ease;
    box-shadow: 0 20px 60px rgba(36, 62, 85, 0.3);
    border: 3px solid #D4AF37;
}

@keyframes modalAppear {
    from { opacity: 0; transform: translateY(-60px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #243e55;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 3px solid white;
}

.modal-close:hover {
    background: #D4AF37;
    transform: rotate(90deg);
}

.modal-body {
    padding: 35px;
}

.modal-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
}

.modal-header h2 {
    color: #243e55;
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-type {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-images {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(36, 62, 85, 0.2);
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.modal-img.active {
    display: block;
}

.modal-thumbnails {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.modal-thumb {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.modal-thumb:hover, .modal-thumb.active {
    opacity: 1;
    border-color: #D4AF37;
    transform: scale(1.05);
}

.no-images {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 15px;
    margin-bottom: 35px;
    font-size: 1.2rem;
    border: 3px dashed #dee2e6;
}

.modal-details {
    display: grid;
    gap: 35px;
}

.detail-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #D4AF37;
    transition: all 0.3s;
}

.detail-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(36, 62, 85, 0.1);
}

.detail-section h3 {
    color: #243e55;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-size: 1.05rem;
}

.detail-item i {
    color: #D4AF37;
    width: 24px;
    font-size: 1.2rem;
}

.price-section {
    background: linear-gradient(135deg, #243e55 0%, #1a2e3f 100%);
    color: white;
}

.price-section h3 {
    color: white;
}

.price-display {
    text-align: center;
    padding: 30px;
}

.main-price {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.price-value {
    font-size: 3rem;
    font-weight: bold;
    color: #D4AF37;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-contact {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: #666;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

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

/* Badge "Valor do Pacote" - SEM MENCIONAR DESPESAS */
.pacote-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.3);
}

.pacote-badge-modal {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-left: 15px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 2px 5px rgba(40, 167, 69, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4); }
    100% { transform: scale(1); box-shadow: 0 2px 5px rgba(40, 167, 69, 0.3); }
}

/* Mensagem quando não há imóveis */
.no-imoveis-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 30px;
    color: #666;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 4px dashed #dee2e6;
}

.no-imoveis-message i {
    color: #D4AF37;
    margin-bottom: 25px;
    font-size: 4rem;
}

.no-imoveis-message h3 {
    color: #243e55;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.no-imoveis-message p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
PÁGINA DE CONTATO - ELEGANTE E REFINADA
============================================ */

/* Container Principal do Contato */
.contato-container {
    max-width: 1200px;
    margin: 200px auto 50px; /* AUMENTADO para mais espaçamento */
    padding: 0 20px;
}

/* Cabeçalho "Fale Conosco" - ELEGANTE E BEM ESPAÇADO */
.contato-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #243e55 0%, #1a2e3f 100%);
    border-radius: 25px;
    border: 4px solid #D4AF37;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(212, 175, 55, 0.2),
        inset 0 0 40px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

/* Efeito de brilho sutil */
.contato-header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    border-radius: 27px;
    z-index: -1;
    opacity: 0.5;
}

.contato-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem !important;
    color: #F4E4A6 !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contato-header p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Layout do Conteúdo */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Informações de Contato */
.contato-info {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(36, 62, 85, 0.12);
    border: 3px solid #D4AF37;
    transition: all 0.3s ease;
}

.contato-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(36, 62, 85, 0.18);
}

.contato-info h3 {
    color: #243e55;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 4px solid #D4AF37;
}

.contato-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.contato-item i {
    color: #243e55;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contato-item div strong {
    color: #243e55;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.contato-item div {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Formulário de Contato */
.contato-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(36, 62, 85, 0.12);
    border: 3px solid #D4AF37;
    transition: all 0.3s ease;
}

.contato-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(36, 62, 85, 0.18);
}

.contato-form h3 {
    color: #243e55;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    color: #243e55;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: #D4AF37;
    font-size: 1.2rem;
    width: 24px;
}

/* Campos de formulário */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
    background: #f9f9f9;
    color: #333;
}

/* CAMPO DE SELEÇÃO (ASSUNTO) - MELHORADO E MAIOR */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23243e55' 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 20px center;
    background-size: 18px;
    padding-right: 60px;
    cursor: pointer;
    min-height: 55px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid #d4af37a0;
    background-color: #fffbf0;
}

/* Estilização das opções do select */
.form-group select option {
    padding: 15px 20px !important;
    font-size: 1.05rem !important;
    color: #333 !important;
    background-color: white !important;
}

.form-group select option:hover {
    background-color: #f4e4a6 !important;
}

.form-group select option:checked {
    background-color: #D4AF37 !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Efeitos de foco */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Botão de Enviar */
.btn-enviar {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%);
    color: #243e55;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-enviar:hover {
    background: linear-gradient(135deg, #243e55 0%, #1a2e3f 100%);
    color: #F4E4A6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(36, 62, 85, 0.4);
    border-color: #D4AF37;
}

.btn-enviar i {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.btn-enviar:hover i {
    transform: translateX(8px);
}

/* Responsividade do Contato */
@media (max-width: 968px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-header {
        padding: 40px 30px;
        margin-bottom: 40px;
    }
    
    .contato-header h1 {
        font-size: 2.5rem !important;
    }
    
    .contato-info,
    .contato-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contato-container {
        margin: 170px auto 30px;
        padding: 0 15px;
    }
    
    .contato-header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contato-header h1 {
        font-size: 2.2rem !important;
    }
    
    .contato-header p {
        font-size: 1.2rem;
    }
    
    .contato-info,
    .contato-form {
        padding: 25px;
    }
    
    .contato-info h3,
    .contato-form h3 {
        font-size: 1.7rem;
    }
    
    .btn-enviar {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
    }
    
    .form-group select {
        background-position: right 16px center;
        padding-right: 50px;
    }
}

/* RESPONSIVIDADE COM NOVOS TAMANHOS DE LOGO */
@media (max-width: 768px) {
    .header-main {
        padding: 12px 0;
    }
    
    .logo-header {
        height: 100px !important;
    }
    
    .hero-banner {
        min-height: 350px;
        margin-top: 140px;
    }
    
    .modal-images {
        height: 300px;
    }
    
    .footer-banner {
        height: 150px;
    }
    
    .logo-footer {
        height: 70px !important;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 10px 0;
    }
    
    .logo-header {
        height: 85px !important;
    }
    
    .hero-banner {
        min-height: 300px;
        margin-top: 130px;
    }
    
    .modal-images {
        height: 220px;
    }
    
    .footer-banner {
        height: 120px;
    }
    
    .logo-footer {
        height: 60px !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
}

/* ============================================
MODIFICAÇÕES ELEGANTES - LOGO MAIOR E BANNER
============================================ */

/* LOGO MAIOR NO CABEÇALHO (SEM DEFORMAR) */
.logo-header {
    height: 130px !important;
    width: auto;
    max-width: 280px;
    transition: all 0.3s;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.4));
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    object-fit: contain;
}

/* Ajuste do cabeçalho para logo maior */
.header-main {
    padding: 12px 0 !important;
}

.main-nav {
    padding: 5px 0 !important;
}

/* BANNER PRINCIPAL - TEXTO COM FONTE ARIAL E BORDA ELEGANTE */
.hero-title {
    font-family: Arial, sans-serif !important;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-family: Arial, sans-serif !important;
    font-size: 1.2rem;
    margin: 0 auto 0;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    padding: 12px 25px;
    background: rgba(36, 62, 85, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-top: 15px;
    max-width: 90%;
}

/* BANNER DO RODAPÉ - TEXTO NO CANTO SUPERIOR ESQUERDO */
.footer-banner-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    transform: none;
    text-align: left;
    z-index: 2;
    background: rgba(36, 62, 85, 0.75);
    padding: 25px 35px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    max-width: 400px;
}

.footer-banner-overlay h3 {
    font-family: Arial, sans-serif !important;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-banner-overlay p {
    font-family: Arial, sans-serif !important;
    font-size: 1.1rem;
    color: #D4AF37;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    margin: 0;
    font-weight: 400;
}

/* Ajuste da altura do banner do rodapé para acomodar texto no topo */
.footer-banner {
    position: relative;
    height: 220px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* LOGO DO RODAPÉ TAMBÉM MAIOR */
.logo-footer {
    height: 95px !important;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.95;
    transition: all 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    object-fit: contain;
}

/* ============================================
AJUSTES FINAIS - LOGO MAIOR E CRECI
============================================ */

/* LOGO AINDA MAIOR NO CABEÇALHO */
.logo-header {
    height: 130px !important;
    width: auto;
    max-width: 280px;
    transition: all 0.3s;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.4));
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    object-fit: contain;
}

/* CONTÊINER DO LOGO COM INFORMAÇÃO CRECI */
.logo-header-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    position: relative;
}

/* INFORMAÇÃO CRECI ABAIXO DO LOGO */
.creci-info {
    margin-top: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: #D4AF37 !important;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    background: rgba(36, 62, 85, 0.7);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    letter-spacing: 0.5px;
    animation: pulseCreci 2s infinite;
}

@keyframes pulseCreci {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.02); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* Ajuste do cabeçalho para logo maior */
.header-main {
    padding: 10px 0 !important;
}

.main-nav {
    padding: 3px 0 !important;
}

/* LOGO DO RODAPÉ AINDA MAIOR TAMBÉM */
.logo-footer {
    height: 110px !important;
    width: auto;
    margin-bottom: 10px;
    opacity: 0.95;
    transition: all 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    object-fit: contain;
}

/* CONTÊINER DO LOGO NO RODAPÉ COM CRECI */
.footer-logo {
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* INFORMAÇÃO CRECI NO RODAPÉ */
.creci-info-footer {
    margin-top: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    color: #D4AF37 !important;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    background: rgba(36, 62, 85, 0.6);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

/* RESPONSIVIDADE PARA AS NOVAS ALTERAÇÕES */
@media (max-width: 768px) {
    .logo-header {
        height: 100px !important;
        max-width: 220px;
    }
    
    .creci-info {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .logo-footer {
        height: 90px !important;
    }
    
    .creci-info-footer {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 10px 20px;
        margin-top: 10px;
    }
    
    .footer-banner-overlay {
        top: 20px;
        left: 20px;
        padding: 20px 25px;
        max-width: 300px;
    }
    
    .footer-banner-overlay h3 {
        font-size: 1.6rem;
    }
    
    .footer-banner-overlay p {
        font-size: 1rem;
    }
    
    .footer-banner {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .logo-header {
        height: 85px !important;
        max-width: 190px;
    }
    
    .creci-info {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .logo-footer {
        height: 80px !important;
    }
    
    .creci-info-footer {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 8px 15px;
        max-width: 95%;
    }
    
    .footer-banner-overlay {
        top: 15px;
        left: 15px;
        padding: 15px 20px;
        max-width: 250px;
    }
    
    .footer-banner-overlay h3 {
        font-size: 1.3rem;
    }
    
    .footer-banner-overlay p {
        font-size: 0.9rem;
    }
    
    .footer-banner {
        height: 150px;
    }
}

/* CORREÇÃO RÁPIDA PARA ADMIN */
body.wp-admin .wrap,
body[class*="admin"] .wrap,
.admin-page .container {
    padding-top: 120px !important;
}

.wp-admin h1,
.admin-page h1,
[class*="admin"] h1 {
    margin-top: 60px !important;
    padding-top: 40px !important;
}

/* Ajuste para barra do WordPress */
.admin-bar .header-main {
    top: 32px !important;
}

.admin-bar main,
.admin-bar .content {
    padding-top: 190px !important;
}


/* ============================================
REMOVER QUALQUER BOTÃO DE ADMIN
============================================ */

/* Remover botões, links ou elementos de admin */
.back-to-top,
.admin-btn,
[class*="admin-btn"],
[class*="admin-button"],
[href*="admin"],
[href*="painel"],
[href*="dashboard"],
button[onclick*="admin"],
button[onclick*="Admin"],
a[href*="admin.php"],
a[href*="admin/"],
button:contains("Admin"),
button:contains("Painel"),
button:contains("Dashboard") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Remover especificamente do formulário de contato */
.contato-form button,
.contato-form a,
.contato-form input[type="button"],
.contato-form input[type="submit"] {
    display: none !important;
}

/* MAS manter o botão de enviar original */
.contato-form .btn-enviar,
.contato-form button[type="submit"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    position: static !important;
    left: auto !important;
}