* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background-color: #050652;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 50px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -2;
    opacity: 0.35;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Cores neon e gradientes */
:root {
    --neon-cyan: #00F0FF;
    --neon-purple: #B026FF;
    --dark-bg: #05050F;
    --card-glass: #1414288c;
    --border-glow: #00f0ff4d;
}

/* scrollbar neon */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
    box-shadow: 0 0 6px var(--neon-cyan);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    background: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(95deg, var(--neon-cyan), #7A2EFF);
    color: #010101;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 22px rgba(0, 240, 255, 0.7);
    background: linear-gradient(95deg, #00FFFF, #9747FF);
}

.btn-outline-light {
    border: 1.5px solid rgba(0, 240, 255, 0.7);
    color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Header / Navbar */
.navbar {
    padding: 16px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
    margin-bottom: 20px;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 9, 20, 0.9);
    backdrop-filter: blur(10px);
}

header .container {
    width: 100%;
}

.logo{
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(130deg, #FFFFFF, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    font-family: 'Space Grotesk', monospace;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #CCD6F6;
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 4px cyan;
}

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--neon-cyan);
    cursor: pointer;
}

/* Hero section com shapes animados */
.hero {
    padding: 60px 0 100px;
    position: relative;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1.2;
    min-width: 280px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.12);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 0.5px solid rgba(0, 240, 255, 0.5);
    margin-bottom: 24px;
    color: var(--neon-cyan);
}

.hero-left h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #FFFFFF, #B0F0FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 28px;
}

.hero-left p {
    font-size: 1.1rem;
    color: #b9c7dd;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

.hero-right video{
    width: 100%;
    max-width: 100%;
    border-radius: 24px ;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3); 
}

.floating-card {
    background: rgba(12, 12, 28, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 38px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 28px 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 240, 255, 0.1);
    transition: 0.3s;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 240, 255, 0.2);
    padding: 16px 0;
}

.stat-label {
    font-weight: 500;
    color: #cddcff;
}

.stat-value {
    font-family: monospace;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

.glow-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

/* Seção de métricas / diferenciais */
.metrics {
    padding: 60px;
    border-top: 2px solid #00f0ff1a;
    border-bottom: 2px solid #00f0ff1a;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.metric-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFF, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric-card p {
    font-size: 0.9rem;
    color: #8595b1;
}

/* Seção de soluções em grade (cards) */
.solutions {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-sub {
    text-align: center;
    color: #8f9bb3;
    margin-bottom: 60px;
    font-size: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.sol-card {
    background: rgba(15, 15, 30, 0.65);
    backdrop-filter: blur(6px);
    border-radius: 32px;
    padding: 32px 24px;
    transition: all 0.25s;
    border: 3px solid rgba(0, 240, 255, 0.15);
}

.sol-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -15px rgba(0, 240, 255, 0.2);
}

.sol-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 24px;
}

.sol-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.sol-card p {
    color: #b7c5e0;
    line-height: 1.5;
}

/* Depoimentos em estilo tech */
.testimonials-neon {
    border-top: 2px solid #00f0ff4d;
    padding: 90px 0;
}

.testi-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testi-item {
    background: rgba(20, 20, 45, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 28px;
    max-width: 360px;
    border: 2px solid rgba(0, 240, 255, 0.2);
}

.testi-text {
    font-style: normal;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.5;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--neon-cyan), #6300b3);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CTA final */
.cta-final {
    padding: 90px 0;
    border-top: 2px solid rgba(0, 240, 255, 0.3);
    text-align: center;
}

.cta-glow {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(176, 38, 255, 0.05));
    border-radius: 64px;
    padding: 64px 32px;
    border: 2px solid rgba(0, 240, 255, 0.25);
}

.cta-final h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-final p {
    max-width: 500px;
    margin: 0 auto 32px;
    color: #b9c3db;
}

/* Footer */
footer {
    border-top: 2px solid rgba(0, 240, 255, 0.2);
    padding: 48px 0 32px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.social-links i {
    font-size: 1.4rem;
    margin-right: 18px;
    color: #8f9bb3;
    transition: 0.2s;
}

.social-links i:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 6px cyan;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    margin-left: 28px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.copyright {
    text-align: center;
    margin-top: 48px;
    font-size: 0.75rem;
    color: #5f6c84;
}

/* responsivo */

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    body {
        padding-top: 60px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(5, 5, 20, 0.9);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-radius: 24px;
        margin-top: 12px;
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .hero-left h1 {
        font-size: 2.5rem;
        text-align: start;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .cards-grid {
        justify-content: center;
    }

    .cta-glow h2 {
        text-align: left;
    }
}

@media (max-width: 450px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .metrics-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    /* Centraliza o conteúdo de cada card */
    .metric-card {
        text-align: center;
        padding: 20px;
        border-radius: 24px;
    }
}


/* CHAT FLUTUANTE - CORRIGIDO */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.6);
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: 75vh;
    background: rgba(15, 20, 40, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: fadeInUp 0.3s ease;
}

.chat-container.open {
    display: flex;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    padding: 14px 20px;
    background: rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    flex-shrink: 0;
}

.chat-header span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.chat-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-status {
    margin-left: auto;
    font-size: 0.7rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 4px 8px;
    border-radius: 20px;
    color: #10B981;
}

.chat-messages {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Barra de rolagem personalizada */
.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 240, 255, 0.1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
}

.message {
    display: flex;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.bot .message-bubble {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-bottom-left-radius: 4px;
    color: #e2e8f0;
}

.message.user .message-bubble {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #05050F;
    border-bottom-right-radius: 4px;
}

.chat-questions {
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    flex-shrink: 0;
    max-height: 200px;
    overflow-y: auto;
}

/* Barra de rolagem para as perguntas */
.chat-questions::-webkit-scrollbar {
    width: 4px;
}

.chat-questions::-webkit-scrollbar-track {
    background: rgba(0, 240, 255, 0.05);
    border-radius: 10px;
}

.chat-questions::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
}

.question-btn {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 10px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    color: #cbd5e1;
    font-family: inherit;
    width: 100%;
    margin-bottom: 8px;
}

.question-btn:last-child {
    margin-bottom: 0;
}

.question-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--neon-cyan);
    transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 500px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-container {
        width: 320px;
        height: 560px;
        max-height: 80vh;
        right: 0;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .chat-header img {
        width: 60px;
        height: 60px;
    }
}


/* ============================================ */
/* SEÇÃO DE PREÇOS / PLANOS (pricing-section)   */
/* ============================================ */

.pricing-section {
    margin: 80px 0;
    padding: 60px 0;
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

.pricing-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-section .section-title span {
    color: var(--neon-cyan);
}

.pricing-section .section-sub {
    text-align: center;
    color: var(--gray-muted, #8f9bb3);
    margin-bottom: 56px;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: rgba(10, 14, 28, 0.8);
    border-radius: 32px;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.pricing-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 240, 255, 0.2);
}

.pricing-card.popular {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
    position: relative;
}

.pricing-card.popular::before {
    content: "⭐ MAIS ESCOLHIDO";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(95deg, var(--neon-cyan), var(--neon-purple));
    color: #05050F;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 40px;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin: 20px 0;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-muted, #8f9bb3);
}

.plan-features {
    list-style: none;
    margin: 28px 0;
    text-align: left;
}

.plan-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.plan-features li i {
    color: var(--neon-cyan);
    width: 20px;
}

.btn-plan {
    background: transparent;
    border: 1.5px solid var(--neon-cyan);
    padding: 12px;
    border-radius: 60px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--neon-cyan);
    font-family: inherit;
}

.btn-plan:hover {
    background: var(--neon-cyan);
    color: #05050F;
    transform: translateY(-2px);
}

.btn-plan.emerald-btn {
    background: linear-gradient(95deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    color: #05050F;
}

.btn-plan.emerald-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* ============================================ */
/* RESPONSIVIDADE DA SEÇÃO DE PREÇOS             */
/* ============================================ */

/* Desktop médio / Tablet landscape (1024px) */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
}

/* Tablet / Telas médias (900px) */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-section {
        margin: 60px 0;
        padding: 50px 0;
    }
    
    .pricing-section .section-title {
        font-size: 2rem;
    }
}

/* Mobile landscape / Telas pequenas (600px) */
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .pricing-section {
        margin: 50px 0;
        padding: 40px 0;
    }
    
    .pricing-section .section-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .pricing-section .section-sub {
        font-size: 0.9rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .pricing-card.popular::before {
        font-size: 0.6rem;
        padding: 3px 12px;
        white-space: nowrap;
    }
    
    .plan-name {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.85rem;
    }
}

/* Mobile muito pequeno (400px) */
@media (max-width: 400px) {
    .pricing-card {
        padding: 28px 18px;
    }
    
    .pricing-card.popular::before {
        font-size: 0.55rem;
        padding: 2px 10px;
        top: -10px;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .plan-features li {
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .btn-plan {
        padding: 10px;
        font-size: 0.85rem;
    }
}


/* ============================================ */
/* SEÇÃO DE DIFERENCIAIS (differentiators)      */
/* ============================================ */

.differentiators {
    margin: 80px 0;
    padding: 60px 0;
    background: rgba(0, 240, 255, 0.02);
    border-radius: 60px;
}

.differentiators .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.differentiators .section-sub {
    text-align: center;
    color: #8f9bb3;
    margin-bottom: 56px;
    font-size: 1rem;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-content: center;
}

.diff-item {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-5px);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.08);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.diff-item:hover .diff-icon {
    background: rgba(0, 240, 255, 0.15);
    transform: scale(1.05);
}

.diff-icon.cyan {
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.diff-icon.emerald {
    color: #10B981;
    border: 2px solid #10B981;
}

.diff-icon.purple {
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
}

.diff-icon.amber {
    color: #F59E0B;
    border: 2px solid #F59E0B;
}

.diff-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.diff-item p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* ============================================ */
/* RESPONSIVIDADE DOS DIFERENCIAIS              */
/* ============================================ */

/* Tablet / Telas médias (900px) */
@media (max-width: 900px) {
    .differentiators {
        margin: 60px 0;
        padding: 50px 0;
    }
    
    .differentiators .section-title {
        font-size: 2rem;
    }
    
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Mobile landscape (600px) */
@media (max-width: 600px) {
    .differentiators {
        margin: 50px 0;
        padding: 40px 20px;
        border-radius: 40px;
    }
    
    .differentiators .section-title {
        font-size: 1.8rem;
    }
    
    .differentiators .section-sub {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .diff-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .diff-item h4 {
        font-size: 1.2rem;
    }
}

/* Mobile muito pequeno (400px) */
@media (max-width: 400px) {
    .differentiators {
        margin: 40px 0;
        padding: 30px 16px;
    }
    
    .differentiators .section-title {
        font-size: 1.6rem;
    }
    
    .diff-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 20px;
    }
    
    .diff-item p {
        font-size: 0.8rem;
    }
}

/* Seção de Serviços */
.services-section {
    padding: 80px 0;
    border-top: 2px solid #00f0ff4d;
}

.services-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-section .section-title span {
    color: var(--neon-cyan);
}

.services-section .section-sub {
    text-align: center;
    color: #8f9bb3;
    margin-bottom: 56px;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(15, 20, 41, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 36px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 35px -12px rgba(0, 240, 255, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.card-icon.cyan { color: var(--neon-cyan); }
.card-icon.emerald { color: #10B981; }
.card-icon.amber { color: #F59E0B; }
.card-icon.purple { color: #A855F7; }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-desc {
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 24px;
}

.service-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.feature-tag {
    background: rgba(0, 240, 255, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--neon-cyan);
}

.feature-tag.green {
    background: rgba(16, 185, 129, 0.1);
    color: #34D399;
}

.btn-service {
    width: 100%;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-service:hover {
    background: var(--neon-cyan);
    color: #05050F;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title {
        font-size: 1.8rem;
    }
}