/* 
   Variáveis e Reset (Premium Dark / Red Theme Baseado nas Referências)
*/
:root {
    --primary: #e11d48; /* Vermelho vibrante */
    --primary-hover: #be123c;
    --secondary: #1e293b;
    --bg-main: #020617; /* Fundo super escuro */
    --bg-alt: #0f172a; /* Painéis e cards escuros */
    --bg-light: #1e293b; /* Detalhes */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
    
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo, .dash-logo, .benefit-number {
    font-family: 'Syncopate', 'Inter', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografia e Títulos Genéricos */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    color: var(--primary);
}

/* 1. Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1.25rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* 2. Hero */
.hero {
    padding: 8rem 0 10rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--primary);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.headline span {
    color: var(--primary);
}

.subheadline {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-mockup {
    perspective: 1000px;
}

.mockup-window {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transform: rotateY(-12deg) rotateX(8deg) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1);
}

.mockup-header {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.url-bar {
    background: var(--bg-main);
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-grow: 1;
    text-align: center;
    letter-spacing: 1px;
}

.mockup-body {
    display: flex;
    height: 380px;
}

.mockup-sidebar {
    width: 25%;
    background: var(--bg-light);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.mockup-content {
    width: 75%;
    padding: 1.5rem;
}

.mockup-search-bar {
    height: 40px;
    background: var(--bg-main);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem 0 1rem;
}

.search-placeholder {
    color: var(--border);
    font-size: 0.75rem;
}

.search-btn-mock {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.mockup-card {
    background: var(--bg-main);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 0.75rem;
}

.mockup-img {
    height: 100px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.mockup-text-line {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 0.4rem;
}

.mockup-text-line.title { width: 85%; }
.mockup-text-line.price { width: 60%; background: var(--primary); opacity: 0.8;}


/* 3. Problema e Solução */
.solucao-section {
    padding: 8rem 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
}

.solucao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.solucao-card {
    padding: 4rem;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.solucao-card.solution {
    background: linear-gradient(145deg, var(--bg-light) 0%, rgba(225, 29, 72, 0.05) 100%);
    border-color: rgba(225, 29, 72, 0.2);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-wrapper.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.icon-wrapper.green {
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
}

.solucao-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: 1px;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.check-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--danger);
    font-weight: bold;
}

.solution .check-list li::before {
    content: "✓";
    color: var(--primary);
}


/* 4. Funcionalidades */
.features-section {
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-alt);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* 5. Dashboard Demo */
.demo-section {
    padding: 8rem 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.dashboard-ui {
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--bg-main);
    min-height: 550px;
}

.dash-sidebar {
    width: 260px;
    background: var(--bg-light);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 1.5rem;
}

.dash-logo {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    letter-spacing: 2px;
}

.dash-menu li {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dash-menu li:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}

.dash-menu li.active {
    background: var(--primary);
    color: white;
}

.badge-count {
    margin-left: auto;
    background: var(--bg-main);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.1);
}

.dash-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dash-header {
    background: var(--bg-main);
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title {
    font-weight: 600;
    color: white;
}

.avatar {
    width: 44px;
    height: 44px;
    background: rgba(225, 29, 72, 0.2);
    color: var(--primary);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Syncopate', sans-serif;
}
.red-text { color: var(--primary); }

.dash-content-area {
    padding: 0 2.5rem 2.5rem;
}

.dash-panel {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
}

.panel-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dash-panel h3 {
    font-size: 1rem;
    letter-spacing: 1px;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th, .dash-table td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-table td {
    font-size: 0.95rem;
}

.table-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: inline-block;
}

.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}


/* 6. Benefícios */
.benefits-section {
    padding: 8rem 0;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.benefit-number {
    font-size: 5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: -1.5rem;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-number {
    -webkit-text-stroke: 1px var(--primary);
    transform: translateX(10px);
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.7;
}


/* 7. Como Funciona */
.how-it-works-section {
    padding: 8rem 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    width: 280px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-main);
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}

.step-card h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-top: 40px;
    position: relative;
    z-index: 1;
}


/* 8. Tecnologia */
.tech-section {
    padding: 8rem 0;
}

.tech-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.tech-content h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.tech-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.tech-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-illustration {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(225, 29, 72, 0.3);
    animation: spin linear infinite;
}

.c1 { width: 100%; height: 100%; animation-duration: 30s; }
.c2 { width: 75%; height: 75%; animation-duration: 20s; animation-direction: reverse; border: 1px solid rgba(255,255,255,0.05); }
.c3 { width: 50%; height: 50%; background: rgba(225, 29, 72, 0.05); border: none; }

.cloud-icon {
    position: relative;
    z-index: 10;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.2);
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}


/* 9. CTA Final */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(225, 29, 72, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-main) 100%);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: var(--radius-lg);
    padding: 6rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}


/* 10. Footer */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 6rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ANIMATIONS ON SCROLL (CSS ONLY) */
@supports (animation-timeline: view()) {
    .reveal-on-scroll {
        /* This class can be applied to sections to trigger descendants */
    }

    .reveal-up {
        animation: revealUp linear forwards;
        animation-timeline: view();
        animation-range: entry 5% cover 25%;
    }

    .reveal-left {
        animation: revealLeft linear forwards;
        animation-timeline: view();
        animation-range: entry 5% cover 25%;
    }

    .reveal-right {
        animation: revealRight linear forwards;
        animation-timeline: view();
        animation-range: entry 5% cover 25%;
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Responsividade */
@media (max-width: 1024px) {
    .hero-container, .tech-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .subheadline {
        margin: 0 auto 3rem;
    }

    .dashboard-ui {
        flex-direction: column;
    }

    .dash-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dash-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .solucao-grid {
        grid-template-columns: 1fr;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .step-line {
        width: 1px;
        height: 60px;
        margin: 0;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
    }
    
    .dash-stats {
        grid-template-columns: 1fr;
    }

    .tech-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .dash-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .panel-header-flex {
        flex-direction: column;
        gap: 1rem;
    }
}
