/* Reset and Base Styles */
:root {
    --bg-color: #030712;
    /* Very dark slate */
    --surface-color: rgba(17, 24, 39, 0.4);
    --surface-light: rgba(31, 41, 55, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(56, 189, 248, 0.15);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --primary-color: #0ea5e9;
    --primary-hover: #0284c7;
    --accent-color: #38bdf8;
    --success-color: #10b981;
    --warning-color: #f59e0b;

    --font-main: 'Outfit', sans-serif;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-reg: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

section[id],
footer[id],
#contact {
    scroll-margin-top: 120px;
}

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

ul {
    list-style: none;
}

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

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

.section-pad {
    padding: 6rem 0;
}

/* Background Effects */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.orb-2 {
    top: 40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4338ca 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.orb-3 {
    bottom: -10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-50px) translateX(20px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.text-success {
    color: var(--success-color);
}

.text-muted {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-reg);
    font-family: var(--font-main);
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Float WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.8);
    color: white;
}

/* Float Voltar ao Topo */
.scroll-top-float {
    position: fixed;
    bottom: 30px;
    right: 105px;
    width: 60px;
    height: 60px;
    background-color: var(--surface-light);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top-float.show {
    opacity: 0.6;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-float.show:hover {
    transform: translateY(-5px);
    opacity: 1;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 6px 20px rgba(14, 165, 233, 0.4);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-reg);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    margin: -40px 0;
    /* Compensa o espaço vazio em volta da logo */
}

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

.footer-logo {
    height: 200px;
    margin: -50px 0 -40px 0;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-reg);
}

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

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Glassmorphism Graphic Components */
.glass-perspective {
    position: relative;
    perspective: 1000px;
}

.glass-card {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px var(--glass-glow);
    overflow: hidden;
}

.hero-main-card {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-perspective:hover .hero-main-card {
    transform: rotateY(-5deg) rotateX(2deg);
}

.glass-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.mac-buttons {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.mac-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-buttons .close {
    background: #ff5f56;
}

.mac-buttons .minimize {
    background: #ffbd2e;
}

.mac-buttons .expand {
    background: #27c93f;
}

.glass-header .title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: inherit;
}

.glass-body.terminal {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.terminal p {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--accent-color);
    font-weight: bold;
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.status-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 1.25rem;
    transform: translateZ(50px);
    background: var(--surface-light);
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) translateZ(50px);
    }

    50% {
        transform: translateY(-15px) translateZ(50px);
    }
}

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

.status-icon i {
    font-size: 2rem;
    color: var(--success-color);
}

.status-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.status-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section Common & Services Section */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-reg);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(3, 7, 18, 0.75), rgba(17, 24, 39, 0.9)), var(--bg-img);
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: var(--transition-reg);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    background-image: linear-gradient(rgba(3, 7, 18, 0.6), rgba(14, 165, 233, 0.8)), var(--bg-img);
    transform: scale(1.05);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-reg);
}

.service-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: block;
    /* Garante comportamento correto como link clicável */
}

.portfolio-item:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(14, 165, 233, 0.25);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
}

.portfolio-overlay span {
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(3, 7, 18, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}

.status-badge.status-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.status-dev {
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-reg);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-card .desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 45px;
}

.features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.features i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.features i.text-muted {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testi-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 2.5rem;
}

.rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.quote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.author .avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author .name {
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    /* remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Banner Section */
.banner {
    padding: 4rem 0 8rem 0;
}

.banner-glass {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(17, 24, 39, 0.6));
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.banner-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.2), transparent 70%);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.banner-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact & Footer Section */
.contact-section {
    position: relative;
    top: -80px;
    margin-bottom: -40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-methods i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-muted);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

.footer {
    background: rgba(3, 7, 18, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0 0 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: -1.2rem 0 1.5rem 0 !important;
    max-width: none;
    white-space: nowrap;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    margin-top: 1.1rem;
}

.footer-social-section h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    margin-top: 1.1rem;
}

.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    justify-content: flex-start;
    gap: 0.4rem 1.5rem;
    list-style: none;
    padding: 0;
    margin-top: 0;
}

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

.footer-links ul li a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a::before {
    content: '›';
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.8rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .status-card {
        right: 0;
        bottom: -20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .navbar.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text {
        margin: 0 auto 2.5rem auto;
    }

    .hero-image {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .glass-perspective {
        width: 90%;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-brand p {
        margin: 0.6rem auto 1.5rem auto !important;
        white-space: normal;
    }

    .footer-links {
        align-items: center !important;
        text-align: center !important;
        margin-top: 0 !important;
    }

    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        justify-content: center;
        gap: 0.4rem 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-social-section {
        align-items: center !important;
        margin-top: 0 !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 80px;
    }
}

@media (max-width: 480px) {
    .section-pad {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .status-card {
        padding: 1rem;
        right: -10px;
    }

    .status-flex {
        gap: 0.5rem;
    }

    .status-card h4 {
        font-size: 0.85rem;
    }

    .banner-glass {
        padding: 2.5rem 1.5rem;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .contact-grid {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}