/* ==========================================
   SAWONE - DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Cores Principais */
    --primary: #0066FF;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --primary-50: #E0E7FF;
    
    /* Cores Neutras */
    --dark: #0F172A;
    --dark-800: #1e293b;
    --text: #475569;
    --text-light: #64748b;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --border: #e2e8f0;
    
    /* Cores Semânticas */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(0, 102, 255, 0.15) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, rgba(255, 149, 0, 0.08) 0px, transparent 50%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.3);
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Tipografia */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espaçamento */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 5%;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ==========================================
   UTILITÁRIOS
   ========================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.blue-text {
    color: var(--primary);
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s;
}

/* ==========================================
   HEADER & NAVEGAÇÃO
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-5) var(--space-6);
    transition: all var(--transition-slow);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-sm);
    padding: var(--space-3) var(--space-6);
}

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

.logo img {
    height: 40px;
    width: auto;
    transition: transform var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--dark);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

/* Botões */
.btn-cta-small {
    display: inline-block; /* Correção para links */
    background: var(--primary);
    color: white;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-sm);
    transition: all var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 102, 255, 0.2);
    text-align: center;
}

.btn-cta-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.3);
    color: white;
}

.btn-primary-big {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 800;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    text-align: center;
}

.btn-primary-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.btn-primary-big:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-primary-big:hover::before {
    left: 100%;
}

.btn-primary-big:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-base);
    transition: all var(--transition);
    width: 100%;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 100px var(--space-6) var(--space-6);
    flex-direction: column;
    gap: var(--space-4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.mobile-link {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--dark);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-mesh);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--warning);
    bottom: -10%;
    left: -5%;
    opacity: 0.2;
    animation-delay: -10s;
}

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

/* Hero Content */
.hero-text {
    max-width: 600px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: var(--font-size-xl);
    color: var(--text);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
}

.hero-guarantee {
    display: flex;
    gap: var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--text-light);
    align-items: center;
}

/* Social Proof */
.social-proof-hero {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img,
.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--dark);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-proof-hero p {
    font-size: var(--font-size-sm);
    color: var(--text);
    margin: 0;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: float-card 6s infinite ease-in-out;
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -10px;
    animation-delay: -3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
}

.floating-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: 2px;
}

.floating-value {
    font-weight: 800;
    color: var(--dark);
    font-size: var(--font-size-sm);
}

/* ==========================================
   TRUST LOGOS
   ========================================== */
.trust-logos {
    padding: var(--space-12) 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.trust-text {
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.logo-item {
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.6;
    transition: opacity var(--transition);
    font-size: var(--font-size-lg);
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary);
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sub-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--primary-50);
    border-radius: var(--radius-full);
}

.sub-tag.light {
    background: rgba(255,255,255,0.1);
    color: white;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.section-title p {
    color: var(--text);
    font-size: var(--font-size-lg);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
    padding: var(--space-24) 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.step {
    position: relative;
    padding: var(--space-8);
    background: var(--bg);
    border-radius: var(--radius-2xl);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
    background: white;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-50);
    line-height: 1;
    font-family: var(--font-sans);
}

.step-icon {
    font-size: 2rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin-left: auto;
}

.step-content h3 {
    color: var(--dark);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--text);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* ==========================================
   PRODUCT SHOWCASE (TABS)
   ========================================== */
.product-showcase {
    padding: var(--space-24) 0;
    background: var(--bg);
}

.showcase-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
    cursor: pointer;
}

.tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.tab-icon {
    font-size: var(--font-size-lg);
}

.showcase-display {
    display: grid;
    grid-template-columns: 1.6fr 1fr; /* Ajuste leve na proporção */
    gap: var(--space-10);
    align-items: start; /* Alinha no topo para evitar pulos se uma lista for maior que a outra */
    min-height: 500px; /* Altura mínima para evitar que a seção encolha */
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.browser-header {
    background: #f1f5f9;
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-bottom: 1px solid var(--border);
}

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

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

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.browser-address {
    flex: 1;
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--text-light);
    background: white;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-sm);
    max-width: 200px;
    margin: 0 auto;
}

.browser-content {
    position: relative;
    background: #f8fafc;
    min-height: 400px;
    display: block; /* Mudado de flex para block */
    overflow: hidden;
}

.browser-content img {
    width: 100%;
    height: auto;
    transition: opacity var(--transition);
}

/* Correção para o script.js esconder/mostrar abas */
.tab-image {
    width: 100%;
    height: auto;
    display: none;
    object-fit: cover;
}

.tab-image.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
}

.hotspot-pulse {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    animation: hotspot-pulse 2s infinite;
    position: relative;
}

.hotspot-pulse::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--dark);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    font-size: var(--font-size-xs);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    pointer-events: none;
    font-weight: 600;
}

.hotspot:hover .hotspot-pulse::after {
    opacity: 1;
    visibility: visible;
}

@keyframes hotspot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

/* Features List */
.showcase-features {
    padding: var(--space-6);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    opacity: 0.6;
}

.feature-item.active {
    opacity: 1;
    background: white;
    box-shadow: var(--shadow);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: var(--space-1);
    font-weight: 700;
}

.feature-item span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */
.comparison {
    padding: var(--space-16) 0;
}

.comp-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: var(--gradient-dark);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    color: white;
    box-shadow: var(--shadow-xl);
}

.comp-item {
    padding: var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.comp-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-item h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-base);
    opacity: 0.9;
}

.comp-list li.negative::before {
    content: '✕';
    color: var(--error);
    font-weight: 700;
}

.comp-list li.positive::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.comp-divider {
    background: var(--primary);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: var(--font-size-lg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
}

.comp-item.new {
    background: rgba(0, 102, 255, 0.15);
    border-left: 2px solid var(--primary);
}

/* ==========================================
   CALCULATOR SECTION
   ========================================== */
.calculator-section {
    padding: var(--space-24) 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.calc-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.calc-text > p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-10);
    line-height: 1.6;
}

.calc-stats {
    display: flex;
    gap: var(--space-10);
    margin-top: var(--space-10);
}

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

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Calculator Widget */
.calc-widget {
    position: relative;
}

.calc-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    color: var(--dark);
}

.calc-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-6);
    color: var(--dark);
}

.input-group {
    margin-bottom: var(--space-6);
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--text);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: var(--space-4);
    font-weight: 700;
    color: var(--text-light);
    font-size: var(--font-size-lg);
}

.input-group input[type="number"] {
    width: 100%;
    padding: var(--space-3) var(--space-4) var(--space-3) var(--space-12);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark);
    transition: border-color var(--transition);
}

.input-group input[type="number"]:focus{
    outline: none;
    border-color: var(--primary);
}

/* Range Slider */
.range-slider {
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    margin: var(--space-4) 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
}

.range-value {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    font-size: var(--font-size-lg);
}

/* Result Box */
.result-box {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border: 2px solid var(--border);
}

.result-item {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-4);
}

.result-item:last-child {
    margin-bottom: 0;
    padding-top: var(--space-4);
    border-top: 2px solid var(--border);
}

.result-label {
    font-size: var(--font-size-sm);
    color: var(--text);
    margin-bottom: var(--space-1);
}

.result-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.result-value.highlight {
    color: var(--success);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-period {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-top: 2px;
}

.calc-disclaimer {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    text-align: center;
    margin-top: var(--space-4);
    line-height: 1.4;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-premium {
    padding: var(--space-24) 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.t-item {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    transition: all var(--transition-bounce);
    position: relative;
}

.t-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-50);
}

.t-rating {
    color: #FFB800;
    font-size: var(--font-size-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.t-item > p {
    font-size: var(--font-size-lg);
    color: var(--dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--space-6);
}

.t-user {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}

.t-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.t-user strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.t-user span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    padding: var(--space-24) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.price-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    background: white;
    transition: all var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-50);
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.2);
    background: linear-gradient(to bottom, white, #f8fafc);
    z-index: 2;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow);
}

.price-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border);
}

.price-header h3 {
    font-size: var(--font-size-xl);
    color: var(--dark);
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--space-2);
}

.price .currency {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text);
}

.price .amount {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price .period {
    font-size: var(--font-size-base);
    color: var(--text-light);
}

.price-desc {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.price-features {
    margin-bottom: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.price-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-base);
    color: var(--text);
}

.price-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.price-features li.disabled {
    color: var(--text-light);
    opacity: 0.6;
}

.price-features li.disabled svg {
    color: var(--text-light);
    stroke: var(--text-light);
}

.price-card.featured .btn-primary-big {
    width: 100%;
    justify-content: center;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-12);
    padding: var(--space-4) var(--space-6);
    background: var(--bg);
    border-radius: var(--radius-full);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.guarantee-icon {
    font-size: var(--font-size-2xl);
}

.guarantee-badge div {
    display: flex;
    flex-direction: column;
}

.guarantee-badge strong {
    color: var(--dark);
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.guarantee-badge span {
    color: var(--text);
    font-size: var(--font-size-xs);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: var(--space-24) 0;
    background: var(--bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-50);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-item summary {
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
    font-size: var(--font-size-lg);
    list-style: none;
    position: relative;
    padding-right: 60px;
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: var(--space-6);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-2xl);
    color: var(--primary);
    font-weight: 300;
    transition: transform var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-content {
    padding: 0 var(--space-8) var(--space-6);
    color: var(--text);
    line-height: 1.6;
    font-size: var(--font-size-base);
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    margin-bottom: var(--space-4);
}

.faq-content p:last-child {
    margin-bottom: 0;
}

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

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

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
    padding: var(--space-24) 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: white;
    line-height: 1.2;
}

.cta-content > p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    opacity: 0.95;
}

.cta-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.btn-cta-large {
    background: white;
    color: var(--primary);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: var(--font-size-lg);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    text-align: center;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.4);
    color: var(--primary);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.btn-ghost {
    background: transparent;
    color: white;
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: var(--font-size-lg);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all var(--transition);
    backdrop-filter: blur(10px);
    text-align: center;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    color: white;
}

.cta-badges {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Background Elements */
.cta-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    filter: blur(60px);
}

.cta-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -20%;
    left: -10%;
    animation: float-cta 15s infinite ease-in-out;
}

.cta-orb.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -10%;
    right: -5%;
    animation: float-cta 15s infinite ease-in-out reverse;
}

@keyframes float-cta {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: white;
    border-top: 1px solid var(--border);
    padding-top: var(--space-20);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-16);
    padding-bottom: var(--space-16);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-6);
}

.footer-brand p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-size: var(--font-size-base);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.footer-col h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--space-5);
    font-size: var(--font-size-base);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col li a,
.footer-col li button {
    color: var(--text);
    font-size: var(--font-size-base);
    transition: color var(--transition);
    display: inline-block;
}

.footer-col li a:hover,
.footer-col li button:hover {
    color: var(--primary);
}

.link-style {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.footer-bottom {
    background: var(--bg);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}




/* ==========================================
   MOBILE STICKY CTA
   ========================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: linear-gradient(to top, white 80%, transparent);
    z-index: 998;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.mobile-sticky-cta button {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

/* ==========================================
   ANIMAÇÕES DE ENTRADA (SCROLL)
   ========================================== */
.fade-up,
.fade-in,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up {
    transform: translateY(30px);
}

.fade-in-right {
    transform: translateX(30px);
}

/* Classe controlada pelo script.js */
.visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 4%;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text h1 {
        text-align: center;
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .social-proof-hero {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .price-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .showcase-display {
        grid-template-columns: 1fr;
    }
    
    .comp-box {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .comp-divider {
        writing-mode: horizontal-tb;
        padding: var(--space-4);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .mobile-sticky-cta {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .floating-card {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        gap: var(--space-6);
    }
    
    .logo-item {
        font-size: var(--font-size-base);
    }
    
    .calc-stats {
        justify-content: center;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-large,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .comp-item {
        padding: var(--space-6);
    }
    
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: var(--font-size-2xl);
    }
    
    .price-card {
        padding: var(--space-6);
    }
    
    .faq-item summary {
        font-size: var(--font-size-base);
        padding: var(--space-4);
        padding-right: 50px;
    }
    
    .faq-content {
        padding: 0 var(--space-4) var(--space-4);
    }
    
    .tab-btn {
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-4);
    }
    
    .showcase-tabs {
        gap: var(--space-2);
    }
}



/* Focus visible para navegação por teclado */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip link para acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Seleção de texto */
::selection {
    background: var(--primary-50);
    color: var(--primary-dark);
}


/* Página auxiliares */
.page .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-4);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #FFF;
    background: linear-gradient(135deg, #0F172A 0%, #1e3a8a 50%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

    
/* Efeito de partículas sutis no fundo */
.page::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(120deg); }
    66% { transform: translate(30px, -20px) rotate(240deg); }
}

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

.page .logo {
    position: fixed;
    top: 20px;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.page .logo:hover {
    transform: translateX(-50%) scale(1.05);
}

.page  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}   

.page  .close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.page section forms {
    position: relative;
    width: 100%;
    transform: none;
    top: auto;
    left: auto;
}

.page section forms photo {
    position: relative;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.page section forms photo img {
    margin:0 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.page section forms photo img:hover {
    transform: scale(1.05) translateX(-50%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 0.1),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.page section forms b {
    float: none;
    width: 100%;
    text-align: center;
    padding: 0 0 8px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.page section forms name,
.page forms time {
    float: none;
    width: 100%;
    height: 22px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: block;
}

.page section forms field {
    float: none;
    width: 100%;
    margin-bottom: 16px;
    position: relative;
    display: block;
}

.page section forms field text {
    float: none;
    width: 100%;
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page section forms field text img {
    float: none;
    max-width: 16px;
    max-height: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    filter: brightness(0) invert(1);
}

.page section forms field text img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.page section forms field input,
.page section forms field select {
    display:block;
    float: none;
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    margin-bottom: 0;
    padding-left: 44px;
    padding-right: 48px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    background-size: 20px;
    background-position: 14px center;
    background-repeat: no-repeat;
}

        .page section forms field input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .page section forms field input:hover,
        .page section forms field select:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.25);
        }

        .page section forms field input:focus,
        .page section forms field select:focus {
            border-color: rgba(99, 102, 241, 0.5);
            background: rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

.page section forms field button {
    position: absolute;
    right: 6px;
    top: 35px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
   
}

.page section forms field button:hover {
    padding-left: 3px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

        .page section forms field button img {
            width: 16px;
            height: 16px;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease;
        }

        .page section forms field button:hover > img {
            left: 0;
            transform: translateX(3px);
        }

        .page section forms field message {
            float: none;
            display: inline-block;
            min-width: 1px;
            height: auto;
            font-size: 12px;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 8px;
            transition: all 0.2s;
            position: relative;
            padding-left: 0;
        }

        .page section forms field message:hover {
            color: #818cf8;
        }

        .page section forms field message::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #818cf8;
            transition: width 0.3s;
        }

        .page section forms field message:hover::after {
            width: 100%;
        }

        .page section forms field section {
            float: right;
            min-width: 1px;
            height: 16px;
            font-size: 12px;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 8px;
        }

        .page section forms span {
            cursor: context-menu;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Container do Google Auth redesenhado */
        .page section forms .content-auth-google {
            float: none;
            width: 100%;
            height: auto;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            top: 0;
        }

        .page section forms .content-auth-google::before {
            content: 'ou';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(30, 41, 59, 0.8);
            padding: 0 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page section forms #auth-google {
            position: relative;
            left: 0;
            margin-top: 8px;
        }

        /* Ajuste responsivo */
        @media (max-width: 480px) {
            .page section.login {
                padding: 50px 24px 32px;
                margin: 16px;
            }

            .page section .logo {
                width: 140px;
                top: -30px;
            }

            .page section forms b {
                font-size: 20px;
            }
        }

        /* Animação de shake para erros (pode ser usada via JS) */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        .shake {
            animation: shake 0.5s ease-in-out;
        }

        /* Loading state melhorado */
        .page section forms field button img[src*="loading"] {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }