:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #1C1C1C;
    --border-gold: #866528;
    --accent-gold: #C5A059;
    --text-champagne: #E8D5B5;
    --text-body: rgba(232, 213, 181, 0.75);
    --text-dark: #0A0A0A;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --glow-gold: rgba(197, 160, 89, 0.15);
    --shadow-lux: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 77px;
}

body {
    background: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-champagne);
    font-weight: 600;
}

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

/* ─────────────── HEADER ─────────────── */
header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(134, 101, 40, 0.2);
    color: var(--text-champagne);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: 20px;
}

.logo {
    position: relative;
    width: 180px;
    height: 52px;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.2)) brightness(1.2);
}

.logo img:hover {
    transform: translateY(-50%) scale(1.02);
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.4)) brightness(1.3);
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.menu-toggle:hover {
    background: rgba(197, 160, 89, 0.1);
}

/* Menu Desktop */
nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: inline-block;
}

nav a:hover,
nav a.active {
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.1);
}

/* ─────────────── BOTÕES GERAIS ─────────────── */
.btn,
.btn-card {
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.btn {
    background: linear-gradient(135deg, #C5A059 0%, #866528 100%);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(134, 101, 40, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    border: 1px solid var(--accent-gold);
    background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
}

.btn-card {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 12px;
    font-size: 0.95rem;
}

.btn-card:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

/* ─────────────── HERO ─────────────── */
.hero {
    height: 75vh;
    min-height: 500px;
    background: url("../images/hero/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-champagne);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.98) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-body);
    font-weight: 300;
}

/* ─────────────── SEÇÕES GERAIS ─────────────── */
.destaques,
.sobre,
.contatos,
.atendimento,
.imoveis,
.cta-template {
    padding: 90px 0;
}

.destaques { padding-top: 80px; padding-bottom: 40px; }
.imoveis   { padding: 40px 0 100px; }

/* ─────────────── BUSCA ─────────────── */
.busca {
    background: var(--bg-secondary);
    padding: 30px 25px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 40px 0;
    border-radius: 8px;
    border: 1px solid rgba(134, 101, 40, 0.3);
    box-shadow: var(--shadow-lux);
    justify-content: center;
    align-items: center;
}

.busca select,
.busca input,
.busca button {
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid rgba(232, 213, 181, 0.2);
    font-size: 1rem;
    min-width: 180px;
    outline: none;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-champagne);
    font-family: var(--font-body);
}

.busca select {
    appearance: none;
    -webkit-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='%23C5A059' 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 14px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.busca select:hover,
.busca input:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background-color: rgba(10, 10, 10, 0.8);
}

.busca select:focus,
.busca input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
    background-color: var(--bg-primary);
}

.busca select option {
    background: var(--bg-secondary);
    color: var(--text-champagne);
}

/* ─────────────── CUSTOM SELECTS ─────────────── */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    min-width: 180px;
    flex: 1;
}

.custom-select-trigger {
    padding: 14px 40px 14px 18px;
    border-radius: 6px;
    border: 1px solid rgba(232, 213, 181, 0.2);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-champagne);
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-trigger:hover, .custom-select-trigger.open {
    border-color: rgba(197, 160, 89, 0.5);
    background-color: rgba(10, 10, 10, 0.8);
}

.custom-select-trigger .arrow {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    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='%23C5A059' 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: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-select-trigger.open .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    background: var(--bg-secondary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transform: translateY(-10px);
    max-height: 300px;
    overflow-y: auto;
    margin-top: 6px;
}

.custom-options::-webkit-scrollbar { width: 6px; }
.custom-options::-webkit-scrollbar-track { background: rgba(10, 10, 10, 0.6); border-radius: 6px; }
.custom-options::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 6px; }

.custom-options.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-body);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(134, 101, 40, 0.1);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold);
}

.custom-option.selected {
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--accent-gold), var(--border-gold));
    font-weight: 500;
}

/* ─────────────── GRID E CARDS ─────────────── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
    padding-bottom: 60px;
}

.card {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(134, 101, 40, 0.2);
    box-shadow: var(--shadow-lux);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: var(--border-gold);
}

.card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.5);
}

.card:hover img {
    transform: scale(1.05);
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.card-info {
    padding: 24px;
    background: linear-gradient(180deg, rgba(28,28,28,0) 0%, var(--bg-secondary) 15%);
}

.card-info h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    color: var(--text-champagne);
    line-height: 1.3;
}

.card-info p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0 0 15px;
}

.preco {
    display: block;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 10px 0 18px;
    font-family: var(--font-heading);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-gold), var(--border-gold));
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge.novo         { background: linear-gradient(135deg, #16a34a, #065f46); color: white; }
.badge.oportunidade { background: linear-gradient(135deg, #dc2626, #991b1b); color: white; }

/* ─────────────── CARD ESPECIAL DO MODAL ─────────────── */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px dashed rgba(197, 160, 89, 0.3);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    opacity: 0.9;
    filter: drop-shadow(0 4px 15px rgba(197, 160, 89, 0.3));
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--text-champagne);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.empty-state p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-imovel-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(134, 101, 40, 0.3);
    box-shadow: var(--shadow-lux);
    margin: 0 auto 32px;
    max-width: 580px;
    transition: var(--transition-smooth);
}

.modal-imovel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-imovel-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modal-imovel-card:hover img {
    transform: scale(1.03);
}

.modal-card-info {
    padding: 28px 32px;
}

.modal-card-info h3 {
    font-size: 1.7rem;
    margin: 0 0 12px;
    color: var(--text-champagne);
    line-height: 1.25;
}

.modal-card-info p {
    color: var(--text-body);
    font-size: 1.05rem;
    margin: 0 0 18px;
}

.modal-imovel-card .preco {
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 15px 0 24px;
}

.modal-imovel-card .badge {
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ─────────────── MODAL ─────────────── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.aberto {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    width: 100%;
    max-width: 1000px;
    max-height: 96vh;
    border-radius: 8px;
    border: 1px solid rgba(134, 101, 40, 0.4);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    transform: translateY(40px) scale(0.98);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.aberto .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal.fechando .modal-content {
    transform: translateY(30px) scale(0.98);
    opacity: 0;
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 28px;
    color: var(--text-champagne);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding-bottom: 3px;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.close-modal:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: rotate(90deg);
}

/* Carrossel no topo do modal */
.modal-gallery {
    position: relative;
    flex: 0 0 auto;
    height: 450px;
    background: var(--bg-primary);
    overflow: hidden;
    border-bottom: 1px solid rgba(134, 101, 40, 0.2);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slider picture {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: block;
}

.slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.modal-gallery .prev,
.modal-gallery .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--text-champagne);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery .prev:hover,
.modal-gallery .next:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1.08);
}

.modal-gallery .prev { left: 24px; }
.modal-gallery .next { right: 24px; }

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 6;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(232, 213, 181, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
}

/* Conteúdo abaixo do carrossel */
.modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 36px 40px;
    -webkit-overflow-scrolling: touch;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}
.modal-body::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
.modal-body::-webkit-scrollbar-thumb {
    background: var(--border-gold);
    border-radius: 4px;
}

.modal-info h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    color: var(--text-champagne);
}

.modal-cidade {
    color: var(--text-body);
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(134, 101, 40, 0.2);
    border-bottom: 1px solid rgba(134, 101, 40, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-champagne);
}

.spec-item i {
    color: var(--accent-gold);
    font-size: 22px;
}

.modal-preco {
    font-size: 38px;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin: 25px 0 35px;
}

.btn-whats-modal {
    display: block;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-whats-modal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

/* ─────────────── SOBRE MIM ─────────────── */
.sobre-mim {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(134, 101, 40, 0.1);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.sobre-imagem {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid rgba(134, 101, 40, 0.2);
}

.sobre-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition-smooth);
}

.sobre-imagem:hover img {
    transform: scale(1.03);
}

.sobre-conteudo {
    display: flex;
    flex-direction: column;
}

.sobre-titulo {
    font-size: 3rem;
    color: var(--text-champagne);
    margin-bottom: 15px;
    line-height: 1.1;
}

.sobre-subtitulo {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-weight: 400;
}

.sobre-texto {
    margin-bottom: 40px;
}

.sobre-texto p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 15px;
    line-height: 1.8;
}

.sobre-texto strong {
    color: var(--text-champagne);
    font-weight: 600;
}

.sobre-destaques {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid rgba(134, 101, 40, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.destaque-numero {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    min-width: 50px;
}

.destaque-numero i {
    font-size: 1.8rem;
}

.destaque-texto {
    font-size: 0.95rem;
    color: var(--text-champagne);
    line-height: 1.3;
}

.sobre-assinatura {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-gold);
}

.frase-inspiradora {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-champagne);
    margin-bottom: 15px;
    line-height: 1.4;
}

.nome-assinatura {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.cargo-assinatura {
    font-size: 0.85rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-mim .btn {
    align-self: flex-start;
}

/* ─────────────── CONTATOS ─────────────── */
.contatos {
    background: var(--bg-primary);
    position: relative;
}

.titulo-contato {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
}

.subtitulo-contato {
    text-align: center;
    color: var(--text-body);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.contato-card {
    background: var(--bg-secondary);
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-champagne);
    border: 1px solid rgba(134, 101, 40, 0.2);
    box-shadow: var(--shadow-lux);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
    border-color: var(--accent-gold);
}

.contato-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contato-card:hover .contato-icon {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: scale(1.1);
}

.contato-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: var(--font-heading);
}

.contato-card p {
    font-size: 15px;
    color: var(--text-body);
    overflow-wrap: break-word;
}

.contato-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

.contato-card:hover::after {
    background: var(--accent-gold);
}

/* ─────────────── ATENDIMENTO ─────────────── */
.atendimento {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(134, 101, 40, 0.1);
}

.atendimento-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.atendimento-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.atendimento-info p {
    color: var(--text-body);
    max-width: 500px;
    font-size: 1.1rem;
}

.horarios {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(134, 101, 40, 0.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(134, 101, 40, 0.2);
    font-size: 1.05rem;
    color: var(--text-champagne);
}

.horario-item:last-child {
    border: none;
    padding-bottom: 0;
}

.horario-item span {
    color: var(--text-body);
}

/* ─────────────── WHATSAPP FLOAT ─────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    transition: var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37,211,102,0.5);
}

/* ─────────────── FOOTER ─────────────── */
.footer {
    background: #050505;
    color: var(--text-body);
    border-top: 1px solid rgba(134, 101, 40, 0.2);
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 25px;
    max-width: 350px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(134, 101, 40, 0.3);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--text-champagne);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-bottom a {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(134, 101, 40, 0.15);
    padding: 25px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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


/* ─────────────── RESPONSIVO ─────────────── */
@media (max-width: 992px) {
    .nav {
        padding-inline: 16px;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav .btn {
        display: none; /* Hide header button on mobile, floating button is available */
    }

    nav {
        display: none;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 10px;
        border-radius: 8px;
        border: 1px solid rgba(134, 101, 40, 0.2);
        order: 3;
    }

    nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        display: flex;
    }

    .hero h1 { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 420px;
    }

    .hero h1 { font-size: 2.8rem; }

    .busca {
        flex-direction: column;
        padding: 25px;
    }

    .busca select,
    .busca input,
    .busca button { min-width: 100%; }

    .sobre-grid,
    .atendimento-box {
        grid-template-columns: 1fr;
    }

    .sobre-imagem { order: -1; margin-bottom: 20px; }
    
    .sobre-titulo { font-size: 2.2rem; }
    
    .sobre-destaques { 
        grid-template-columns: 1fr; 
        padding: 20px; 
    }

    .contato-grid { grid-template-columns: 1fr; }

    .horario-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .modal {
        padding: 10px;
    }
    .modal-content {
        max-height: 98vh;
    }
    .modal-gallery {
        height: 280px;
    }
    .modal-body {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand .logo {
        margin: 0 auto 20px auto;
    }

    .footer-brand p {
        margin: 0 auto 25px auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 1200px) {
    .grid {
        padding-bottom: 60px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}