:root {
            
    --primary: #f9704c; /* Cor da logo */
    --primary-light: #ff8d6d; /* 20% mais claro */
    --primary-dark: #e05a38; /* 20% mais escuro */
    --secondary: #FFA84C; /* Laranja dourado */
    --secondary-light: #FFC47D;
    --accent: #FFA84C; /* Azul complementar */
    --accent-dark: #FFA84C;
    --success: #48BB78; /* Verde suave */
    --warning: #F6AD55; /* Amarelo terroso */
    --dark: #1A202C; /* Preto suave */
    --dark-2: #2D3748;
    --light: #F7FAFC; /* Branco quente */
    --gray-1: #A0AEC0;
    --gray-2: #718096;
    
    /* Gradientes modernos */
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, var(--accent), var(--primary-light));
    --gradient-3: linear-gradient(135deg, var(--secondary), var(--warning));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Novos gradientes adicionais */
    --gradient-warm: linear-gradient(135deg, #f9704c, #ff8d6d);
    --gradient-sunset: linear-gradient(135deg, #f9704c, #ffa84c);
    --gradient-ocean: linear-gradient(135deg, #f9704c, #FFA84C);
    
    /* Sombras com efeito glassmorphism */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 16px 38px rgba(15, 23, 42, 0.18);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
  
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    transition: background-color var(--transition-normal);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.w-full {
    width: 100%;
}

.hidden {
    display: none;
}

/* Animações modernas */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatMobile {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes morphBlob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Efeito de glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

/* Cabeçalho - Redesenhado para mobile e sempre branco */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    background-color: white;
    box-shadow: var(--shadow-sm);
}

/* Ajustar o layout do cabeçalho para evitar sobreposição */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: padding var(--transition-normal);
    position: relative;
}

/* Ajustar posicionamento do logo para ficar centralizado sem sobreposição */
.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition-fast);
    position: relative;
    margin: 0 auto; /* Centraliza o logo */
}

/* Ajustar posicionamento do menu toggle para não sobrepor o logo */


/* Header actions - Botões de login e cadastro */
/* Ajustar posicionamento dos botões de ação */
.header-actions {
    display: flex;
    gap: 10px;
    position: relative; /* Alterado de absolute para relative */
}

.header-btn {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.header-btn-login {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.header-btn-login:hover {
    background-color: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.header-btn-register {
    background-color: var(--primary);
    color: white;
    border: none;
}

.header-btn-register:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Menu mobile redesenhado - Reposicionado mais para cima */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-right: 1px solid rgba(99, 102, 241, 0.1);
    padding: 5rem 1.5rem 1.5rem;
    gap: 1rem;
    display: flex;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    position: relative;
    font-weight: 600;
    transition: color var(--transition-fast);
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu mobile actions - Reposicionado mais para cima */
.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-2);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.5);
}

.btn-secondary:hover {
    box-shadow: 0 15px 30px -5px rgba(6, 182, 212, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width var(--transition-normal);
    z-index: -1;
}

.btn-outline:hover::after {
    width: 100%;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.5);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(6, 182, 212, 0.6);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Seção Hero */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366F1, #EC4899, #06B6D4);
    background-size: 300% 300%;
    animation: gradientFlow 15s ease infinite;
    color: white;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: morphBlob 15s ease-in-out infinite alternate;
}

.hero-shape-1 {
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-shape-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: 5s;
}

.hero-shape-3 {
    top: 30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: 7s;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #E2E8F0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero-primary {
    animation: pulse 2s infinite;
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.btn-hero-secondary:hover::before {
    left: 100%;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Estatísticas */
.stats {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: -3rem;
    margin-bottom: 4rem;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover .stat-number::after {
    opacity: 0.3;
}

.stat-label {
    color: var(--gray-2);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Seção de Recursos */
.section {
    margin: 5rem 0;
    position: relative;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    animation: fadeIn 1s ease-out;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-2);
}

/* Carrossel de recursos - Apenas para mobile */
.features-carousel {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    display: block; /* Mostrar apenas em mobile */
}

.features-grid {
    display: none; /* Esconder em mobile */
}

.features-track {
    display: flex;
    transition: transform 0.5s ease;
}

.feature-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-1);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition-normal);
    color: var(--primary);
}

.carousel-arrow:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    height: 100%;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature:hover .feature-icon::after {
    opacity: 0.3;
}

.feature:hover .feature-icon {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature p {
    color: var(--gray-2);
    line-height: 1.7;
}

/* Como funciona */
.how-it-works {
    padding: 5rem 0;
    background-color: rgba(99, 102, 241, 0.05);
    position: relative;
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    counter-reset: step;
    padding: 0 1rem;
}

.step {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 3rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -25px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.step h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 600;
}

.step p {
    color: var(--gray-2);
    line-height: 1.7;
}

/* Carrossel de depoimentos - Apenas para mobile */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    display: block; /* Mostrar apenas em mobile */
}

.testimonials-grid {
    display: none; /* Esconder em mobile */
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    height: 100%;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.testimonial:hover::before {
    transform: scaleY(1);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    color: rgba(99, 102, 241, 0.1);
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--primary);
    position: relative;
}

.author-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    background: var(--gradient-1) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial:hover .author-avatar::after {
    opacity: 1;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-2);
    margin-bottom: 0;
}

/* CTA */
.cta {
    padding: 4rem 1.5rem;
    margin: 4rem 1rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-size: 300% 300%;
    background-image: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    animation: gradientFlow 15s ease infinite;
    color: white;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.cta .btn {
    animation: pulse 2s infinite;
}

/* Rodapé */
.footer {
    background-color: var(--dark-2);
    color: var(--light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-brand .logo {
    color: var(--light);
    margin-bottom: 1rem;
    display: inline-block;
    justify-content: center;
}

.footer-brand p {
    color: var(--gray-1);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    transition: all var(--transition-normal);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-nav h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-nav:hover h3::after {
    width: 50px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: var(--gray-1);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-nav a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-nav a:hover {
    color: var(--light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-1);
    font-size: 0.9rem;
}

/* Developer credit - Enhanced with modern styling */
.developer-credit {
    position: relative;
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
    color: var(--gray-1);
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-credit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544v2.83L25.456 30l-1.414 1.414-28-28L0 0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2v2.83l21.627 21.626-1.414 1.414L0 13.657v2.828l17.8 17.8-1.414 1.414L0 19.1v2.83l14.142 14.14-1.414 1.415L0 24.544V30h30V0H0v5.373z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.developer-credit .container {
    position: relative;
    z-index: 2;
}

.developer-credit a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.2rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    overflow: hidden;
}

.developer-credit a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.developer-credit a:hover::before {
    opacity: 1;
}

.developer-credit a:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    text-decoration: none;
}

/* Pulse animation for developer credit */
@keyframes devCreditPulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.developer-credit a {
    animation: devCreditPulse 2s infinite;
}

/* Animações de partículas - Melhoradas para mobile */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.4; /* Reduzido para mobile */
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
}

/* Estilos responsivos melhorados */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        max-width: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mostrar grid em vez de carrossel em desktop */
    .features-carousel {
        display: none;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-carousel {
        display: none;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
        gap: 2rem;
    }
    
    .footer-nav h3::after {
        left: 0;
        transform: none;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .particles-container {
        opacity: 0.8; /* Mais visível em telas maiores */
    }
    
    /* Mostrar botões de login/cadastro no header em telas maiores */
    .header-actions {
        display: flex;
    }

    /* Enhanced developer credit for larger screens */
    .developer-credit {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .developer-credit a {
        padding: 0.3rem 1.5rem;
        margin-left: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .particles-container {
        opacity: 1; /* Totalmente visível em desktop */
    }

    /* Even more enhanced developer credit for desktop */
    .developer-credit {
        padding: 1.8rem 0;
    }
    
    .developer-credit a {
        padding: 0.4rem 2rem;
    }
}

/* Animações de scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de destaque em hover */
.highlight-hover {
    position: relative;
    transition: all 0.3s ease;
}

.highlight-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.highlight-hover:hover::after {
    width: 100%;
}

/* Efeito de cursor personalizado - desativado em mobile */
.custom-cursor {
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor {
        position: fixed;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--primary);
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 9999;
        opacity: 0.5;
        transition: transform 0.1s ease, opacity 0.3s ease;
        mix-blend-mode: difference;
        display: block;
    }

    .cursor-expanded {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0.2;
    }
}