/* Estilo Global e Variáveis de Design System Premium */
:root {
    --bg-dark: #070913;
    --bg-card: rgba(15, 23, 42, 0.65);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(16, 185, 129, 0.3);
    --text-primary: #F3F4F6;
    --text-muted: #9CA3AF;
    --emerald: #10B981;
    --emerald-glow: rgba(16, 185, 129, 0.25);
    --emerald-deep: #064E3B;
    --blue-glow: rgba(59, 130, 246, 0.2);
    --red-glow: rgba(239, 68, 68, 0.2);
    --orange-glow: rgba(245, 158, 11, 0.25);
    --amber: #F59E0B;
    --red: #EF4444;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset de Layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.bg-glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--emerald) 0%, rgba(0, 0, 0, 0) 70%);
}
.bg-glow-2 {
    top: 600px;
    left: -200px;
    background: radial-gradient(circle, #3B82F6 0%, rgba(0, 0, 0, 0) 70%);
}

/* Utilitários */
.text-emerald { color: var(--emerald); }
.text-underline { text-decoration: underline; }
.gradient-text {
    background: linear-gradient(135deg, #FFF 0%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--emerald);
    color: #0B0F19;
}
.btn-primary:hover {
    filter: brightness(1.15);
    box-shadow: 0 0 20px var(--emerald-glow);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}
.btn-glow-emerald {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 9, 19, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-card);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.nav-logo svg {
    stroke-width: 2.5px;
}
.nav-menu {
    display: flex;
    gap: 2rem;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-link:hover {
    color: #FFF;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFF;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 8rem 1.5rem 4rem 1.5rem;
    position: relative;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.pulse-green {
    background-color: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: p-green 1.5s infinite;
}
@keyframes p-green {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 800px;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Mockup de Interface do App */
.app-mockup {
    width: 100%;
    max-width: 1000px;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(16, 185, 129, 0.05);
    display: flex;
    flex-direction: column;
}
.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-card);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mockup-controls {
    display: flex;
    gap: 0.45rem;
}
.mockup-controls .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.mockup-controls .red { background-color: #EF4444; }
.mockup-controls .yellow { background-color: #F59E0B; }
.mockup-controls .green { background-color: #10B981; }
.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
}
.mockup-status-dot-container {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.mockup-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pulse-yellow {
    background-color: var(--amber);
    box-shadow: 0 0 6px var(--amber);
    animation: p-yellow 1.4s infinite;
}
@keyframes p-yellow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.mockup-body {
    display: flex;
    height: 520px;
}
.mockup-sidebar {
    width: 250px;
    background: rgba(15, 23, 42, 0.35);
    border-right: 1px solid var(--border-card);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}
.sidebar-item.active {
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.08);
}
.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}
.sidebar-group label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.mock-select, .mock-input {
    background: #111827;
    border: 1px solid var(--border-card);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-primary);
}
.mock-input {
    outline: none;
    margin-bottom: 0.4rem;
}
.sidebar-button-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mock-btn {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}
.mock-btn-success {
    background: var(--emerald-deep);
    color: var(--emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.mock-btn-primary {
    background: var(--emerald);
    color: #000;
}

.mockup-content {
    flex: 1;
    display: grid;
    grid-template-rows: 1.2fr 1fr;
    background: #030712;
}
.mockup-panel-top, .mockup-panel-bottom {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mockup-panel-top {
    border-bottom: 1px solid var(--border-card);
}
.panel-header {
    background: rgba(17, 24, 39, 0.9);
    padding: 0.45rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-card);
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-weight: 700;
}
.badge-green, .badge-spark, .badge-green-dot, .badge-red-dot {
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 700;
}
.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
}
.badge-spark {
    background: rgba(59, 130, 246, 0.15);
    color: #38BDF8;
}

/* Console interno */
.mockup-console {
    flex: 1;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.725rem;
    color: #34D399;
    overflow-y: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.c-line-repeat {
    color: #F59E0B;
    font-weight: 600;
}
.c-line.error {
    color: #F87171;
}

/* Tela de IA interna */
.mockup-ia {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    color: var(--text-primary);
    text-align: left;
}
.mockup-ia h3 {
    font-size: 0.9rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}
.mockup-ia p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}
.mockup-ia ul, .mockup-ia ol {
    padding-left: 1.2rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}
.mockup-ia li {
    margin-bottom: 0.25rem;
}
.ia-green {
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.12);
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    font-weight: 700;
}
.ia-red {
    color: var(--red);
    background: rgba(239, 68, 68, 0.12);
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    font-weight: 700;
}
.ia-orange {
    color: var(--amber);
    background: rgba(245, 158, 11, 0.12);
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    font-weight: 700;
}

/* Grid de Recursos (Features) */
.features-section {
    padding: 6rem 1.5rem;
    background: rgba(10, 15, 30, 0.3);
    position: relative;
    border-top: 1px solid var(--border-card);
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px -10px var(--emerald-glow);
    transform: translateY(-5px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 1.25rem;
}
.feature-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.75rem;
}
.feature-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Simulador Section (Demonstração) */
.demo-section {
    padding: 6rem 1.5rem;
    border-top: 1px solid var(--border-card);
}
.demo-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.demo-trigger {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.demo-trigger.active {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: var(--emerald);
    color: #FFF;
    box-shadow: 0 0 12px var(--emerald-glow);
}
.badge-green-dot {
    background-color: var(--emerald);
    width: 8px;
    height: 8px;
}
.badge-red-dot {
    background-color: var(--red);
    width: 8px;
    height: 8px;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Elementos do Simulador */
.demo-terminal-wrapper, .demo-diagnosis-wrapper {
    background: #030712;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 380px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
}
.terminal-head, .diagnosis-head {
    background: rgba(17, 24, 39, 0.95);
    padding: 0.65rem 1.25rem;
    border-bottom: 1px solid var(--border-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t-circles {
    display: flex;
    gap: 0.4rem;
}
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.t-red { background-color: var(--red); }
.t-yellow { background-color: var(--amber); }
.t-green { background-color: var(--emerald); }
.t-title {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-weight: 700;
}
.t-led-wrapper {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
}
.t-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.t-led.active-green-blinking {
    background-color: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: p-green 0.5s infinite ease-in-out;
}
.t-led.active-green-solid {
    background-color: var(--emerald);
    box-shadow: 0 0 6px var(--emerald);
}

.terminal-body-console {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.775rem;
    color: #34D399;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.console-placeholder {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 8rem;
    width: 100%;
}

.diagnosis-head {
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}
.diagnosis-body {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background: rgba(10, 15, 30, 0.1);
    color: var(--text-primary);
    text-align: left;
}
.diag-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    gap: 1rem;
    padding: 4rem 1.5rem;
}
.diag-placeholder p {
    font-size: 0.8rem;
    max-width: 300px;
    line-height: 1.5;
}
.icon-pulse {
    animation: p-icon 2s infinite ease-in-out;
}
@keyframes p-icon {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

/* Estilo do Relatório Gerado IA no Simulador */
.diag-report {
    animation: fadeIn 0.4s ease-out;
}
.diag-report h3 {
    font-size: 0.95rem;
    color: #FFF;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 0.4rem;
    margin-bottom: 0.75rem;
}
.diag-report p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.diag-report ul, .diag-report ol {
    padding-left: 1.25rem;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.diag-report li {
    margin-bottom: 0.35rem;
}

/* Dicas de Bancada */
.instructions-section {
    padding: 6rem 1.5rem;
    background: rgba(16, 185, 129, 0.02);
    border-top: 1px solid var(--border-card);
}
.instructions-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFF;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.instruction-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    text-align: left;
}
.instruction-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.instruction-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.5rem;
}
.instruction-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Créditos Section */
.credits-section {
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border-card);
}
.credits-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(8px);
}
.credits-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 1rem;
}
.credits-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.credits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 2rem;
}
.credits-item h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}
.credits-item p {
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
}
.credits-thanks h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.thanks-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}
.thanks-badges .badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFF;
}
.credits-link {
    margin-top: 1rem;
}

/* Download Section */
.download-section {
    padding: 6rem 1.5rem;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, rgba(7, 9, 19, 0) 60%);
    border-top: 1px solid var(--border-card);
}
.download-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.download-box h2 {
    font-size: 2.25rem;
    font-weight: 850;
    color: #FFF;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.download-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    background: #04060c;
    border-top: 1px solid var(--border-card);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade (Media Queries) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .instructions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0B0F19;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-card);
        text-align: center;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .mockup-body {
        flex-direction: column;
        height: auto;
    }
    .mockup-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-card);
    }
    .mockup-content {
        height: 600px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    .demo-controls {
        flex-direction: column;
        align-items: center;
    }
    .demo-trigger {
        width: 100%;
        max-width: 350px;
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .download-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .instructions-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
