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

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --secondary-color: #00d4ff;
    --dark-bg: #0f1419;
    --dark-card: #1a1f2e;
    --dark-text: #ffffff;
    --light-text: #a8b2d1;
    --accent-purple: #7c3aed;
    --accent-pink: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --shadow: 0 10px 40px rgba(0, 102, 255, 0.08);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}

.navbar.navbar-scrolled {
    background: rgba(15, 20, 25, 0.95);
    border-bottom: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 0.65rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.25));
    transition: height 0.3s ease, filter 0.3s ease;
}

.navbar.navbar-scrolled .logo-image {
    height: 46px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.2));
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* About Section */
.sobre {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

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

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

.sobre-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.sobre-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.sobre-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.sobre-card p {
    color: var(--light-text);
}

/* Services Section */
.servicos {
    padding: 6rem 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

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

.servico-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.servico-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.servico-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1);
}

.servico-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.servico-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.servico-icon {
    font-size: 2.5rem;
}

.servico-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.servico-card p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.servico-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servico-benefits li {
    color: var(--light-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desenvolvimento Section */
.desenvolvimento {
    padding: 6rem 0;
    background: radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 45%);
}

.newprodesk-highlight {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.newprodesk-main-card,
.newprodesk-side-card {
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.14);
    padding: 2.2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.newprodesk-main-card:hover,
.newprodesk-side-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.newprodesk-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--secondary-color);
    border: 1px solid rgba(0, 212, 255, 0.28);
    background: rgba(0, 212, 255, 0.08);
}

.newprodesk-main-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newprodesk-main-card p,
.newprodesk-point p {
    color: var(--light-text);
}

.newprodesk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem;
}

.newprodesk-list li {
    color: var(--light-text);
    font-weight: 500;
}

.newprodesk-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newprodesk-proof {
    margin-top: 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.newprodesk-side-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.newprodesk-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newprodesk-point {
    border: 1px solid rgba(0, 102, 255, 0.14);
    border-radius: 10px;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.05);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.newprodesk-point:hover {
    border-color: rgba(0, 212, 255, 0.45);
    background: rgba(0, 212, 255, 0.08);
}

.newprodesk-point strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--dark-text);
}

/* Beneficios Section */
.beneficios {
    padding: 6rem 0;
}

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

.beneficio-item {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.beneficio-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
}

.beneficio-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.beneficio-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Clientes Section */
.clientes {
    padding: 6rem 0;
    background: radial-gradient(circle at 0% 100%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

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

.cliente-testimonial {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.cliente-testimonial:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.cliente-testimonial::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-purple));
}

.case-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.08);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonial-text {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.testimonial-author strong {
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.testimonial-author a {
    color: var(--light-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.testimonial-author a:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Contact Section */
.contato {
    padding: 6rem 0;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.info-icon {
    font-size: 1.5rem;
}

.info-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

.info-item a {
    color: var(--light-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.contato-form {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    background: rgba(0, 102, 255, 0.05);
    color: var(--dark-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.form-note {
    font-size: 0.85rem;
    color: var(--light-text);
    text-align: center;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section ul,
.footer-section a {
    color: var(--light-text);
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    color: var(--light-text);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(22, 163, 74, 0.42);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 42px;
    }

    .navbar.navbar-scrolled .logo-image {
        height: 38px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        right: 20px;
        width: min(300px, calc(100vw - 40px));
        background: rgba(26, 31, 46, 0.97);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 14px;
        backdrop-filter: blur(8px);
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.7rem;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: rgba(0, 212, 255, 0.08);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .servicos-grid,
    .sobre-grid,
    .beneficios-grid,
    .clientes-grid {
        grid-template-columns: 1fr;
    }

    .newprodesk-highlight {
        grid-template-columns: 1fr;
    }

    .newprodesk-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
    }

    .servico-card.featured {
        transform: scale(1);
    }

    .servico-card.featured:hover {
        transform: translateY(-15px);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 34px;
    }

    .navbar.navbar-scrolled .logo-image {
        height: 32px;
    }

    .nav-menu {
        top: 68px;
        right: 12px;
        width: calc(100vw - 24px);
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding: 0.72rem 0.9rem;
        font-size: 0.84rem;
    }
}
