/*
Theme Name: ScortBrasil Dark
Theme URI: https://scortbrasil.com
Author: Allan
Description: Tema dark profissional com níveis Estado > Cidade > Bairro
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2+
Text Domain: scortbrasil-dark
*/

:root {
    --accent: #ff1744;
    --accent-hover: #ff5252;
    --accent-glow: rgba(255, 23, 68, 0.4);
    --accent-subtle: rgba(255, 23, 68, 0.12);
    --bg-body: #0a0a0a;
    --bg-header: #0e0e0e;
    --bg-card: #141414;
    --bg-input: #1a1a1a;
    --bg-elevated: #1e1e1e;
    --border: #1e1e1e;
    --border-light: #252525;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-muted: #999;
    --text-dim: #666;
    --text-faint: #555;
    --green: #10b981;
    --purple: #a855f7;
    --gold: #ffc107;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-body);
    color: #e5e5e5;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--accent);
    padding: 6px 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    color: var(--accent);
    letter-spacing: -1px;
    white-space: nowrap;
}
.logo span { color: #fff; font-weight: 300; }

.search-wrapper {
    flex: 1;
    max-width: 640px;
    display: flex;
    background: var(--bg-input);
    border: 1px solid #333;
    border-radius: 10px;
    overflow: visible;
    transition: border-color 0.2s;
    position: relative;
}
.search-wrapper:focus-within { border-color: var(--accent); }

.search-wrapper input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    border-radius: 10px 0 0 10px;
}
.search-wrapper input::placeholder { color: var(--text-dim); }

.search-wrapper .btn-search {
    padding: 12px 24px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 0 10px 10px 0;
}
.search-wrapper .btn-search:hover { background: var(--accent-hover); }

/* Autocomplete Dropdown */
.autocomplete-results {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    z-index: 1000;
    max-height: 420px;
    overflow-y: auto;
}
.autocomplete-results.show { display: block; }

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #1e1e1e;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover,
.autocomplete-item.selected { background: rgba(255,255,255,0.05); }

.autocomplete-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.autocomplete-icon svg {
    width: 18px;
    height: 18px;
    stroke: #666;
}
.autocomplete-icon.type-estado svg { stroke: #10b981; }
.autocomplete-icon.type-cidade svg { stroke: #3b82f6; }
.autocomplete-icon.type-bairro svg { stroke: #8b5cf6; }
.autocomplete-icon.type-categoria svg { stroke: #f59e0b; }
.autocomplete-icon.type-servico svg { stroke: #ec4899; }
.autocomplete-icon.type-acompanhante svg { stroke: #ff1744; }

.autocomplete-content { flex: 1; min-width: 0; }
.autocomplete-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autocomplete-sublabel {
    font-size: 12px;
    color: #666;
}
.autocomplete-count {
    font-size: 11px;
    color: #888;
    background: #1e1e1e;
    padding: 3px 10px;
    border-radius: 10px;
}
.autocomplete-empty,
.autocomplete-loading {
    padding: 24px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.h-link {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}
.h-link:hover { color: #fff; background: var(--bg-input); }

.btn-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); background: var(--accent-hover); }

/* ===== MEGA NAV ===== */
.mega-nav {
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
}

.mega-nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-item:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nav-item.active { color: var(--accent); border-bottom-color: var(--accent); }

.nav-item .arrow { font-size: 10px; transition: transform 0.2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #161616;
    border: 1px solid var(--border-light);
    border-radius: 0 0 12px 12px;
    padding: 24px;
    min-width: 700px;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-item:hover .mega-dropdown { display: block; }

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-col h5 {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.mega-col a {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    padding: 5px 0;
    transition: color 0.2s;
}
.mega-col a:hover { color: #fff; }
.mega-col a .num { color: var(--text-faint); font-size: 12px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb-bar a { color: #888; text-decoration: none; transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--accent); }
.breadcrumb-bar .sep { color: #444; }
.breadcrumb-bar .current { color: #fff; font-weight: 500; }

/* ===== LOCATION HERO ===== */
.location-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 32px;
}

.location-hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.location-hero h1 span { color: var(--accent); }

.location-hero p {
    font-size: 15px;
    color: #888;
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title .line { flex: 1; height: 1px; background: #222; }

.region-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.region-tab {
    padding: 8px 18px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.region-tab:hover, .region-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ===== STATE GRID ===== */
.states-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 10px !important;
}

.state-card {
    background: #151515 !important;
    border: 1px solid #222 !important;
    border-radius: 10px !important;
    padding: 16px !important;
    text-decoration: none !important;
    transition: all 0.2s;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.state-card:hover {
    border-color: var(--accent);
    background: #1a1215;
    transform: translateY(-2px);
}

.state-flag {
    width: 40px;
    height: 28px;
    background: var(--bg-elevated);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.state-info { flex: 1; }
.state-info .name { font-size: 14px; color: #fff; font-weight: 500; }
.state-info .count { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

.state-arrow { color: #444; font-size: 16px; }

/* ===== CITIES GRID ===== */
.cities-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 12px !important;
}

.city-card {
    background: #151515 !important;
    border: 1px solid #222 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    text-decoration: none !important;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    display: block !important;
}
.city-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.city-card .city-name { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.city-card .city-state { font-size: 13px; color: #888; margin-bottom: 12px; }

.city-stats { display: flex; gap: 16px; }
.city-stat { font-size: 12px; color: var(--text-dim); }
.city-stat strong { color: var(--accent); font-size: 16px; display: block; }

.city-card .hot-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ===== BAIRROS GRID ===== */
.bairros-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 8px !important;
}

.bairro-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 16px !important;
    background: #151515 !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: all 0.2s;
}
.bairro-link:hover {
    background: #1a1215;
    border-color: var(--accent);
    color: #fff;
}
.bairro-link .b-count { color: var(--text-dim); font-size: 12px; }

/* ===== CONTENT AREA ===== */
.content-area {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: 24px !important;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 14px; }

.filter-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    overflow: hidden;
}

.filter-heading {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
}
.filter-heading span { color: var(--accent); font-size: 11px; cursor: pointer; }

.f-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: #bbb;
    cursor: pointer;
}
.f-option:hover { color: #fff; }
.f-option input { accent-color: var(--accent); width: 16px; height: 16px; }
.f-option .cnt { margin-left: auto; color: var(--text-faint); font-size: 12px; }

.price-row { 
    display: flex; 
    gap: 8px; 
    align-items: center;
    width: 100%;
}
.price-field {
    flex: 1;
    min-width: 0;
    max-width: calc(50% - 12px);
    padding: 10px;
    background: var(--bg-elevated);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    -moz-appearance: textfield;
}
.price-field::-webkit-outer-spin-button,
.price-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.price-field::placeholder { color: var(--text-faint); }
.price-field:focus { outline: none; border-color: var(--accent); }

.btn-apply {
    width: 100%;
    padding: 11px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.btn-apply:hover { background: var(--accent-hover); }

.nearby-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}
.nearby-box h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.nearby-link {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.nearby-link:hover { color: var(--accent); }
.nearby-link:last-child { border-bottom: none; }

/* Listings */
.listings { display: flex; flex-direction: column; gap: 14px; }

.listings-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.results-info { font-size: 14px; color: #888; }
.results-info strong { color: #fff; }
.sort-sel {
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: #ccc;
    font-size: 13px;
    cursor: pointer;
}

.cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 14px !important;
}

/* ===== CARD ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}
.card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card.is-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, #1a1214 0%, var(--bg-card) 100%);
}

.card-img {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}
.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}
.badge-featured { background: var(--accent); }
.badge-verified { background: var(--green); }
.badge-new { background: var(--purple); }
.badge-vip { background: var(--gold); color: #000; }

.card-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.card-fav:hover, .card-fav.active { background: var(--accent); }

.card-photos-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #fff;
}

.card-online {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(16,185,129,0.9);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-online::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.card-body { padding: 16px; }

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.card-name { font-size: 16px; font-weight: 600; color: #fff; }
.card-name a { color: inherit; text-decoration: none; }
.card-name a:hover { color: var(--accent); }
.card-loc { font-size: 12px; color: #888; margin-top: 3px; }
.card-price { font-size: 20px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.card-price small { font-size: 12px; color: #888; font-weight: 400; }

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 12px;
}
.card-tag {
    background: var(--bg-elevated);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: #bbb;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}
.pagination a, .pagination span {
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}
.pagination a:hover, .pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== SEO LINKS ===== */
.seo-links {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 24px;
    border-top: 1px solid var(--border);
}

.seo-links h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 20px; }

.seo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.seo-col h5 {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.seo-col a {
    display: block;
    color: #777;
    text-decoration: none;
    font-size: 12px;
    padding: 3px 0;
    transition: color 0.2s;
}
.seo-col a:hover { color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}
.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}
.footer-brand p { color: var(--text-dim); font-size: 13px; line-height: 1.7; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: #777; text-decoration: none; font-size: 13px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    max-width: 1440px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-faint);
}

/* ===== SINGLE PROFILE ===== */
.single-content { max-width: 1440px; margin: 0 auto; padding: 24px; }
.profile-grid { display: grid; grid-template-columns: 1fr 380px; gap: 30px; }

.profile-gallery { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.gallery-main { aspect-ratio: 3/4; max-height: 550px; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 4px; background: #0a0a0a; }
.gallery-thumbs img { aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: 0.5; transition: opacity 0.2s; border-radius: 4px; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; }

.profile-sidebar { display: flex; flex-direction: column; gap: 16px; }
.profile-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.profile-name { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.profile-location { display: flex; align-items: center; gap: 6px; color: #888; font-size: 14px; margin-bottom: 16px; }

.profile-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.profile-price { text-align: center; padding: 20px; background: var(--bg-input); border-radius: 10px; margin-bottom: 20px; }
.profile-price__value { font-size: 32px; font-weight: 700; color: var(--accent); }
.profile-price__label { font-size: 13px; color: var(--text-muted); }

.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.stat { text-align: center; }
.stat__value { font-size: 20px; font-weight: 700; color: #fff; }
.stat__label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

.profile-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-contact { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 10px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #128c7e; }
.btn-phone { background: var(--bg-input); color: #fff; border: 1px solid var(--border); }
.btn-phone:hover { border-color: var(--accent); color: var(--accent); }

.profile-details { margin-top: 8px; }
.profile-details h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); }
.detail-value { color: #fff; }

.profile-services h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.services-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { padding: 6px 14px; background: var(--accent-subtle); border: 1px solid var(--accent); border-radius: 20px; font-size: 13px; color: var(--accent); text-decoration: none; transition: all 0.2s; }
.service-tag:hover { background: var(--accent); color: #fff; }

.profile-description { margin-top: 30px; }
.profile-description h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.profile-description p { color: var(--text-secondary); line-height: 1.8; }

.related-section { margin-top: 50px; }
.related-section h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0e0e0e;
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.mobile-drawer-header .logo {
    font-size: 22px;
}

.mobile-close {
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-close:hover {
    background: var(--accent);
}

.mobile-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile User Actions */
.mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.mobile-user-link .user-icon {
    font-size: 18px;
}
.mobile-btn-outline {
    display: block;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
}
.mobile-cta {
    display: block;
    padding: 14px 16px;
    background: var(--accent);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 20px;
}
.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.mobile-nav-link:hover {
    color: var(--accent);
}
.mobile-arrow {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.mobile-nav-item.open .mobile-arrow {
    transform: rotate(90deg);
    color: var(--accent);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    padding-bottom: 16px;
}
.mobile-nav-item.open .mobile-submenu {
    display: block;
}
.mobile-submenu-section {
    margin-bottom: 16px;
}
.mobile-submenu-section:last-child {
    margin-bottom: 0;
}
.mobile-submenu-section h5 {
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-left: 12px;
}
.mobile-submenu-section a {
    display: block;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
}
.mobile-submenu-section a:hover {
    background: var(--bg-elevated);
    color: #fff;
}

/* Mobile Search */
.mobile-search {
    display: flex;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: visible;
    position: relative;
}
.mobile-search input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
}
.mobile-search input::placeholder {
    color: var(--text-faint);
}
.mobile-search input:focus {
    outline: none;
}
.mobile-search button {
    padding: 14px 18px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
}
.mobile-autocomplete-results {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
}
.mobile-autocomplete-results.show { display: block; }
.mobile-autocomplete-results .autocomplete-item { padding: 14px 16px; }

/* Body lock when menu open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .content-area { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .seo-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-dropdown { min-width: 500px; }
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-sidebar { order: -1; }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .hamburger { display: flex; }
    .mega-nav { display: none; }
    .header-main { 
        flex-wrap: wrap;
        gap: 12px;
    }
    .search-wrapper { 
        order: 3; 
        flex: 1 1 100%;
        max-width: 100%; 
        margin-top: 0; 
    }
    .search-wrapper select { display: none; }
    .header-actions { display: none; }
    .logo { font-size: 22px; }
    
    /* Grids */
    .states-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .seo-grid { grid-template-columns: repeat(2, 1fr); }
    .location-hero h1 { font-size: 22px; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .profile-stats { grid-template-columns: repeat(2, 1fr); }
    
    /* Top bar */
    .top-bar { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 576px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .bairros-grid { grid-template-columns: 1fr 1fr; }
}

/* Utilities */
.hidden { display: none !important; }
.mt-32 { margin-top: 32px; }

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}
.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.auth-header p {
    color: var(--text-muted);
}

.auth-form .form-group {
    margin-bottom: 20px;
}
.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"],
.auth-form input[type="number"],
.auth-form select,
.auth-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.2s;
}
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.auth-form input::placeholder { color: var(--text-faint); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 600px) {
    .form-row, .form-row-4 { grid-template-columns: 1fr; }
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}
.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 2px;
}
.checkbox-label a {
    color: var(--accent);
}
.forgot-link {
    font-size: 13px;
    color: var(--accent);
}

.form-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}
.form-message:not(:empty) { display: block; }
.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
}
.form-message.error {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit.btn-lg { padding: 16px; font-size: 16px; }

.btn-secondary {
    display: inline-block;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}
.auth-footer a { color: var(--accent); }

.auth-benefits {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: 12px;
}
.auth-benefits h3 {
    font-size: 14px;
    margin-bottom: 12px;
}
.auth-benefits ul { list-style: none; }
.auth-benefits li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
}

.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
}
.alert-error {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}
.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* ===== ANUNCIAR PAGE ===== */
.anunciar-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.anunciar-header {
    margin-bottom: 32px;
}
.anunciar-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}
.anunciar-header p { color: var(--text-muted); }

.plano-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.plano-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.fotos-limit {
    font-size: 13px;
    color: var(--text-muted);
}
.upgrade-link {
    font-size: 13px;
    color: var(--accent);
}

.anuncio-form .form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
.form-section h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}
.foto-slot {
    aspect-ratio: 3/4;
    background: var(--bg-elevated);
    border: 2px dashed var(--border-light);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.foto-slot.principal { border-color: var(--accent); }
.foto-slot.has-photo { border-style: solid; }
.foto-preview {
    flex: 1;
    position: relative;
}
.foto-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.foto-actions {
    padding: 8px;
    display: flex;
    gap: 6px;
    justify-content: center;
}
.foto-add {
    font-size: 11px;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
}
.foto-add input { display: none; }
.foto-add:hover { color: var(--accent); }
.foto-remove, .foto-main {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    font-size: 12px;
    cursor: pointer;
}
.foto-remove { background: var(--accent); color: #fff; }
.foto-main { background: var(--gold); color: #000; }
.foto-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}
.fotos-count {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-elevated);
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}
.checkbox-item:hover { background: var(--bg-input); }
.checkbox-item input {
    accent-color: var(--accent);
}

.form-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ===== DASHBOARD PAGE ===== */
.dashboard-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .dashboard-container { grid-template-columns: 1fr; }
    .dashboard-sidebar { order: 2; }
}

.dashboard-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.user-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.user-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}
.user-plano {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 12px;
    color: #fff;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dashboard-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.dashboard-nav .nav-item:hover {
    background: var(--bg-elevated);
    color: #fff;
}
.dashboard-nav .nav-item.active {
    background: var(--accent-subtle);
    color: var(--accent);
}
.dashboard-nav .icon { font-size: 16px; }

.btn-logout {
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-logout:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.dashboard-main {
    min-width: 0;
}

.dashboard-section {
    display: none;
}
.dashboard-section.active { display: block; }
.dashboard-section h1 {
    font-size: 24px;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-icon {
    font-size: 28px;
}
.stat-value {
    font-size: 24px;
    font-weight: 700;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.quick-actions {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.quick-actions h3 {
    font-size: 14px;
    margin-bottom: 16px;
}
.actions-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-action {
    padding: 12px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-action:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-action.is-online {
    border-color: var(--green);
    color: var(--green);
}
.btn-action .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}
.btn-action.is-online .status-dot {
    background: var(--green);
    animation: pulse 2s infinite;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.upgrade-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #1a1424 0%, #141418 100%);
    border: 1px solid var(--purple);
    border-radius: 12px;
}
.upgrade-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
}
.upgrade-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Anúncio Preview */
.anuncio-preview {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
}
@media (max-width: 600px) {
    .anuncio-preview { grid-template-columns: 1fr; }
}
.anuncio-thumb {
    width: 120px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-elevated);
}
.anuncio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 12px;
}
.anuncio-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.anuncio-location, .anuncio-price {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.anuncio-price { color: var(--accent); font-weight: 600; }
.anuncio-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
}
.anuncio-status {
    margin-top: 8px;
    font-size: 13px;
}
.status-badge {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
}
.status-publish { background: var(--green); color: #fff; }
.status-pending { background: var(--gold); color: #000; }
.status-draft { background: var(--text-dim); color: #fff; }
.anuncio-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-edit, .btn-view {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
}
.btn-edit {
    background: var(--accent);
    color: #fff;
}
.btn-view {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}

/* Planos Grid */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.plano-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}
.plano-card.popular {
    border-color: var(--purple);
}
.plano-card.current {
    border-color: var(--green);
}
.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--purple);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 12px;
}
.plano-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
}
.plano-header h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.plano-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.plano-price .currency {
    font-size: 16px;
    color: var(--text-muted);
}
.plano-price .amount {
    font-size: 36px;
    font-weight: 700;
}
.plano-price .period {
    font-size: 14px;
    color: var(--text-muted);
}
.plano-features {
    list-style: none;
    margin-bottom: 24px;
}
.plano-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.plano-features li:last-child { border-bottom: none; }
.plano-action {
    text-align: center;
}
.btn-assinar {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-assinar:hover { opacity: 0.9; transform: translateY(-2px); }
.current-label {
    display: block;
    color: var(--green);
    font-weight: 600;
}
.expires {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
.free-label {
    color: var(--text-muted);
    font-size: 14px;
}
.payment-info {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}
.payment-info p { margin: 4px 0; }

/* Config Form */
.config-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.config-form .form-group {
    margin-bottom: 20px;
}
.config-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}
.config-form input {
    width: 100%;
    padding: 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}
.config-form input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.config-form small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-faint);
}
.config-form hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}
.config-form h3 {
    font-size: 16px;
    margin-bottom: 16px;
}
