/* --------------------------------------------------------------------------
   SYSTEM DESIGN & STYLESHEET - VÓRTICE DIGITAL
-------------------------------------------------------------------------- */

:root {
    --bg-dark: #07080a;
    --bg-card: rgba(22, 24, 28, 0.6);
    --bg-card-hover: rgba(30, 33, 38, 0.85);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-pure: #ffffff;
    --accent-silver: #e5e7eb;
    --accent-dark: #1f2937;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

/* Text Gradient & Accent Styles */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-pure) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Glow Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.bg-glow-1 {
    top: -200px;
    right: -100px;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.bg-glow-2 {
    bottom: -200px;
    left: -100px;
    animation: pulseGlow 18s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.15) translate(30px, 30px); opacity: 0.5; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-pure);
    color: var(--bg-dark);
    border: 1px solid var(--accent-pure);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-pure);
    box-shadow: 0 10px 25px -10px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(7, 8, 10, 0.9);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 52px;
    width: auto;
    filter: brightness(1.2);
    transition: var(--transition-smooth);
}

.main-header.scrolled .brand-logo {
    height: 44px;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-pure);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-pure);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background-color: var(--accent-pure);
    color: var(--bg-dark);
    border-color: var(--accent-pure);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-silver);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Hero Visual - Vortex Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vortex-visual-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.circle-1 {
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: rotateCW 35s linear infinite;
}

.circle-2 {
    width: 250px;
    height: 250px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    animation: rotateCCW 20s linear infinite;
}

.circle-3 {
    width: 180px;
    height: 180px;
    border-style: dotted;
    animation: rotateCW 15s linear infinite;
}

.visual-core {
    width: 120px;
    height: 120px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.visual-logo-center {
    width: 70%;
    height: auto;
    animation: floatLogo 4s ease-in-out infinite alternate;
}

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

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

@keyframes floatLogo {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-4px) scale(1.05); }
}

/* Sections Common Header */
.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Service Card Glassmorphic */
.service-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    font-size: 1.6rem;
    color: var(--accent-pure);
    margin-bottom: 28px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--accent-pure);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    z-index: 2;
}

.service-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
    flex-grow: 1;
    z-index: 2;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-silver);
    z-index: 2;
}

.card-link i {
    transition: transform 0.2s ease;
}

.service-card:hover .card-link {
    color: var(--accent-pure);
}

.service-card:hover .card-link i {
    transform: translateX(4px);
}

/* About Us Section */
.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card-stack {
    position: relative;
    width: 340px;
    height: 240px;
}

.stack-card {
    position: absolute;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.card-back {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.01);
    transform: translate(25px, -20px) rotate(4deg);
    opacity: 0.3;
}

.card-middle {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    transform: translate(12px, -10px) rotate(2deg);
    opacity: 0.6;
}

.card-front {
    width: 100%;
    height: 100%;
    background-color: #0f1115;
    border-color: rgba(255, 255, 255, 0.12);
    padding: 24px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.front-header {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.front-body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
}

.code-line {
    margin-bottom: 6px;
}

.code-line-indented {
    margin-left: 20px;
    margin-bottom: 6px;
}

.code-keyword { color: #9ca3af; font-weight: bold; }
.code-variable { color: #f3f4f6; }
.code-class { color: #ffffff; text-decoration: underline; }
.code-method { color: #e5e7eb; }
.code-property { color: #9ca3af; }
.code-string { color: #6b7280; }

.about-card-stack:hover .card-back {
    transform: translate(35px, -30px) rotate(6deg);
}

.about-card-stack:hover .card-middle {
    transform: translate(18px, -15px) rotate(3deg);
}

.about-card-stack:hover .card-front {
    border-color: rgba(255, 255, 255, 0.25);
}

.about-content .section-tagline {
    text-align: left;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content .section-desc {
    margin: 0 0 32px 0;
    text-align: left;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillars-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--accent-pure);
    flex-shrink: 0;
    margin-top: 4px;
}

.pillars-list-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.pillars-list-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tagline {
    text-align: left;
}

.contact-info .section-desc {
    margin: 0 0 40px 0;
    text-align: left;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-pure);
}

.info-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item a,
.info-item p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
}

.info-item a:hover {
    color: var(--accent-pure);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pure);
    background-color: rgba(255, 255, 255, 0.04);
}

.form-group select option {
    background-color: #0f1115;
    color: var(--text-primary);
}

.form-feedback {
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
    padding: 10px;
    border-radius: 4px;
}

.form-feedback.success {
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Footer */
.main-footer {
    border-top: 1px solid var(--border-color);
    background-color: #050608;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-area {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links,
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4,
.footer-socials h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-pure);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.social-icons a:hover {
    background-color: var(--accent-pure);
    color: var(--bg-dark);
    border-color: var(--accent-pure);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 40px;
    text-align: center;
}

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

/* Animations for Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Base Utility Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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

/* Projects Section */
.projects-section {
    position: relative;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.project-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.project-item.alt-layout {
    grid-template-columns: 0.9fr 1.1fr;
}

.project-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.project-desc-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.project-tech span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 4px;
    color: var(--accent-silver);
}

.btn-project {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Browser Mockup CSS */
.browser-mockup {
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
    transform: perspective(1000px) rotateY(1deg) rotateX(1deg);
}

.project-item:hover .browser-mockup {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9);
}

.project-item.alt-layout:hover .browser-mockup {
    transform: perspective(1000px) rotateY(2deg) rotateX(2deg) scale(1.02);
}

.browser-header {
    background-color: #1a1c20;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

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

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.browser-address {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.browser-body {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.browser-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 5s ease;
}

.project-item:hover .browser-body img {
    object-position: bottom;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .project-item,
    .project-item.alt-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .project-item.alt-layout .project-info {
        grid-row: 2;
    }
    
    .project-info {
        align-items: flex-start;
    }
    
    .about-content .section-tagline,
    .about-content .section-desc,
    .contact-info .section-tagline,
    .contact-info .section-desc {
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1100;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #0b0c0e;
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1050;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .btn-nav {
        width: 80%;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}
