/* 
    INF01 - Elite Legal Consultants 2026 
    Concept: The Bespoke Suit
    Color Palette: Midnight Black, Slate Grey, Brushed Silver
*/

:root {
    --midnight: #050505;
    --slate: #0a0a0b;
    --charcoal: #121214;
    --brushed-silver: #a8a8a8;
    --gold: #c5a059;
    --gold-glow: rgba(197, 160, 89, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #888888;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--midnight);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.branding {
    font-family: 'Cinzel', serif;
}

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

/* --- Navigation --- */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 45px !important;
    max-height: 45px !important;
    width: auto !important;
    display: block !important;
    filter: drop-shadow(0 0 5px var(--gold-glow));
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--brushed-silver);
}

.lang-switch {
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-switch a.muted {
    opacity: 0.4;
}

/* --- Buttons --- */
.btn-primary-sm {
    background: linear-gradient(135deg, #333, #000);
    color: white !important;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem !important;
    border: 1px solid var(--brushed-silver);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    background: var(--midnight);
    color: var(--gold);
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.02);
    /* Neumorphism Dark */
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.6),
        -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.btn-primary:active {
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.6),
        inset -2px -2px 6px rgba(255, 255, 255, 0.03);
    transform: translateY(2px) scale(0.98);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--brushed-silver);
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    border: 1px solid var(--brushed-silver);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--brushed-silver);
    color: var(--midnight);
    transform: translateY(-3px);
}

.full-width {
    display: block;
    text-align: center;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 30%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.sub-heading {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.main-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-main);
}

.highlight {
    color: var(--gold);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns a {
    margin-right: 20px;
}

/* --- AI Feature Section --- */
.ia-feature {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--charcoal) 0%, var(--midnight) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.ai-module-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-card {
    background: #0d0d0f;
    /* Slightly lighter charcoal for Neumorphism visibility */
    border: 1px solid rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 2px;
    box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.6),
        -8px -8px 20px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.ai-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid var(--glass-border);
}



.ai-body {
    padding: 30px;
}

.ai-chat-demo {
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    overflow-y: auto;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.ai-chat-demo::-webkit-scrollbar {
    width: 4px;
}

.ai-chat-demo::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.message {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    max-width: 80%;
}

.message.bot {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    align-self: flex-start;
}

.message.user {
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid var(--glass-border);
    align-self: flex-end;
    color: var(--brushed-silver);
}

.ai-input input {
    flex: 1;
    background: #0d0d0f;
    border: 1px solid rgba(255, 255, 255, 0.01);
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    /* Deep Inset Neumorphism (Pressed effect) */
    box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.8),
        inset -4px -4px 10px rgba(255, 255, 255, 0.03);
}

.chip {
    background: var(--midnight);
    border: 1px solid rgba(197, 160, 89, 0.1);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5),
        -2px -2px 6px rgba(255, 255, 255, 0.02);
}

.chip:hover {
    background: var(--gold);
    color: var(--midnight);
    transform: translateY(-2px);
}

.chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ai-input {
    display: flex;
    gap: 10px;
}

.ai-input button {
    background: var(--midnight);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 0 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5),
        -2px -2px 6px rgba(255, 255, 255, 0.02);
}

.ai-input button:hover {
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.6),
        -3px -3px 8px rgba(255, 255, 255, 0.04);
    transform: scale(1.05) translateY(-2px);
}


.ai-footer {
    padding: 15px 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}

.ai-description h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--brushed-silver);
}

.ai-description p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--brushed-silver);
    margin-right: 15px;
}

/* --- Dashboard Preview --- */
.dashboard-preview {
    padding: 120px 0;
    background: var(--charcoal);
}

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

.dashboard-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.dashboard-mockup {
    background: var(--midnight);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.7),
        -8px -8px 20px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.mockup-header {
    background: #252527;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
}

.address-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 4px;
    color: var(--text-muted);
    font-family: monospace;
}

.mockup-content {
    height: 350px;
    display: grid;
    grid-template-columns: 80px 1fr;
    background: #111;
}

.sidebar {
    background: #0d0d0d;
    border-right: 1px solid var(--glass-border);
}



.table-mock {
    padding: 0 20px 20px;
    overflow-x: auto;
}

.mock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mock-table th {
    text-align: left;
    padding: 10px 5px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted) !important;
    font-size: 0.55rem !important;
    font-family: monospace !important;
    letter-spacing: 1px;
}

.mock-table td {
    padding: 12px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-muted) !important;
    font-size: 0.55rem !important;
    font-family: monospace !important;
}

.mock-table tr.new-row {
    animation: highlightRow 2s ease-out;
}

@keyframes highlightRow {
    0% {
        background: rgba(197, 160, 89, 0.2);
    }

    100% {
        background: transparent;
    }
}

.delete-btn {
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.8rem;
}

.animate-stat {
    opacity: 0;
    transform: translateY(20px);
}

.active .animate-stat {
    animation: fadeInUp 0.8s forwards;
}

.row-anim {
    opacity: 0;
    transform: translateX(-20px);
}

.active .row-anim {
    animation: slideInLeft 0.5s forwards;
}

.active .row-anim:nth-child(2) {
    animation-delay: 0.2s;
}

.active .row-anim:nth-child(3) {
    animation-delay: 0.4s;
}

.active .row-anim:nth-child(4) {
    animation-delay: 0.6s;
}

/* --- Scroll Motion Animations --- */
.revealed-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.revealed-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.revealed-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.revealed-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.revealed-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.revealed-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* --- Pricing Section --- */
.pricing {
    padding: 120px 0;
    background: var(--midnight);
}

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

.price-card {
    background: var(--midnight);
    padding: 50px;
    border-radius: 25px;
    /* Neumorphism */
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.6),
        -6px -6px 16px rgba(255, 255, 255, 0.08);
    /* Aumentada luz a 0.08 */
    border: 1px solid rgba(255, 255, 255, 0.01);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.price-card:hover,
.price-card:active,
.price-card:focus {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.7),
        -10px -10px 30px rgba(255, 255, 255, 0.15);
    /* Aumentada luz a 0.15 */
}

.price-card.special {
    background: linear-gradient(135deg, var(--slate) 0%, var(--charcoal) 100%);
    border-color: rgba(192, 192, 192, 0.3);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brushed-silver);
    color: var(--midnight);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--brushed-silver);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.package-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
}

.package-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.package-features i {
    color: var(--brushed-silver);
    margin-right: 10px;
}

.roadmap {
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-num {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--brushed-silver);
}

.step-text {
    font-size: 0.9rem;
}

.additional-costs {
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cost-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cost-item .val {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brushed-silver);
}

.disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- Footer --- */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: #050505;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--brushed-silver);
}

/* Responsive */


@media (max-width: 968px) {

    .ai-module-wrapper,
    .dashboard-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns a {
        margin-right: 0;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 35px !important;
    }

    .ai-description,
    .dashboard-info {
        text-align: center;
        order: -1;
    }

    .features-list li {
        justify-content: center;
    }

    .dashboard-mockup {
        width: 100%;
        overflow-x: hidden;
    }

    .mockup-content {
        height: auto;
        min-height: 400px;
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .mock-table {
        min-width: 600px;
    }

    .table-mock {
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .mockup-content {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 400px;
    }

    .sidebar {
        display: none;
    }

    .table-mock {
        padding: 10px;
    }

    .mock-table thead {
        display: none;
    }

    .mock-table tr {
        display: block;
        border: 1px solid var(--glass-border);
        margin-bottom: 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.01);
    }

    .mock-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: right;
        min-width: unset !important;
    }

    .mock-table {
        min-width: unset !important;
    }

    .mock-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--gold);
        text-transform: uppercase;
        font-size: 0.5rem;
        margin-right: 10px;
    }

    .mock-table td:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-card {
        padding: 40px 20px;
        text-align: center;
    }

    .card-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 15px;
    }

    .package-name {
        font-size: 1.3rem;
    }

    .ai-card {
        width: 100%;
    }
}

/* INF01 Sales Agent Styles */
.agent-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--midnight);
    color: var(--gold);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6),
        -5px -5px 15px rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.agent-bubble:hover {
    transform: scale(1.05) translateY(-5px);
    background: #0d0d0f;
}

.bubble-icon {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: var(--midnight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.bubble-text {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.agent-compact-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #0d0d0f;
    border-radius: 24px;
    z-index: 1001;
    display: none;
    /* Controlled by JS */
    flex-direction: column;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.8),
        -10px -10px 30px rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-compact-container.active {
    display: flex;
    animation: slideUp 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agent-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #4caf50;
    box-shadow: 0 0 10px #4caf50;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.agent-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.agent-msg {
    max-width: 85%;
    padding: 12px 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.agent-msg.bot {
    align-self: flex-start;
    background: #1a1a1c;
    color: var(--brushed-silver);
    border-radius: 4px 20px 20px 20px;
    border-left: 3px solid var(--gold);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4);
}

.agent-msg.bot.muted {
    font-style: italic;
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.4;
    }
}

.agent-msg.user {
    align-self: flex-end;
    background: var(--gold);
    color: var(--midnight);
    border-radius: 20px 4px 20px 20px;
    font-weight: 500;
}

.agent-input-area {
    padding: 20px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.agent-input-area input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.agent-input-area button {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--midnight);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agent-input-area button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--gold-glow);
}

@media (max-width: 480px) {
    .agent-compact-container {
        width: 100% !important;
        height: 100dvh !important;
        /* Use dynamic viewport height for mobile */
        bottom: 0 !important;
        right: 0 !important;
        top: 0 !important;
        left: 0 !important;
        border-radius: 0;
        z-index: 9999;
    }

    .agent-bubble {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
    }

    .bubble-text {
        font-size: 0.7rem;
    }
}
