:root {
    --blue-900: #0A0B0A;
    --slate-900: #0A0B0A;
    --slate-800: #0A0B0A;
    --cyan-500: #27D07D;
    --teal-500: #27D07D;
    --amber-400: #F59E0B;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--white);
    background: var(--blue-900);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   ESPAÇAMENTOS PROFISSIONAIS DAS SEÇÕES
   ======================================== */
.section-padding {
    padding: 100px 0;
}

.section-padding-alt {
    padding: 120px 0;
}

.section-padding-large {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 80px;
}

/* Alternância de backgrounds para separação visual */
.benefits-section {
    background: linear-gradient(180deg, rgba(15, 20, 15, 0.5) 0%, rgba(10, 11, 10, 1) 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(39, 208, 125, 0.03) 0%, transparent 60%);
    pointer-events: none;
}



a {
    color: inherit;
}

a:hover {
    color: #27D07D;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #27D07D;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    z-index: 1000;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(39, 208, 125, 0.2);
    padding: 1rem 0;
}

.site-header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
    min-height: 50px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 25;
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.site-logo {
    font-weight: 800;
    font-size: 2.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-ease {
    color: #27D07D;
}

.logo-rh {
    color: #27D07D;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #27D07D;
}

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

.site-main {
    position: relative;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: #0A0B0A;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(39, 208, 125, 0.3) 20%,
            rgba(39, 208, 125, 0.6) 50%,
            rgba(39, 208, 125, 0.3) 80%,
            transparent 100%);
    box-shadow: 0 0 20px rgba(39, 208, 125, 0.5);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Efeitos Neon */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-shapes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(39, 208, 125, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(39, 208, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(39, 208, 125, 0.12) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite;
}

.floating-shapes::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(39, 208, 125, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(39, 208, 125, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: neonGrid 15s linear infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(0, 0) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-10%, -10%) scale(1.1);
    }
}

@keyframes neonGrid {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 200%;
    }
}

/* Partículas brilhantes */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(39, 208, 125, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(39, 208, 125, 0.6), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(39, 208, 125, 0.7), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(39, 208, 125, 0.5), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(39, 208, 125, 0.8), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(39, 208, 125, 0.6), transparent),
        radial-gradient(1px 1px at 15% 60%, rgba(39, 208, 125, 0.7), transparent);
    background-size: 200% 200%;
    animation: sparkle 20s linear infinite;
    opacity: 0.3;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.2;
        background-position: 0% 0%;
    }

    50% {
        opacity: 0.5;
        background-position: 100% 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.brand-logo {
    margin-bottom: 2rem;
}

.brand-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.ease-text {
    color: var(--cyan-500);
    text-shadow: 0 0 30px rgba(39, 208, 125, 0.5);
}

.rh-text {
    color: var(--teal-500);
    text-shadow: 0 0 30px rgba(39, 208, 125, 0.5);
}

.brand-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 300;
}

.hero-title {
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1.2;
}



.hero-title .text-highlight {
    background: linear-gradient(135deg, #27D07D 0%, #2FE88E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-highlights {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-highlights i {
    color: var(--teal-500);
    filter: drop-shadow(0 0 10px rgba(39, 208, 125, 0.8));
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Image with 3D Perspective */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    perspective: 1500px;
    margin-left: 2rem;
    width: 120%;
}

.hero-image-container {
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-container:hover {
    transform: rotateY(-10deg) rotateX(3deg) scale(1.02);
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 40px rgba(39, 208, 125, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(39, 208, 125, 0.2) 0%,
            rgba(39, 208, 125, 0.1) 40%,
            transparent 70%);
    border-radius: 20px;
    pointer-events: none;
    mix-blend-mode: soft-light;
    z-index: 1;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(39, 208, 125, 0.15), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.8;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-20px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-image-wrapper {
        margin-top: 3rem;
        margin-left: 0;
        width: 100%;
        perspective: 1000px;
    }

    .hero-image-container {
        transform: rotateY(0) rotateX(0);
    }

    .hero-image-container:hover {
        transform: rotateY(0) rotateX(0) scale(1.02);
    }
}

.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Override global styles - maintain EaseRH brand color on home page */
body.home-page .btn.btn-primary,
body.home-page button.btn-primary,
body.home-page a.btn-primary {
    background: linear-gradient(135deg, #48D38F, #27D07D) !important;
    border-color: #48D38F !important;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(72, 211, 143, 0.3) !important;
    border: none;
}

body.home-page .btn.btn-primary::before,
body.home-page button.btn-primary::before,
body.home-page a.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

body.home-page .btn.btn-primary:hover::before,
body.home-page button.btn-primary:hover::before,
body.home-page a.btn-primary:hover::before {
    transform: translateX(100%);
}

body.home-page .btn.btn-primary:hover,
body.home-page button.btn-primary:hover,
body.home-page a.btn-primary:hover {
    background: linear-gradient(135deg, #48D38F, #27D07D) !important;
    border-color: #48D38F !important;
    transform: translateY(-2px);
    color: var(--white) !important;
    box-shadow: 0 15px 40px rgba(72, 211, 143, 0.5) !important;
}

body.home-page .btn.btn-primary:focus,
body.home-page .btn.btn-primary:active,
body.home-page button.btn-primary:focus,
body.home-page button.btn-primary:active,
body.home-page a.btn-primary:focus,
body.home-page a.btn-primary:active {
    background: linear-gradient(135deg, #48D38F, #27D07D) !important;
    border-color: #48D38F !important;
    box-shadow: 0 10px 30px rgba(72, 211, 143, 0.3) !important;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #27D07D, #20b56a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 15px rgba(39, 208, 125, 0.6));
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.35rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-preview {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.card-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #27D07D;
}

.card-dots span:nth-child(2) {
    background: #27D07D;
}

.card-dots span:nth-child(3) {
    background: var(--amber-400);
}

.card-title {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1.05rem;
}

.card-content {
    padding: 4rem 2.5rem;
}

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

.bar {
    flex: 1;
    background: linear-gradient(to top, #27D07D, #20b56a);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 3px 12px rgba(39, 208, 125, 0.3);
}

.features-section {
    background: #0A0B0A;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(39, 208, 125, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(39, 208, 125, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(39, 208, 125, 0.2);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle.text-start {
    margin: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(39, 208, 125, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(39, 208, 125, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(39, 208, 125, 0.2),
        0 0 60px rgba(39, 208, 125, 0.15);
    border-color: rgba(39, 208, 125, 0.4);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #27D07D, #20b56a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(39, 208, 125, 0.4),
        0 0 60px rgba(39, 208, 125, 0.3) inset;
    position: relative;
    z-index: 1;
}

.feature-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.benefits-section {
    background: #0d0d0d;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(39, 208, 125, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(39, 208, 125, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(39, 208, 125, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(39, 208, 125, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #27D07D, transparent);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 208, 125, 0.15),
        0 0 40px rgba(39, 208, 125, 0.1);
    border-color: rgba(39, 208, 125, 0.3);
}

.benefits-list li:hover::before {
    opacity: 1;
}

.benefits-list i {
    color: #27D07D;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(39, 208, 125, 0.6));
}

.benefits-list span {
    flex: 1;
    line-height: 1.7;
}


.testimonials-section {
    background: #0A0B0A;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.faq-section {
    background: #0d0d0d;
}

.faq-items {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    position: relative;
    padding-right: 2rem;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    font-weight: 300;
    color: #27D07D;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.pricing-section {
    background: #0A0B0A;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(39, 208, 125, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(39, 208, 125, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-calculator {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(39, 208, 125, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calculator-header {
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.15), rgba(39, 208, 125, 0.05));
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(39, 208, 125, 0.2);
}

.calculator-header i {
    font-size: 2.5rem;
    color: #27D07D;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(39, 208, 125, 0.6));
}

.calculator-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.calculator-body {
    padding: 3rem 2.5rem;
}

.employee-counter {
    margin-bottom: 3rem;
}

.employee-counter label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.counter-display #employee-count {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #27D07D, #20b56a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(39, 208, 125, 0.4));
    line-height: 1;
}

.counter-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.employee-slider {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 0.5rem;
}

.employee-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27D07D, #20b56a);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(39, 208, 125, 0.6),
        0 0 40px rgba(39, 208, 125, 0.4);
    transition: all 0.3s ease;
}

.employee-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(39, 208, 125, 0.8),
        0 0 60px rgba(39, 208, 125, 0.6);
}

.employee-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27D07D, #20b56a);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 20px rgba(39, 208, 125, 0.6),
        0 0 40px rgba(39, 208, 125, 0.4);
    transition: all 0.3s ease;
}

.employee-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(39, 208, 125, 0.8),
        0 0 60px rgba(39, 208, 125, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    padding: 0 0.5rem;
}

.plan-result {
    margin-top: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(39, 208, 125, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(39, 208, 125, 0.08) 0%, transparent 70%);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.plan-badge.starter {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.plan-badge.starter i {
    color: #22C55E;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.6));
}

.plan-badge.essencial {
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.2), rgba(39, 208, 125, 0.1));
    border: 1px solid rgba(39, 208, 125, 0.3);
}

.plan-badge.essencial i {
    color: #27D07D;
    filter: drop-shadow(0 0 10px rgba(39, 208, 125, 0.6));
}

.plan-badge.crescimento {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.plan-badge.crescimento i {
    color: #3B82F6;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}

.plan-badge.profissional {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.plan-badge.profissional i {
    color: #A855F7;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.plan-badge.enterprise {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.plan-badge.enterprise i {
    color: #F59E0B;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.6));
}

.plan-badge span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-price {
    margin-bottom: 1.5rem;
    line-height: 1;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
    margin-right: 0.25rem;
}

.plan-price #plan-value {
    font-size: 4rem;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.plan-value-starter {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.4));
}

.plan-value-essencial {
    background: linear-gradient(135deg, #27D07D, #20b56a);
    filter: drop-shadow(0 0 20px rgba(39, 208, 125, 0.4));
}

.plan-value-crescimento {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
}

.plan-value-profissional {
    background: linear-gradient(135deg, #A855F7, #9333EA);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
}

.plan-value-enterprise {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
}

.plan-price .period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
}

.plan-details {
    margin-bottom: 2rem;
}

.plan-details p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.feature-item i {
    color: #27D07D;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-coming-soon {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: not-allowed;
    opacity: 0.7;
}

.pricing-table {
    position: relative;
}

.pricing-table h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(39, 208, 125, 0.15);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
}

.plans-table thead {
    background: rgba(39, 208, 125, 0.1);
}

.plans-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    border-bottom: 2px solid rgba(39, 208, 125, 0.3);
}

.plans-table td {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

.plans-table tbody tr {
    transition: all 0.3s ease;
}

.plans-table tbody tr:hover {
    background: rgba(39, 208, 125, 0.05);
}

.plan-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.plan-tag.starter {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.plan-tag.essencial {
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.2), rgba(39, 208, 125, 0.1));
    color: #27D07D;
    border: 1px solid rgba(39, 208, 125, 0.3);
}

.plan-tag.crescimento {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.plan-tag.profissional {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.plan-tag.enterprise {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, #27D07D, #20b56a);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: neonPulse 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: neonSweep 8s linear infinite;
}

@keyframes neonSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

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

.cta-title {
    font-size: 2.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

body.home-page .btn-cta {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

body.home-page .btn-cta:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
    color: var(--white) !important;
}

.site-footer {
    background: #0A0B0A;
    border-top: 1px solid rgba(39, 208, 125, 0.15);
    padding: 4rem 0 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(39, 208, 125, 0.4) 50%,
            transparent 100%);
    box-shadow: 0 0 15px rgba(39, 208, 125, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-brand .site-logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-description {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #27D07D, #20b56a);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: #27D07D;
}

.footer-contact li {
    flex-direction: row;
    justify-content: center;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
}

.footer-links i {
    color: #27D07D;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.footer-copy {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.feature-card:active,
.testimonial-card:active {
    transform: scale(0.98);
}

.benefits-list li:active {
    transform: scale(0.98);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #27D07D;
        padding: 0;
        z-index: 24;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        display: flex;
        max-height: 600px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: static;
        transform: none;
        order: 1;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav li:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav>ul>li>a {
        display: block;
        padding: 1rem 1.5rem;
        transition: all 0.3s ease;
        color: var(--white);
    }

    .main-nav>ul>li>a:hover {
        background: #000000;
        color: var(--white);
    }

    .header-cta {
        position: static !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem 1.5rem 1.5rem;
        background: #27D07D;
        width: 100%;
        order: 2;
    }

    .header-cta .btn {
        justify-content: center;
        width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
        background: #000000 !important;
        border: 2px solid #000000 !important;
        color: var(--white) !important;
    }

    .header-cta .btn:hover {
        background: #1a1a1a !important;
        border-color: #1a1a1a !important;
    }

    .header-cta .btn-disabled-temp {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border: 2px solid rgba(255, 255, 255, 0.9) !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .header-cta .btn-disabled-temp:hover {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border-color: rgba(255, 255, 255, 1) !important;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 575px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .site-header {
        padding: 1rem 0;
    }

    .site-logo {
        font-size: 1.75rem;
    }

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

    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-section .row {
        padding-top: 80px !important;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

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

    .hero-highlights li {
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto !important;
        justify-content: center;
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
        display: flex;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .stat-label {
        font-size: 0.8125rem;
    }

    .floating-shapes,
    .hero-visual {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .features-section,
    .benefits-section,
    .testimonials-section,
    .faq-section {
        padding: 3rem 0 !important;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .benefits-list li {
        padding: 1.25rem 1.5rem;
    }

    .benefits-list i {
        font-size: 1.25rem;
    }

    .cta-section {
        padding: 3rem 0 !important;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .calculator-body {
        padding: 2rem 1.5rem;
    }

    .counter-display #employee-count {
        font-size: 3rem;
    }

    .plan-price #plan-value {
        font-size: 3rem;
    }

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

    .plans-table {
        font-size: 0.875rem;
    }

    .plans-table th,
    .plans-table td {
        padding: 1rem;
    }

    .plans-table thead {
        display: none;
    }

    .plans-table tr {
        display: block;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        border: 1px solid rgba(39, 208, 125, 0.15);
        padding: 1rem;
    }

    .plans-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 0;
        border: none;
    }

    .plans-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
    }

    .faq-item {
        padding: 1.25rem 1.25rem;
    }

    .faq-item summary {
        font-size: 0.9375rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        gap: 0.875rem;
    }

    .footer-links a,
    .footer-contact span {
        font-size: 0.875rem;
    }

    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}

/* Mobile Landscape / Tablet Small (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 4rem 0;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .hero-stats {
        gap: 2rem;
    }

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

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .hero-stats {
        gap: 3rem;
    }

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

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

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

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

/* Estilos para botões desabilitados temporariamente */
.btn-disabled-temp {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    position: relative;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

.btn-disabled-temp:hover {
    opacity: 0.8 !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    transform: none !important;
}

.btn-disabled-temp::after {
    content: "Em breve será liberado para cadastros";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-disabled-temp:hover::after {
    opacity: 1;
}

/* Ajuste para botões menores no header */
.header-cta .btn-disabled-temp::after {
    font-size: 11px;
    padding: 6px 10px;
    bottom: -32px;
}

/* ========================================
   CARROSSEL DE CLIENTES
   ======================================== */
.clients-full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
}

.clients-header {
    margin-bottom: 2rem;
}

.clients-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.clients-subtitle strong {
    font-weight: 600;
}

.text-highlight-green {
    color: #27D07D;
    font-weight: 700;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), transparent);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.95), transparent);
}

.clients-carousel {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scrollClients 40s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
}

.client-logo-img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.client-logo:hover .client-logo-img {
    opacity: 0.8;
    filter: grayscale(100%) brightness(0) invert(1);
    transform: translateY(-5px) scale(1.05);
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover .logo-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(39, 208, 125, 0.3);
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 208, 125, 0.1);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-track {
        gap: 2rem;
        animation-duration: 30s;
    }

    .client-logo {
        min-width: 140px;
        height: 80px;
    }

    .logo-placeholder {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    .clients-carousel-wrapper::before,
    .clients-carousel-wrapper::after {
        width: 80px;
    }
}

/* ========================================
   RECURSOS AVANÇADOS
   ======================================== */
.advanced-features-section {
    background: linear-gradient(180deg, rgba(10, 11, 10, 1) 0%, rgba(15, 20, 15, 1) 100%);
    position: relative;
    overflow: hidden;
}

.advanced-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(39, 208, 125, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39, 208, 125, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.advanced-card {
    background: linear-gradient(135deg, rgba(20, 25, 20, 0.9) 0%, rgba(15, 20, 15, 0.9) 100%);
    border: 1px solid rgba(39, 208, 125, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advanced-card:hover {
    transform: translateY(-8px);
    border-color: rgba(39, 208, 125, 0.5);
    box-shadow: 0 20px 40px rgba(39, 208, 125, 0.2);
}

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

.advanced-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.2) 0%, rgba(39, 208, 125, 0.1) 100%);
    border: 2px solid rgba(39, 208, 125, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.advanced-icon i {
    font-size: 28px;
    color: #27D07D;
    transition: all 0.4s ease;
}

.advanced-card:hover .advanced-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.3) 0%, rgba(39, 208, 125, 0.15) 100%);
    border-color: #27D07D;
}

.advanced-card:hover .advanced-icon i {
    transform: scale(1.1);
    color: #2FE88E;
}

.advanced-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.advanced-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   COMO FUNCIONA
   ======================================== */
.how-it-works-section {
    background: var(--blue-900);
    position: relative;
}

.process-flow {
    position: relative;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #27D07D;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.process-connector i {
    filter: drop-shadow(0 0 10px rgba(39, 208, 125, 0.5));
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.process-card {
    background: linear-gradient(135deg, rgba(20, 25, 20, 0.8) 0%, rgba(10, 15, 10, 0.8) 100%);
    border: 1px solid rgba(39, 208, 125, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27D07D 0%, #2FE88E 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(39, 208, 125, 0.5);
    box-shadow: 0 20px 40px rgba(39, 208, 125, 0.15);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.2) 0%, rgba(39, 208, 125, 0.1) 100%);
    border: 2px solid rgba(39, 208, 125, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #27D07D;
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    background: #27D07D;
    color: var(--blue-900);
    transform: scale(1.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.15) 0%, rgba(39, 208, 125, 0.05) 100%);
    border: 2px solid rgba(39, 208, 125, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.process-icon i {
    font-size: 32px;
    color: #27D07D;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(39, 208, 125, 0.25) 0%, rgba(39, 208, 125, 0.1) 100%);
    border-color: #27D07D;
}

.process-card:hover .process-icon i {
    transform: scale(1.15);
    color: #2FE88E;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive para Recursos Avançados e Como Funciona */
@media (max-width: 991px) {

    /* Reduzir espaçamentos em tablets */
    .section-padding {
        padding: 70px 0;
    }

    .section-padding-alt {
        padding: 80px 0;
    }

    .section-padding-large {
        padding: 90px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .advanced-card,
    .process-card {
        padding: 1.75rem 1.5rem;
    }

    .advanced-icon {
        width: 56px;
        height: 56px;
    }

    .advanced-icon i {
        font-size: 24px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 28px;
    }

    .advanced-title,
    .process-title {
        font-size: 1.25rem;
    }

    .advanced-description,
    .process-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {

    /* Espaçamentos mobile otimizados */
    .section-padding {
        padding: 50px 0;
    }

    .section-padding-alt {
        padding: 60px 0;
    }

    .section-padding-large {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .advanced-card,
    .process-card {
        padding: 1.5rem 1.25rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 1rem;
        left: 1rem;
    }

    .advanced-icon {
        width: 48px;
        height: 48px;
    }

    .advanced-icon i {
        font-size: 20px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }

    .process-icon i {
        font-size: 24px;
    }

    .advanced-title,
    .process-title {
        font-size: 1.125rem;
    }

    .advanced-description,
    .process-description {
        font-size: 0.9rem;
    }
}