/* ========================================
   GUIA.AI Landing Page - Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Turquoise */
    --primary-50: #e6faf6;
    --primary-100: #b3f0e6;
    --primary-200: #80e6d6;
    --primary-300: #4ddcc6;
    --primary-400: #29D6B9;
    --primary-500: #29D6B9;
    --primary-600: #24c4a8;
    --primary-700: #1fb296;
    --primary-800: #1a9f85;
    --primary-900: #158d74;
    
    /* Secondary Colors - Same Turquoise */
    --secondary-50: #e6faf6;
    --secondary-100: #b3f0e6;
    --secondary-200: #80e6d6;
    --secondary-300: #4ddcc6;
    --secondary-400: #29D6B9;
    --secondary-500: #29D6B9;
    --secondary-600: #24c4a8;
    --secondary-700: #1fb296;
    --secondary-800: #1a9f85;
    --secondary-900: #158d74;
    
    /* Accent Colors - Turquoise */
    --accent-400: #5ee3cc;
    --accent-500: #29D6B9;
    --accent-600: #24c4a8;
    
    /* Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0a1628;
    
    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #29D6B9 0%, #29D6B9 100%);
    --gradient-secondary: linear-gradient(135deg, #29D6B9 0%, #24c4a8 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #0f172a 100%);
    --gradient-text: linear-gradient(135deg, #29D6B9 0%, #29D6B9 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(41, 214, 185, 0.3);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

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

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

/* ========================================
   Utility Classes
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge.badge-gov {
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    color: white;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(41, 214, 185, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(41, 214, 185, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.btn-white {
    background: white;
    color: var(--primary-700);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

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

.header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.header.scrolled .logo-img {
    filter: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
}

.header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

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

.header:not(.scrolled) .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.header-cta {
    padding: 12px 24px;
}

.header:not(.scrolled) .header-cta {
    background: white;
    color: var(--primary-700);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.header:not(.scrolled) .mobile-menu-btn span {
    background: white;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(41, 214, 185, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(41, 214, 185, 0.15) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge i {
    color: var(--accent-400);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-400);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

.mockup-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(41, 214, 185, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.phone-mockup {
    position: relative;
    z-index: 1;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 16px;
}

.phone-screen {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a365d 100%);
    border-radius: 28px;
    height: calc(100% - 44px);
    padding: 20px;
    overflow: hidden;
}

.app-header-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-greeting {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.app-location {
    font-size: 0.75rem;
    color: var(--accent-400);
}

.app-location i {
    margin-right: 4px;
}

.app-search-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.app-search-mock i {
    color: var(--gray-400);
}

.app-search-mock span {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.app-cards-mock {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.app-card-mock {
    flex: 1;
    text-align: center;
}

.app-card-mock .card-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.app-card-mock .card-img i {
    font-size: 1.25rem;
    color: white;
}

.app-card-mock span {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
}

.app-recommendation-mock {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.rec-title {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.rec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rec-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.rec-info {
    flex: 1;
}

.rec-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.rec-meta {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 2;
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--primary-500);
}

.floating-card.card-1 {
    top: 80px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 180px;
    left: -30px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.floating-card.card-2 i {
    color: #29D6B9;
}

.floating-card.card-3 {
    bottom: 60px;
    right: 20px;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-card.card-3 i {
    color: #fbbf24;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   Sobre Section
   ======================================== */
.sobre {
    background: var(--bg-primary);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-content .section-title {
    text-align: left;
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-list li i {
    font-size: 1.25rem;
    color: var(--secondary-500);
}

.sobre-visual {
    position: relative;
}

.visual-container {
    position: relative;
    height: 500px;
}

.visual-bg {
    position: absolute;
    inset: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0.1;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.visual-card:hover {
    transform: translateY(-4px);
}

.visual-card.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    padding: 40px;
    text-align: center;
    z-index: 2;
}

.visual-card.main-card:hover {
    transform: translate(-50%, -52%);
}

.visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon i {
    font-size: 2rem;
    color: white;
}

.visual-card.main-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.visual-card.main-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.visual-card.side-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    z-index: 1;
}

.visual-card.side-card i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.visual-card.side-card span {
    font-weight: 600;
    font-size: 0.9375rem;
}

.visual-card.card-top {
    top: 40px;
    right: 0;
    animation: float 4s ease-in-out infinite;
}

.visual-card.card-bottom {
    bottom: 40px;
    left: 0;
    animation: float 4s ease-in-out infinite 1s;
}

.visual-card.card-bottom i {
    color: #29D6B9;
}

/* ========================================
   Como Funciona Section
   ======================================== */
.como-funciona {
    background: var(--bg-secondary);
}

.steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.steps-line {
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-200), var(--secondary-200), var(--accent-400));
    border-radius: 3px;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.step-number span {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.step-content {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.step:hover .step-content {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.step:nth-child(3) .step-icon {
    background: var(--secondary-50);
}

.step:nth-child(3) .step-icon i {
    color: var(--secondary-500);
}

.step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
    background: rgba(62, 234, 212, 0.15);
}

.step:nth-child(4) .step-icon i {
    color: var(--accent-500);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* ========================================
   Benefícios Section
   ======================================== */
.beneficios {
    background: var(--bg-primary);
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.tab-btn i {
    font-size: 1.25rem;
}

.tab-btn:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(41, 214, 185, 0.3);
}

.benefits-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.benefits-panel.active {
    display: block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

#panel-cidade .benefit-icon {
    background: #29D6B9;
}

#panel-estabelecimento .benefit-icon {
    background: #29D6B9;
}

/* ========================================
   Funcionalidades Section
   ======================================== */
.funcionalidades {
    background: var(--bg-secondary);
}

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

.feature-card {
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.feature-card:nth-child(even) .feature-icon-wrapper {
    background: #29D6B9;
}

.feature-card:nth-child(even) .feature-icon-wrapper::before {
    background: #29D6B9;
}

/* ========================================
   Depoimentos Section
   ======================================== */
.depoimentos {
    background: var(--bg-primary);
    overflow: hidden;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    font-size: 1.25rem;
    color: #fbbf24;
}

.rating-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.testimonials-carousel {
    position: relative;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
    min-width: 120px;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    font-size: 0.875rem;
    color: #fbbf24;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.carousel-btn:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dots .dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--primary-500);
}

/* ========================================
   Para Cidades Section
   ======================================== */
.para-cidades {
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.para-cidades::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(41, 214, 185, 0.15) 0%, transparent 60%);
}

.cidades-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cidades-info .section-title {
    text-align: left;
    color: white;
}

.cidades-info .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.cidades-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cidade-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cidade-feature .feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cidade-feature .feature-icon i {
    font-size: 1.25rem;
    color: var(--accent-400);
}

.cidade-feature .feature-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: white;
}

.cidade-feature .feature-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-dots span:first-child {
    background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
    background: #fbbf24;
}

.dashboard-dots span:nth-child(3) {
    background: #22c55e;
}

.dashboard-title {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-content {
    padding: 32px;
}

.dashboard-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.dash-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.dash-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.dash-change {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.dash-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    margin-bottom: 32px;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px 6px 0 0;
    transition: var(--transition-base);
}

.chart-bar:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chart-bar.active {
    background: var(--gradient-primary);
}

.dashboard-metrics {
    display: flex;
    gap: 24px;
}

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

.metric-icon {
    display: block;
    font-size: 1.25rem;
    color: var(--accent-400);
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Para Estabelecimentos Section
   ======================================== */
.para-estabelecimentos {
    background: var(--bg-secondary);
}

.estabelecimentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.estab-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.estab-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #29D6B9;
}

.estab-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: #29D6B9;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.estab-icon i {
    font-size: 1.75rem;
    color: white;
}

.estab-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.estab-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.estab-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.estab-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.estab-benefit i {
    color: var(--secondary-500);
}

.estab-benefit span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.estab-cta {
    text-align: center;
}

.estab-cta .btn {
    background: #29D6B9;
}

/* ========================================
   Diferenciais Section
   ======================================== */
.diferenciais {
    background: var(--bg-primary);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diferencial-card {
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-text);
    opacity: 0;
    transition: var(--transition-base);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.diferencial-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.diferencial-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.diferencial-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   Screenshots Section
   ======================================== */
.screenshots {
    background: var(--bg-secondary);
    overflow: hidden;
}

.screenshots-carousel {
    position: relative;
    padding: 0 60px;
}

.screenshots-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}

.screenshot-item {
    flex: 0 0 auto;
    text-align: center;
}

.screenshot-phone {
    width: 200px;
    height: 420px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.screenshot-item:hover .screenshot-phone {
    transform: translateY(-8px);
}

.screenshot-screen {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    height: 100%;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
}

/* Screen Home */
.screen-home .screen-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sh-greeting {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.sh-location {
    font-size: 0.6875rem;
    color: var(--accent-400);
}

.screen-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.screen-search i {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.screen-search span {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.screen-categories {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.screen-categories .cat {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.screen-categories .cat i {
    display: block;
    font-size: 1rem;
    color: var(--accent-400);
    margin-bottom: 4px;
}

.screen-categories .cat span {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Screen Roteiro */
.screen-roteiro {
    padding-top: 30px;
}

.roteiro-header {
    margin-bottom: 20px;
}

.roteiro-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(62, 234, 212, 0.2);
    color: var(--accent-400);
    font-size: 0.5625rem;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.roteiro-header h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

.roteiro-meta {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
}

.roteiro-timeline {
    flex: 1;
}

.tl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    position: relative;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 28px;
    width: 2px;
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.1);
}

.tl-item:last-child::before {
    display: none;
}

.tl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.tl-item.active .tl-dot {
    background: var(--accent-400);
    box-shadow: 0 0 10px var(--accent-400);
}

.tl-item span:not(.tl-dot) {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.tl-item.active span:not(.tl-dot) {
    color: white;
    font-weight: 500;
}

/* Screen Audio */
.screen-audio {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.audio-art {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.audio-art i {
    font-size: 2rem;
    color: white;
}

.screen-audio h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

.audio-desc {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.audio-progress {
    width: 100%;
    margin-bottom: 16px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-400);
    border-radius: 2px;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.audio-controls i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.play-btn {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    color: var(--primary-700);
}

/* Screen Map */
.screen-map {
    padding: 0;
}

.map-placeholder {
    flex: 1;
    position: relative;
    background: #243b5a;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-marker {
    position: absolute;
    font-size: 1.25rem;
    color: var(--primary-400);
}

.map-marker.m1 { top: 25%; left: 30%; }
.map-marker.m2 { top: 45%; left: 60%; }
.map-marker.m3 { top: 65%; left: 40%; }

.map-route {
    position: absolute;
    top: 30%;
    left: 35%;
    width: 80px;
    height: 60px;
    border: 2px dashed rgba(62, 234, 212, 0.5);
    border-radius: 20px;
    transform: rotate(-15deg);
}

.map-user {
    position: absolute;
    bottom: 20%;
    right: 30%;
    font-size: 0.75rem;
    color: var(--accent-400);
    animation: pulse 2s infinite;
}

.map-info {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
}

.map-dest {
    display: block;
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
    margin-bottom: 2px;
}

.map-time {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Screen Recs */
.screen-recs {
    padding-top: 30px;
}

.recs-title {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.rec-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.rec-card .rec-img {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-card .rec-img i {
    color: white;
}

.rec-details {
    flex: 1;
    text-align: left;
}

.rec-details .rec-name {
    display: block;
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
}

.rec-details .rec-type {
    display: block;
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.5);
}

.rec-details .rec-rating {
    font-size: 0.625rem;
    color: #fbbf24;
}

/* Screen Dashboard */
.screen-dashboard {
    padding-top: 30px;
}

.dash-title {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.dash-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.dash-stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.dsi-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.dsi-label {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.5);
}

.dash-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.mini-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
}

.mini-bar:last-child {
    background: var(--gradient-primary);
}

.screenshot-label {
    display: block;
    margin-top: 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.screenshots-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.screenshot-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.screenshot-btn:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.faq-item.active {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    background: white;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-500);
    transition: var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CTA Final Section
   ======================================== */
.cta-final {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(41, 214, 185, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(41, 214, 185, 0.2) 0%, transparent 50%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-final .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    color: var(--accent-400);
}

.cta-mockup {
    display: none;
}

.cta-phone {
    width: 200px;
    height: 400px;
}

.cta-phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-2xl);
}

.cta-phone-screen {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-phone-screen i {
    font-size: 3rem;
    color: white;
}

.cta-phone-screen span {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 80px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-500);
    color: white;
}

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

.footer-col h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li span {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: var(--transition-base);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list li i {
    color: var(--primary-400);
    width: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--gray-400);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ========================================
   Scroll Animations (Intersection Observer)
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-mockup {
        order: 0;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .sobre-content .section-title {
        text-align: center;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-line {
        display: none;
    }
    
    .cidades-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cidades-info .section-title {
        text-align: center;
    }
    
    .cidades-info {
        text-align: center;
    }
    
    .cidade-feature {
        text-align: left;
    }
    
    .estabelecimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 100px 24px 40px;
        z-index: 999;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 16px;
        font-size: 1.125rem;
        color: var(--text-primary) !important;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span {
        background: var(--text-primary);
    }
    
    .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);
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .floating-card {
        display: none;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .benefits-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .estabelecimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-carousel {
        padding: 0 20px;
    }
    
    .cta-final .container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .estab-benefits {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
