/* ==========================================================================
   LANDING PAGE & DIRECTORY - PLATAFORMA DE AGENDAMENTOS
   Design System: Obsidian & Gold Luxury Theme
   ========================================================================== */

.landing-body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   LANDING NAVBAR
   ========================================================================== */

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
    transition: var(--transition-normal);
}

.landing-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.landing-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--accent-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07090e;
    font-size: 20px;
    box-shadow: var(--shadow-gold);
}

.landing-brand-text h1 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.landing-brand-text span {
    font-size: 0.74rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.landing-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.landing-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.landing-menu a:hover {
    color: var(--accent-gold-light);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.landing-hero {
    position: relative;
    padding: 100px 24px 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 860px;
    margin-bottom: 20px;
}

.hero-main-title .gradient-text {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 750px;
    width: 100%;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
}

.hero-stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold-light);
}

.hero-stat-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.landing-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge-center {
    text-align: center;
    margin-bottom: 12px;
}

.section-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    background: var(--accent-gold-subtle);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-center-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.section-center-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* ==========================================================================
   COMO FUNCIONA (STEPS 1-2-3)
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-box-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-box-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(229, 184, 66, 0.15);
    line-height: 1;
}

.step-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-lg);
    background: var(--accent-gold-subtle);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.step-box-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step-box-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   SOBRE NÓS & PARA QUE SERVE (FEATURE GRID)
   ========================================================================== */

.features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.feature-panel-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(16px);
}

.feature-panel-box.highlight {
    border-color: var(--border-gold);
    background: linear-gradient(145deg, rgba(22, 28, 40, 0.95) 0%, rgba(15, 19, 29, 0.85) 100%);
    box-shadow: var(--shadow-md);
}

.feature-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-gold-gradient);
    color: #07090e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.feature-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.feature-checklist li i {
    color: var(--accent-green);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   ESTABELECIMENTOS / EMPRESAS DIRECTORY
   ========================================================================== */

.directory-filter-bar {
    max-width: 600px;
    margin: 0 auto 36px auto;
    position: relative;
}

.directory-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-normal);
}

.directory-search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(229, 184, 66, 0.2);
    background: var(--bg-input-focus);
}

.directory-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.companies-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 26px;
}

.company-showcase-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

.company-showcase-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.company-card-cover {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.company-card-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 19, 29, 0.95) 0%, rgba(15, 19, 29, 0.2) 100%);
}

.company-card-body {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.company-card-avatar-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    margin-bottom: 6px;
}

.company-card-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid var(--bg-surface-elevated);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    background: var(--bg-surface);
}

.company-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
    font-size: 0.74rem;
    font-weight: 600;
}

.company-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.company-card-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.company-card-address {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.company-card-address i {
    color: var(--accent-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.company-card-footer {
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.company-link-slug-badge {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */

.landing-cta-banner {
    margin: 40px auto 80px auto;
    max-width: 1200px;
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(229, 184, 66, 0.15) 0%, rgba(15, 19, 29, 0.95) 70%);
    border: 1px solid var(--border-gold);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-gold);
}

.landing-cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.landing-cta-banner p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ==========================================================================
   PÁGINA: EMPRESA NÃO ENCONTRADA (NOT FOUND / 404)
   ========================================================================== */

.notfound-hero-box {
    max-width: 900px;
    margin: 40px auto 30px auto;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(26, 34, 51, 0.7) 0%, rgba(15, 19, 29, 0.95) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--accent-gold-glow);
    position: relative;
    overflow: hidden;
}

.notfound-hero-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(229, 184, 66, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.notfound-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--accent-gold-subtle);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 32px;
    box-shadow: var(--shadow-gold);
    animation: notfoundPulse 2.5s infinite ease-in-out;
}

@keyframes notfoundPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(229, 184, 66, 0.25); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(229, 184, 66, 0.45); }
}

.notfound-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.notfound-title .text-gold {
    color: var(--accent-gold);
}

.notfound-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.6;
}

.notfound-slug-pill {
    display: inline-block;
    background: rgba(229, 184, 66, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold-light);
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-family: monospace;
    font-weight: 700;
    word-break: break-all;
}

.notfound-search-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.search-counter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 8px;
}

.search-counter-text {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.search-counter-text strong {
    color: var(--accent-gold);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
    .hero-main-title { font-size: 2.4rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-two-col { grid-template-columns: 1fr; }
    .hero-stats-row { grid-template-columns: 1fr; }
    .landing-menu { display: none; }
    .notfound-title { font-size: 1.7rem; }
    .notfound-hero-box { padding: 32px 20px; }
}
