/* Modern CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from Identity Manual */
    --primary-blue: #3DA8F4;
    --secondary-blue: #1F75C7;
    --dark-blue: #143E6F;
    --gray: #7E8794;
    --light-gray: #F4F7FA;
    --background-dark: #0A0B0F;
    --background-darker: #070810;

    /* Modern Color Palette */
    --accent-cyan: #00D4FF;
    --accent-purple: #7C3AED;
    --accent-green: #10B981;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A8B5;
    --text-muted: #6B7280;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3DA8F4 0%, #1F75C7 100%);
    --gradient-secondary: linear-gradient(135deg, #1F75C7 0%, #143E6F 100%);
    --gradient-accent: linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);
    --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(61, 168, 244, 0.15) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(31, 117, 199, 0.1) 0%, transparent 50%),
                     radial-gradient(circle at 40% 80%, rgba(20, 62, 111, 0.05) 0%, transparent 50%);

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 7rem 0;
    --container-padding: 0 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(61, 168, 244, 0.3);

    /* Borders */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.loader-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 11, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 11, 15, 0.95);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    display: inline-block;
    text-decoration: none;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover .logo {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

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

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

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

.btn-cta {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--primary-blue);
    background: rgba(61, 168, 244, 0.1);
}

.lang-separator {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 1rem;
        right: 4rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(61, 168, 244, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 168, 244, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 168, 244, 0.1) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 117, 199, 0.08) 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 62, 111, 0.05) 0%, transparent 70%);
    bottom: 20%;
    left: 50%;
    animation-delay: 6s;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 168, 244, 0.1);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-2px);
}

.hero-clients {
    opacity: 0.8;
}

.clients-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.client-logo {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.tech-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-tech {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    animation: floatTech 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(61, 168, 244, 0.1);
    border-color: rgba(61, 168, 244, 0.3);
}

.tech-card:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.tech-card:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.tech-card:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 2s; }
.tech-card:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 3s; }
.tech-card:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
.tech-card:nth-child(6) { top: 70%; right: 40%; animation-delay: 5s; }

.tech-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tech-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dashboard-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #FF5F56; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #27CA3F; }

.dashboard-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-content {
    padding: 1.5rem;
}

.chart-container {
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 100px;
}

.bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: var(--border);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 168, 244, 0.1);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Título menor para a seção de contato */
.contact-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Subtítulo menor para a seção de contato */
.contact-subtitle {
    font-size: 1.1rem;
}

/* Descrição menor para a seção de contato */
.contact-description p {
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.01);
}

.services-showcase {
    display: grid;
    gap: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Centralizar apenas o 4º elemento quando há exatamente 4 elementos */
.services-grid .service-card:nth-child(4):nth-last-child(1) {
    grid-column: 2;
    justify-self: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-5px);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.service-card .service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card .service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: rgba(61, 168, 244, 0.1);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 6px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: rgba(61, 168, 244, 0.2);
    border-color: rgba(61, 168, 244, 0.4);
    transform: translateY(-1px);
}

.more-services-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-more-services {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 168, 244, 0.3);
}

.btn-more-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 168, 244, 0.4);
    background: var(--gradient-secondary);
}

/* Services Page Styles */
.services-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--gradient-mesh);
    text-align: center;
    overflow: hidden;
}

.services-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.services-header .container {
    position: relative;
    z-index: 2;
}

.services-header-bg .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.services-header-bg .particle {
    position: absolute;
    background: rgba(61, 168, 244, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: floatServices 20s infinite linear;
}

@keyframes floatServices {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20%) scale(0);
    }
}

.all-services {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    z-index: 10;
}

.service-category-detailed {
    margin-bottom: 5rem;
}

.category-header-detailed {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header-detailed .category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-header-detailed .category-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cta-section {
    position: relative;
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.cta-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tech Stack Showcase */
.tech-stack-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Classe específica para a seção "Pioneirismo no Futuro da Tecnologia" - Layout 2x2 */
.tech-stack-showcase-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stack-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stack-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-5px);
}

.stack-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stack-header i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stack-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stack-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stack-item {
    background: rgba(61, 168, 244, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.stack-item:hover {
    background: rgba(61, 168, 244, 0.2);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .tech-stack-showcase {
        grid-template-columns: 1fr;
    }

    .tech-stack-showcase-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}


.particle {
    position: absolute;
    background: rgba(61, 168, 244, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 70%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 80%;
    animation-delay: 10s;
    animation-duration: 24s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 32%;
    animation-delay: 12s;
    animation-duration: 32s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 55%;
    animation-delay: 14s;
    animation-duration: 29s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 25%;
    animation-delay: 16s;
    animation-duration: 27s;
}

.particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 85%;
    animation-delay: 18s;
    animation-duration: 31s;
}

.particle:nth-child(11) {
    width: 3px;
    height: 3px;
    left: 15%;
    animation-delay: 1s;
    animation-duration: 23s;
}

.particle:nth-child(12) {
    width: 5px;
    height: 5px;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 25s;
}

.particle:nth-child(13) {
    width: 4px;
    height: 4px;
    left: 45%;
    animation-delay: 5s;
    animation-duration: 28s;
}

.particle:nth-child(14) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-delay: 7s;
    animation-duration: 30s;
}

.particle:nth-child(15) {
    width: 3px;
    height: 3px;
    left: 75%;
    animation-delay: 9s;
    animation-duration: 26s;
}

.particle:nth-child(16) {
    width: 5px;
    height: 5px;
    left: 35%;
    animation-delay: 11s;
    animation-duration: 24s;
}

.particle:nth-child(17) {
    width: 4px;
    height: 4px;
    left: 65%;
    animation-delay: 13s;
    animation-duration: 29s;
}

.particle:nth-child(18) {
    width: 7px;
    height: 7px;
    left: 50%;
    animation-delay: 15s;
    animation-duration: 27s;
}

.particle:nth-child(19) {
    width: 3px;
    height: 3px;
    left: 95%;
    animation-delay: 17s;
    animation-duration: 31s;
}

.particle:nth-child(20) {
    width: 6px;
    height: 6px;
    left: 5%;
    animation-delay: 19s;
    animation-duration: 33s;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(0);
    }
}

.service-category {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Centralizar apenas o 4º elemento quando há exatamente 4 elementos */
.service-items .service-item:nth-child(4):nth-last-child(1) {
    grid-column: 2;
    justify-self: center;
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(61, 168, 244, 0.2);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(61, 168, 244, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* Solutions Section */
.solutions {
    padding: var(--section-padding);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Centralizar apenas o 4º elemento quando há exatamente 4 elementos */
.solutions-grid .solution-card:nth-child(4):nth-last-child(1) {
    grid-column: 2;
    justify-self: center;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-5px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(61, 168, 244, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(61, 168, 244, 0.2);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.01);
}

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

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

/* Centralizar apenas o 4º elemento quando há exatamente 4 elementos */
.about-stats .stat-item:nth-child(4):nth-last-child(1) {
    grid-column: 2;
    justify-self: center;
}

.stat-item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tech-ecosystem {
    display: grid;
    gap: 2rem;
}

.tech-category h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    background: rgba(61, 168, 244, 0.1);
    color: var(--primary-blue);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(61, 168, 244, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(61, 168, 244, 0.2);
    transform: translateY(-2px);
}

/* Case Studies Section */
.case-studies {
    padding: var(--section-padding);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.case-study {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.case-study:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-5px);
}

.case-study.featured {
    background: rgba(61, 168, 244, 0.05);
    border-color: rgba(61, 168, 244, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.case-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.case-study:not(.featured) .case-title {
    font-size: 1.3rem;
}

.case-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-metrics .metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: var(--border);
}

.case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: var(--border);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.case-result {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
}

.result-label {
    font-weight: 600;
    color: var(--text-primary);
}

.result-value {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Dashboard Mock */
.dashboard-mock {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.mock-header {
    padding: 1rem;
    border-bottom: var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.mock-nav {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mock-content {
    padding: 1.5rem;
}

.mock-chart {
    height: 100px;
    background: rgba(61, 168, 244, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: chartPulse 3s ease-in-out infinite;
}

.mock-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mock-metric {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    position: relative;
    background: rgba(255, 255, 255, 0.01);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
}

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

.contact-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(61, 168, 244, 0.3);
    transform: translateY(-3px);
}

.option-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.option-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.option-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.option-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.option-link:hover {
    color: var(--accent-cyan);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: var(--border-radius);
}

.contact-stat .stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(61, 168, 244, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.contact-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

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

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

.form-group select option {
    background: var(--background-dark);
    color: var(--text-primary);
    padding: 0.5rem;
    border: none;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    position: relative;
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    justify-content: center;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message i {
    font-size: 1.1rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--background-darker);
    border-top: var(--border);
    position: relative;
    padding: 2rem 0 1.5rem;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.footer-content {
    margin-bottom: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo .logo {
    height: 60px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(61, 168, 244, 0.1);
    border-color: rgba(61, 168, 244, 0.3);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Centralizar apenas o 4º elemento quando há exatamente 4 elementos */
.footer-links .footer-column:nth-child(4):nth-last-child(1) {
    grid-column: 2;
    justify-self: center;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-blue);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.newsletter-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
}

.btn-newsletter {
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    border-top: var(--border);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes floatTech {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--final-height, 100%); }
}

@keyframes chartPulse {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stats .stat-item:nth-child(4):nth-last-child(1) {
        grid-column: 2;
        justify-self: center;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links .footer-column:nth-child(4):nth-last-child(1) {
        grid-column: 2;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 2rem;
        padding: 3rem 2rem;
        transition: left 0.3s ease;
        border-top: var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .hero-stats,
    .hero-buttons {
        justify-content: center;
    }

    .clients-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-showcase {
        gap: 2rem;
    }

    .service-category {
        padding: 2rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .service-items .service-item:nth-child(4):nth-last-child(1) {
        grid-column: 1;
        justify-self: stretch;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:nth-child(4):nth-last-child(1) {
        grid-column: 1;
        justify-self: stretch;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid .solution-card:nth-child(4):nth-last-child(1) {
        grid-column: 1;
        justify-self: stretch;
    }

    .tech-stack-showcase {
        grid-template-columns: 1fr;
    }

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

    .footer-links .footer-column:nth-child(4):nth-last-child(1) {
        grid-column: 1;
        justify-self: stretch;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-stats .stat-item:nth-last-child(1):nth-child(3),
    .about-stats .stat-item:nth-last-child(1):nth-child(4) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 250px;
    }

    .case-study.featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .contact-form-container {
        padding: 2rem;
    }

    .tech-card {
        padding: 1rem;
    }

    .dashboard-preview {
        width: 280px;
    }
}

/* Utility Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .contact {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .services,
    .solutions,
    .about,
    .case-studies {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Website Development Slider Section */
/* Hero Section - Fixed Header */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 100rem 0 4rem;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(61, 168, 244, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(61, 168, 244, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slidePatternMove 20s linear infinite;
}

.hero-section .orb-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(61, 168, 244, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section .orb-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(31, 117, 199, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Slides Section */
.slides-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(61, 168, 244, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(61, 168, 244, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slidePatternMove 20s linear infinite;
}

@keyframes slidePatternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.orb-slide-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(61, 168, 244, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.orb-slide-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(31, 117, 199, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Slider Container */
.slider-container {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 400%; /* 4 slides = 400% */
}

.slide {
    width: 25%; /* cada slide ocupa 1/4 da largura total */
    flex-shrink: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Hero container for slide 1 */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.slide-text {
    max-width: 600px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0 1.5rem 0;
    color: var(--text-primary);
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(61, 168, 244, 0.05);
    border: 1px solid rgba(61, 168, 244, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-2px);
    background: rgba(61, 168, 244, 0.1);
    border-color: rgba(61, 168, 244, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.slide-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(61, 168, 244, 0.05);
    border-color: rgba(61, 168, 244, 0.1);
}

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.slide-cta {
    margin-top: 2.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: center;
}

.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.website-mockup {
    position: relative;
    max-width: 400px;
    max-height: 300px;
    width: 100%;
}

.mockup-browser {
    background: var(--background-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.mockup-browser:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.browser-header {
    background: var(--background-darker);
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #FF5F57; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #28CA42; }

.browser-url {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
}

.browser-content {
    padding: 1rem;
    min-height: 80px;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-darker) 100%);
}

.mockup-section {
    margin-bottom: 0.5rem;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-logo {
    width: 60px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.mockup-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    width: 50px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.hero-section {
    text-align: center;
    padding: 10rem 0;
}

.mockup-title {
    width: 80%;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    margin: 0 auto 1rem auto;
}

.mockup-subtitle {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 auto 1.5rem auto;
}

.mockup-cta {
    width: 120px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 6px;
    margin: 0 auto;
}

/* Removido - conflitava com features-section da página de sites */

.feature-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.success-indicators {
    position: absolute;
    top: -20px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    background: var(--background-dark);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(61, 168, 244, 0.2);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

.indicator:nth-child(2) {
    animation-delay: 1s;
}

.indicator:nth-child(3) {
    animation-delay: 2s;
}

.indicator i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.indicator span {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive Design for Slide Section */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .success-indicators {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }

    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .website-development-slide {
        padding: 4rem 0;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-benefits {
        grid-template-columns: 1fr;
    }

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

    .mockup-browser {
        transform: none;
    }

    .success-indicators {
        flex-direction: column;
        align-items: center;
    }

    /* Removido - conflitava com features-section da página de sites */
}

/* Desenvolvimento Sites Page Styles */
.hero-sites {
    position: relative;
    padding: 8rem 0 6rem 0;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    overflow: hidden;
    min-height: 80vh;
}

.hero-visual-sites {
    display: flex;
    justify-content: center;
    align-items: center;
}

.transformation-showcase {
    max-width: 600px;
    width: 100%;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

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

.example-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.old-website, .new-website {
    background: var(--background-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 200px;
}

.old-website {
    border-color: rgba(255, 99, 99, 0.3);
}

.new-website {
    border-color: rgba(61, 168, 244, 0.3);
    background: linear-gradient(135deg, var(--background-dark) 0%, rgba(61, 168, 244, 0.05) 100%);
}

.old-header, .new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.old-logo, .new-logo {
    width: 40px;
    height: 12px;
    border-radius: 4px;
}

.old-logo {
    background: rgba(255, 99, 99, 0.5);
}

.new-logo {
    background: var(--gradient-primary);
}

.old-nav, .new-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 20px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.old-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.old-content::before {
    content: '⏰ CARREGANDO...';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 0.6rem;
    color: rgba(255, 99, 99, 0.7);
    background: rgba(255, 99, 99, 0.05);
    padding: 2px 4px;
    border-radius: 2px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.old-text {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.3) 0%, rgba(255, 99, 99, 0.15) 50%, rgba(139, 69, 19, 0.3) 100%);
    border-radius: 2px;
    position: relative;
    border: 1px solid rgba(255, 99, 99, 0.1);
}

.old-text:nth-child(2)::after {
    content: 'Título desalinhado sem SEO';
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 0.55rem;
    color: rgba(255, 99, 99, 0.6);
    white-space: nowrap;
}

.old-text:nth-child(3) {
    width: 85%;
    opacity: 0.7;
}

.old-text:nth-child(3)::after {
    content: 'Texto desorganizado';
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 0.55rem;
    color: rgba(255, 99, 99, 0.6);
    white-space: nowrap;
}

.old-image {
    width: 100%;
    height: 45px;
    background:
        linear-gradient(45deg, rgba(139, 69, 19, 0.2) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(139, 69, 19, 0.2) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(139, 69, 19, 0.2) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(139, 69, 19, 0.2) 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    border: 1px dashed rgba(255, 99, 99, 0.3);
    border-radius: 4px;
    position: relative;
}

.old-image::after {
    content: '📷 Imagem quebrada/lenta';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    color: rgba(255, 99, 99, 0.7);
    background: rgba(255, 99, 99, 0.05);
    padding: 2px 4px;
    border-radius: 2px;
    white-space: nowrap;
}

.old-image::before {
    content: '💢 404 ERROR';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.5rem;
    color: #ff6363;
    background: rgba(255, 99, 99, 0.1);
    padding: 1px 3px;
    border-radius: 2px;
}

.new-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.new-content::before {
    content: '⚡ ULTRA RÁPIDO';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 0.6rem;
    color: var(--primary-blue);
    background: rgba(61, 168, 244, 0.1);
    padding: 2px 4px;
    border-radius: 2px;
    border: 1px solid rgba(61, 168, 244, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(61, 168, 244, 0.2); }
    to { box-shadow: 0 0 10px rgba(61, 168, 244, 0.4); }
}

.new-hero {
    text-align: center;
    padding: 1rem 0;
}

.new-title {
    width: 80%;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    margin: 0 auto 0.5rem auto;
}

.new-subtitle {
    width: 60%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto 1rem auto;
}

.new-cta {
    width: 80px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 0 auto;
}

.new-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.feature-card-mini {
    height: 40px;
    background: rgba(61, 168, 244, 0.1);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 4px;
}

.arrow-transformation {
    color: var(--primary-blue);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.performance-indicator.bad {
    background: rgba(255, 99, 99, 0.1);
    color: #ff6363;
    border: 1px solid rgba(255, 99, 99, 0.2);
}

.performance-indicator.good {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
}

.urgency-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 99, 99, 0.05);
    border: 1px solid rgba(255, 99, 99, 0.1);
    border-radius: var(--border-radius);
}

.urgency-stat .stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.urgency-stat .stat-content {
    flex: 1;
}

.urgency-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6363;
    display: block;
    margin-bottom: 0.25rem;
}

.urgency-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Crisis Section */
.crisis-section {
    background: linear-gradient(135deg, rgba(255, 99, 99, 0.1) 0%, var(--background-dark) 100%);
    padding: 6rem 0;
}

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

.crisis-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.danger-text {
    color: #ff6363;
}

.crisis-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.crisis-problems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 99, 99, 0.05);
    border: 1px solid rgba(255, 99, 99, 0.1);
    border-radius: var(--border-radius);
}

.problem-icon {
    color: #ff6363;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.problem-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.problem-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.money-loss-calculator {
    background: var(--background-darker);
    border: 1px solid rgba(255, 99, 99, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.calculator-content h3 {
    color: #ff6363;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.loss-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.loss-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 99, 99, 0.1);
    border-radius: var(--border-radius);
}

.business-type {
    font-weight: 600;
    color: var(--text-primary);
}

.loss-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6363;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.solution-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(61, 168, 244, 0.02);
    border: 1px solid rgba(61, 168, 244, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(61, 168, 244, 0.05);
    border-color: rgba(61, 168, 244, 0.2);
    transform: translateY(-2px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    text-align: center !important;
    display: block !important;
}

.features-section .container {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-section .section-header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.features-section .section-title {
    text-align: center !important;
}

/* Força absoluta para centralização da seção features */
.features-section,
.features-section *,
.features-section .container,
.features-section .section-header,
.features-section .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.features-section {
    width: 100% !important;
    max-width: none !important;
}

.features-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-benefit {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.feature-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-benefit:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(61, 168, 244, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 168, 244, 0.1);
}

.feature-benefit:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-benefit:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon i {
    position: relative;
    z-index: 2;
}

.benefit-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 1 !important;
    gap: 0.5rem !important;
    width: 100% !important;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Força absoluta para altura igual de todas as boxes */
.features-checklist .feature-benefit,
.features-section .feature-benefit,
div.feature-benefit,
.feature-benefit,
[class*="feature-benefit"],
div[class*="feature-benefit"] {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* Success Cases */
.success-cases {
    padding: 6rem 0;
    background: var(--background-dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    background: rgba(61, 168, 244, 0.02);
    border-color: rgba(61, 168, 244, 0.1);
}

.case-visual {
    padding: 1.5rem;
    background: var(--background-darker);
}

.case-mockup {
    background: var(--background-dark);
    border-radius: 8px;
    overflow: hidden;
    transform: perspective(500px) rotateX(10deg);
}

.mockup-screen {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-darker) 100%);
    padding: 1rem;
    min-height: 120px;
}

.screen-header {
    height: 8px;
    background: rgba(61, 168, 244, 0.3);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content-block {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.content-cta {
    width: 60px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 0 auto;
}

.case-content {
    padding: 1.5rem;
}

.case-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.case-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: rgba(61, 168, 244, 0.05);
    border-radius: 8px;
}

.result-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Investment Section */
.investment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
}

.investment-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.comparison-item {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.comparison-item.losing {
    background: rgba(255, 99, 99, 0.05);
    border: 1px solid rgba(255, 99, 99, 0.2);
}

.comparison-item.winning {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-item h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comparison-costs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.cost-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cost-value {
    font-weight: 600;
}

.cost-value.negative {
    color: #ff6363;
}

.cost-value.positive {
    color: #10b981;
}

.vs-divider {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roi-calculator {
    background: var(--background-darker);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.calculator-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.calc-example {
    padding: 1.5rem;
    background: rgba(61, 168, 244, 0.05);
    border-radius: var(--border-radius);
}

.example-scenario h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.example-math {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.example-math span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Sites Section */
.contact-sites {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 99, 99, 0.1) 0%, var(--background-dark) 100%);
}

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

.contact-urgency {
    background: var(--background-darker);
    border: 1px solid rgba(255, 99, 99, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.urgency-header h2 {
    color: #ff6363;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.urgency-timer {
    margin: 1.5rem 0;
    text-align: center;
}

.timer-label {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-unit {
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: var(--border-radius);
    min-width: 60px;
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.timer-unit .timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.special-offer {
    margin-top: 2rem;
}

.special-offer h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.offer-item i {
    color: var(--accent-green);
}

.contact-form-sites {
    background: var(--background-darker);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.form-header h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.btn-cta-main {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.form-guarantees {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.guarantee-item i {
    color: var(--accent-green);
}

/* Responsive Design for Sites Page */
@media (max-width: 1024px) {
    .before-after {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .arrow-transformation {
        transform: rotate(90deg);
    }

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

    .crisis-problems {
        grid-template-columns: 1fr;
    }

    .solution-process {
        grid-template-columns: 1fr;
    }

    .features-checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .features-checklist .feature-benefit,
    .features-section .feature-benefit,
    div.feature-benefit {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .investment-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vs-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-sites {
        padding: 6rem 0 4rem 0;
    }

    .crisis-title {
        font-size: 2rem;
    }

    .loss-examples {
        grid-template-columns: 1fr;
    }

    .calculator-examples {
        grid-template-columns: 1fr;
    }

    .timer-display {
        gap: 0.5rem;
    }

    .features-checklist {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .features-checklist .feature-benefit,
    .features-section .feature-benefit,
    div.feature-benefit {
        padding: 1.5rem 1rem;
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .timer-unit {
        min-width: 50px;
        padding: 0.75rem;
    }

    .form-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .new-features {
        grid-template-columns: 1fr;
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(61, 168, 244, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 50%;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-btn:hover {
    background: rgba(61, 168, 244, 0.2);
    border-color: rgba(61, 168, 244, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(61, 168, 244, 0.3);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(61, 168, 244, 0.2);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Additional Slider Elements */
.business-impact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(61, 168, 244, 0.02);
    border: 1px solid rgba(61, 168, 244, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(61, 168, 244, 0.05);
    border-color: rgba(61, 168, 244, 0.2);
    transform: translateY(-2px);
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.impact-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.impact-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Transformation Showcase (Slide 2) */
.transformation-showcase {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.transformation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.transformation-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.transformation-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.9;
}

.before-after-devices {
    width: 100%;
}

.device-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.before-device, .after-device {
    text-align: center;
}

.device-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.red {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.status-indicator.green {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.device-frame.laptop {
    width: 280px;
    height: 180px;
    background: #1f2937;
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 0 8px;
    margin: 0 auto 1rem auto;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.device-frame.laptop::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 8px;
    background: #374151;
    border-radius: 0 0 20px 20px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #111827;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

/* Old Website Styling */
.old-website {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f1f1f 0%, #0f0f0f 100%);
}

.old-header-bar, .new-header-bar {
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.url-bar {
    flex: 1;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.old-content-area, .new-content-area {
    padding: 12px;
    height: calc(100% - 24px);
}

.old-banner.broken {
    height: 40px;
    background: linear-gradient(45deg, #dc2626 0%, #991b1b 100%);
    border: 1px dashed #ef4444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    animation: errorBlink 2s ease-in-out infinite;
}

.loading-error {
    font-size: 0.6rem;
    color: white;
    font-weight: 600;
}

@keyframes errorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.old-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.text-block {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    animation: loadingSlow 3s ease-in-out infinite;
}

.text-block.short {
    width: 60%;
}

@keyframes loadingSlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.old-sidebar {
    display: flex;
    gap: 4px;
}

.widget.broken {
    width: 32px;
    height: 20px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 2px;
    position: relative;
}

.widget.broken::after {
    content: '❌';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
}

/* New Website Styling */
.new-website {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.new-hero {
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    margin-bottom: 8px;
    animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
}

.new-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.new-hero .hero-title {
    height: 12px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.8) 0%, rgba(124, 58, 237, 0.6) 100%);
    border-radius: 2px;
    width: 80%;
}

.new-hero .hero-subtitle {
    height: 6px;
    background: rgba(156, 163, 175, 0.6);
    border-radius: 2px;
    width: 60%;
}

.cta-button {
    height: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 4px;
    color: white;
    font-size: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    animation: ctaPulse 2s ease-in-out infinite;
    width: 80%;
    margin-top: 2px;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.new-hero .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-icon {
    font-size: 1.2rem;
    animation: chartGrow 2s ease-in-out infinite;
}

@keyframes chartGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.new-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.feature-card {
    height: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    animation: featureGlow 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.feature-card:nth-child(1) { --delay: 0s; }
.feature-card:nth-child(2) { --delay: 0.5s; }
.feature-card:nth-child(3) { --delay: 1s; }

@keyframes featureGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.4); }
}

/* Metrics */
.metrics-bad, .metrics-good {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.metric {
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    min-width: 80px;
    border: 1px solid;
}

.metrics-bad .metric {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.metrics-good .metric {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.metric .number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metrics-bad .number {
    color: #ef4444;
}

.metrics-good .number {
    color: #10b981;
}

.metric .label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Transformation Arrow */
.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arrow-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4); }
}

.arrow-label {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
}

/* Transformation Results */
.transformation-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.result-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.result-card:nth-child(1) .result-icon { --delay: 0s; }
.result-card:nth-child(2) .result-icon { --delay: 0.5s; }
.result-card:nth-child(3) .result-icon { --delay: 1s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.result-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .device-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .transformation-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .arrow-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .transformation-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .device-frame.laptop {
        width: 240px;
        height: 150px;
    }

    .device-frame.laptop::after {
        width: 280px;
    }
}




/* Performance Highlights (Slide 3) */
.performance-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card.main {
    background: linear-gradient(135deg, rgba(61, 168, 244, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(61, 168, 244, 0.3);
    transform: scale(1.02);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.highlight-value {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-card.main .highlight-value {
    font-size: 3rem;
}

.highlight-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.highlight-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.7;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-grid .highlight-card {
    padding: 1.5rem 1rem;
    min-height: auto;
}

.highlight-grid .highlight-value {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.highlight-grid .highlight-label {
    font-size: 1rem;
    margin-bottom: 0;
}

.executive-dashboard {
    background: var(--background-darker);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    background: linear-gradient(135deg, rgba(61, 168, 244, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.dashboard-title p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-content {
    padding: 1.5rem;
}

.revenue-chart {
    margin-bottom: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0;
}

.chart-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 600;
}

.chart-trend i {
    animation: trendUp 2s ease-in-out infinite;
}

@keyframes trendUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.chart-visualization {
    position: relative;
    height: 120px;
    margin-bottom: 1rem;
}

.chart-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    position: relative;
}

.data-point {
    width: 8px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    transition: all 0.6s ease;
    position: relative;
    animation: chartGrow 2s ease-out;
    animation-delay: calc(var(--index, 0) * 0.2s);
}

.data-point:nth-child(1) { height: 45%; --index: 0; }
.data-point:nth-child(2) { height: 52%; --index: 1; }
.data-point:nth-child(3) { height: 48%; --index: 2; }
.data-point:nth-child(4) { height: 65%; --index: 3; }
.data-point:nth-child(5) { height: 72%; --index: 4; }
.data-point:nth-child(6) { height: 85%; --index: 5; }
.data-point:nth-child(7) { height: 95%; --index: 6; }

@keyframes chartGrow {
    0% { height: 0; opacity: 0; }
    100% { opacity: 1; }
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 25%
        );
    pointer-events: none;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.kpi-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.kpi-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    display: block;
}

.kpi-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Success Stories Showcase (Slide 4) */
.success-stories {
    margin: 1.5rem 0;
}

.story-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.story-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-btn:hover,
.story-btn.active {
    background: rgba(61, 168, 244, 0.1);
    border-color: rgba(61, 168, 244, 0.3);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.story-icon {
    font-size: 1.2rem;
}

.story-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: none;
}

.story-content.active {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.client-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.transformation-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

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

.timeline-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-value {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.timeline-value.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.timeline-value.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: successGlow 2s ease-in-out infinite;
}

@keyframes successGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
}

.timeline-arrow {
    color: var(--primary-blue);
    font-size: 2rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.story-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 3px solid var(--primary-blue);
    background: rgba(61, 168, 244, 0.05);
    border-radius: 0 8px 8px 0;
}

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); border-color: rgba(239, 68, 68, 0.3); }
    50% { transform: scale(1.02); border-color: rgba(239, 68, 68, 0.5); }
}

.banner-icon {
    font-size: 1.5rem;
    animation: iconWiggle 2s ease-in-out infinite;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.banner-text {
    color: var(--text-primary);
    font-weight: 500;
}

.success-visualization {
    background: var(--background-darker);
    border: 1px solid rgba(61, 168, 244, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.viz-header {
    background: linear-gradient(135deg, rgba(61, 168, 244, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.viz-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.viz-period {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.growth-simulator {
    padding: 1.5rem;
}

.revenue-counter {
    text-align: center;
    margin-bottom: 2rem;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: counterGrow 2s ease-out;
}

@keyframes counterGrow {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.client-bubble {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-bubble:hover::before {
    transform: scaleX(1);
}

.client-bubble:hover {
    transform: translateY(-5px);
    background: rgba(61, 168, 244, 0.05);
    border-color: rgba(61, 168, 244, 0.2);
}

.bubble-company {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bubble-growth {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

.simulator-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.simulator-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simulator-btn:hover,
.simulator-btn.active {
    background: rgba(61, 168, 244, 0.1);
    border-color: rgba(61, 168, 244, 0.3);
    color: var(--primary-blue);
}

.visual-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.visual-cta .btn {
    margin-bottom: 0.5rem;
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .before-after-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .arrow-transform {
        transform: rotate(90deg);
    }

    .business-impact {
        grid-template-columns: 1fr;
    }

    .performance-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .highlight-grid .highlight-card {
        padding: 1rem;
    }

    .highlight-grid .highlight-value {
        font-size: 1.5rem;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-selector {
        flex-direction: column;
        gap: 0.5rem;
    }

    .transformation-timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .simulator-controls {
        flex-wrap: wrap;
    }


    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-nav {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .website-development-slider {
        padding: 4rem 0;
    }

    .slide {
        min-height: 60vh;
    }

    .slider-nav {
        display: none; /* Esconder setas em mobile */
    }

    .chart-bars {
        gap: 1rem;
        height: 100px;
    }

    .bar-fill[data-height="30%"] { height: 30px; }
    .bar-fill[data-height="60%"] { height: 60px; }
    .bar-fill[data-height="90%"] { height: 90px; }

    .chart-stats {
        gap: 2rem;
    }

    .impact-item {
        padding: 1rem;
    }

    .impact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .new-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================== */
/* FORÇA ABSOLUTA - TAMANHO FIXO DAS BOXES  */
/* ========================================== */

/* Esta regra tem especificidade máxima e deve ser aplicada por último */
.features-section .features-checklist .feature-benefit,
section.features-section .features-checklist .feature-benefit,
section .features-checklist .feature-benefit,
.features-checklist div.feature-benefit,
div.features-checklist div.feature-benefit,
.feature-benefit[class],
div.feature-benefit[class] {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    padding: 2rem 1.5rem !important;
    margin: 0 !important;
}

/* Responsivo com especificidade máxima */
@media (max-width: 1024px) {
    .features-section .features-checklist .feature-benefit,
    section.features-section .features-checklist .feature-benefit,
    section .features-checklist .feature-benefit,
    .features-checklist div.feature-benefit,
    div.features-checklist div.feature-benefit,
    .feature-benefit[class],
    div.feature-benefit[class] {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }
}

@media (max-width: 768px) {
    .features-section .features-checklist .feature-benefit,
    section.features-section .features-checklist .feature-benefit,
    section .features-checklist .feature-benefit,
    .features-checklist div.feature-benefit,
    div.features-checklist div.feature-benefit,
    .feature-benefit[class],
    div.feature-benefit[class] {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
        padding: 1.5rem 1rem !important;
    }
}

/* ÚLTIMA TENTATIVA - ESPECIFICIDADE ULTRA MÁXIMA */
html body main section.features-section div.container div.features-checklist div.feature-benefit,
html body main .features-section .container .features-checklist .feature-benefit,
body main section .features-checklist .feature-benefit,
main section .features-checklist .feature-benefit,
section .features-checklist .feature-benefit,
.features-checklist .feature-benefit,
.feature-benefit {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
}

@media (max-width: 1024px) {
    html body main section.features-section div.container div.features-checklist div.feature-benefit,
    html body main .features-section .container .features-checklist .feature-benefit,
    body main section .features-checklist .feature-benefit,
    main section .features-checklist .feature-benefit,
    section .features-checklist .feature-benefit,
    .features-checklist .feature-benefit,
    .feature-benefit {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }
}

@media (max-width: 768px) {
    html body main section.features-section div.container div.features-checklist div.feature-benefit,
    html body main .features-section .container .features-checklist .feature-benefit,
    body main section .features-checklist .feature-benefit,
    main section .features-checklist .feature-benefit,
    section .features-checklist .feature-benefit,
    .features-checklist .feature-benefit,
    .feature-benefit {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
    }
}