/* Text79 Professional Minimalist Brand Styles */

:root {
    /* Brand Colors */
    --primary-blue: #4070B7;
    --secondary-blue: #61C2D3;
    --accent-blue: #39A1DB;
    --dark-blue: #1A5B94;
    --light-blue: #F5F9FC;
    --lighter-blue: #EBF5F9;
    --neutral-100: #F8F9FA;
    --neutral-200: #E9ECEF;
    --neutral-300: #DEE2E6;
    --neutral-700: #495057;
    --neutral-900: #212529;
    
    /* Typography - Professional Minimalist */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Typography - Clean & Professional */
body {
    font-family: var(--font-primary);
    color: var(--neutral-900);
    line-height: 1.6;
    font-weight: var(--font-normal);
    font-size: var(--text-base);
}

/* Headings - Minimalist Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.03em;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
}

h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
}

h4 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
}

p {
    margin-bottom: var(--space-md);
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 2rem;
    color: var(--dark-blue);
}

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

.logo-robot {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
}

/* Brand Color Classes */
.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-blue); }
.text-accent { color: var(--accent-blue); }
.text-dark { color: var(--dark-blue); }

.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--secondary-blue); }
.bg-accent { background-color: var(--accent-blue); }
.bg-dark { background-color: var(--dark-blue); }

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--primary-font), var(--fallback-font);
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

/* Brand Elements */
.brand-section {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.technology-badge {
    background-color: var(--accent-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* =================================
   LAYOUT & STRUCTURE
   ================================= */

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

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

body {
    font-family: var(--font-primary);
    color: var(--neutral-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* =================================
   HEADER & NAVIGATION
   ================================= */

.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav {
    padding: var(--space-lg) 0;
}

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFadeIn 0.8s ease-out;
}

.logo h2 {
    font-size: var(--text-2xl);
    color: var(--primary-blue);
    font-family: var(--font-display);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo a:hover {
    opacity: 0.85;
}

.logo a:hover img {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1);
}

.logo a:active img {
    transform: scale(0.95);
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.btn-login {
    background-color: var(--primary-blue);
    color: white !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
}

.btn-login::after {
    display: none;
}

.btn-login:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(62, 110, 180, 0.08);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =================================
   BUTTONS
   ================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-semibold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: var(--text-base);
    font-family: var(--font-primary);
    line-height: 1;
    gap: var(--space-sm);
}

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

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--neutral-300);
}

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

.btn-large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* =================================
   HERO SECTIONS
   ================================= */

.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 0 6rem 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(64, 112, 183, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(57, 161, 219, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--neutral-900);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
    font-weight: var(--font-extrabold);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--neutral-700);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    font-weight: var(--font-normal);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    margin-top: var(--space-2xl);
}

.platform-mockup {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-xl);
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-200);
}

.platform-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(64, 112, 183, 0.15);
}

.mockup-screen {
    display: flex;
    gap: var(--space-lg);
    font-size: 3rem;
    color: var(--primary-blue);
}

/* Page Hero Variations */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    color: white;
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.page-hero-content p {
    font-size: var(--text-lg);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    line-height: 1.6;
}

/* =================================
   STATS SECTION
   ================================= */

.stats {
    padding: 5rem 0;
    background: white;
}

.stats h2 {
    text-align: center;
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-3xl);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--neutral-100);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: var(--font-extrabold);
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-base);
    color: var(--neutral-700);
    font-weight: var(--font-medium);
}

.counter {
    display: inline-block;
}

/* =================================
   DIFERENCIAL SECTION
   ================================= */

.diferencial {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--neutral-100) 0%, white 100%);
}

.diferencial h2 {
    text-align: center;
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-3xl);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

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

.diferencial-item {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.diferencial-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
}

.diferencial-item h3 {
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
}

.diferencial-item p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* =================================
   FEATURES SECTION
   ================================= */

.features-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: var(--text-4xl);
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--neutral-700);
    margin-bottom: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.feature-icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
}

.feature-card p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.feature-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: gap 0.3s ease;
    font-size: var(--text-sm);
}

.feature-link:hover {
    gap: var(--space-md);
}

/* =================================
   HOW IT WORKS
   ================================= */

.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--neutral-100) 0%, white 100%);
}

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

.step-item {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: calc(var(--space-md) * -1);
    left: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-xl);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin: var(--space-lg) 0 var(--space-md);
}

.step-item h3 {
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    font-weight: var(--font-semibold);
}

.step-item p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* =================================
   TESTIMONIALS
   ================================= */

.testimonials {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
}

.testimonial-info h4 {
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-semibold);
}

.testimonial-info p {
    color: var(--neutral-700);
    font-size: var(--text-sm);
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

/* =================================
   COMPARISON SECTION
   ================================= */

.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, white 50%, var(--lighter-blue) 100%);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: var(--font-extrabold);
}

.comparison-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(64, 112, 183, 0.15);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.comparison-table thead tr th {
    color: white;
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: var(--font-bold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table thead tr th:first-child {
    width: 40%;
}

.comparison-table thead tr th.popular-column::after {
    content: '⭐ MAIS POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: var(--dark-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: var(--font-extrabold);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--neutral-200);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, transparent 0%, var(--light-blue) 50%, transparent 100%);
    transform: scale(1.01);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr td {
    padding: 1.2rem 2rem;
    color: var(--neutral-700);
    font-size: 0.95rem;
    border-right: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.comparison-table tbody tr td:first-child {
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
}

.comparison-table tbody tr td.popular-column {
    background: linear-gradient(135deg, rgba(97, 194, 211, 0.08) 0%, rgba(57, 161, 219, 0.08) 100%);
    font-weight: var(--font-semibold);
    color: var(--primary-blue);
    position: relative;
}

.comparison-table tbody tr:hover td.popular-column {
    background: linear-gradient(135deg, rgba(97, 194, 211, 0.15) 0%, rgba(57, 161, 219, 0.15) 100%);
}

.comparison-table .text-success {
    color: #28a745;
    font-size: 1.5rem;
}

.comparison-table .text-muted {
    color: #dc3545;
    font-size: 1.2rem;
}

.comparison-text79,
.comparison-others {
    text-align: center;
    font-size: var(--text-2xl);
}

.comparison-text79 {
    color: #28a745;
}

.comparison-others {
    color: #dc3545;
}

/* Styled HTML Table */
.table-responsive {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(64, 112, 183, 0.15);
}

.comparison-table-styled {
    width: 100%;
    background: white;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table-styled thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.comparison-table-styled thead tr th {
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: var(--font-bold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table-styled thead tr th:first-child {
    width: 40%;
    text-align: left;
}

.comparison-table-styled thead tr th:last-child {
    border-right: none;
}

.comparison-table-styled thead tr th.highlight-column {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    box-shadow: 0 4px 15px rgba(97, 194, 211, 0.3);
}

/* Animated Logo in Table */
.table-logo-animated {
    height: 50px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    animation: logoFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.table-logo-animated:hover {
    transform: scale(1.1) rotate(5deg);
    animation-play-state: paused;
}

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

.comparison-table-styled tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--neutral-200);
}

.comparison-table-styled tbody tr:hover {
    background: linear-gradient(90deg, transparent 0%, var(--light-blue) 50%, transparent 100%);
    transform: scale(1.005);
}

.comparison-table-styled tbody tr:last-child {
    border-bottom: none;
}

.comparison-table-styled tbody tr td {
    padding: 1.2rem 2rem;
    color: var(--neutral-700);
    font-size: 0.95rem;
    text-align: center;
    border-right: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.comparison-table-styled tbody tr td:first-child {
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    text-align: left;
}

.comparison-table-styled tbody tr td:last-child {
    border-right: none;
}

.comparison-table-styled tbody tr td.highlight-column {
    background: linear-gradient(135deg, rgba(97, 194, 211, 0.08) 0%, rgba(57, 161, 219, 0.08) 100%);
    font-weight: var(--font-semibold);
    position: relative;
}

.comparison-table-styled tbody tr:hover td.highlight-column {
    background: linear-gradient(135deg, rgba(97, 194, 211, 0.15) 0%, rgba(57, 161, 219, 0.15) 100%);
}

.comparison-table-styled .text-success {
    color: #28a745;
    font-size: 1.8rem;
}

.comparison-table-styled .text-danger {
    color: #dc3545;
    font-size: 1.8rem;
}

.comparison-table-styled .text-warning {
    color: #ffc107;
    font-size: 1.8rem;
}

/* =================================
   CAROUSEL PARA QUEM
   ================================= */

.target-audience-carousel {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Carousel Tabs */
.carousel-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    padding: 8px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.carousel-tabs::-webkit-scrollbar {
    display: none;
}

.carousel-tab {
    flex: 1;
    min-width: 180px;
    padding: 16px 24px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    position: relative;
}

.carousel-tab i {
    font-size: 18px;
}

.carousel-tab.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(64, 112, 183, 0.3);
}

.tab-badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: height 0.4s ease;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    min-height: auto;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: stretch;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide.active * {
    opacity: 1 !important;
}

.carousel-slide.active .slide-testimonial,
.carousel-slide.active .testimonial-quote,
.carousel-slide.active .testimonial-quote p,
.carousel-slide.active .testimonial-author,
.carousel-slide.active .testimonial-author strong,
.carousel-slide.active .testimonial-author span {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
}

.carousel-slide.active .testimonial-quote p {
    color: #0f172a !important;
}

.carousel-slide.active .testimonial-author strong {
    color: #1A5B94 !important;
}

.carousel-slide.active .testimonial-author span {
    color: #334155 !important;
}

.slide-content {
    padding: 50px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.slide-content.featured {
    background: linear-gradient(135deg, rgba(64, 112, 183, 0.03) 0%, rgba(97, 194, 211, 0.03) 100%);
    border: 2px solid rgba(64, 112, 183, 0.1);
}

/* Slide Header */
.slide-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
    flex-shrink: 0;
}

.slide-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(64, 112, 183, 0.25);
}

.slide-icon i {
    font-size: 32px;
    color: white;
}

.slide-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Slide Body */
.slide-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex-grow: 1;
}

.slide-body > * {
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-description {
    font-size: 15.5px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 0;
}

.slide-description p {
    margin: 0;
    padding: 0;
    opacity: 1 !important;
}

/* Stats Cards */
.slide-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(64, 112, 183, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

/* Features */
.slide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 0;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #475569;
    padding: 11px 14px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.feature-item:hover {
    background: #e0f2fe;
    transform: translateX(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 17px;
    flex-shrink: 0;
}

/* Features Grid for Schools */
.slide-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.grid-feature {
    background: white;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.grid-feature:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(64, 112, 183, 0.15);
}

.grid-feature i {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.grid-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.grid-feature p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Tags */
.slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
}

.slide-tag {
    padding: 9px 18px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid #bae6fd;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.slide-tag:hover {
    background: linear-gradient(135deg, #bae6fd 0%, #a5d8ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(100, 116, 139, 0.1);
}

/* Testimonial */
.slide-testimonial {
    background: #ffffff !important;
    padding: 28px 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
    position: relative;
    overflow: visible;
}

.slide-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 18px;
    opacity: 1 !important;
    z-index: 1;
    min-height: 50px;
}

.testimonial-quote * {
    color: #0f172a !important;
    opacity: 1 !important;
}

.testimonial-quote i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 28px;
    color: var(--secondary-blue) !important;
    opacity: 0.25 !important;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.testimonial-quote p {
    font-size: 16px;
    font-style: italic;
    color: #0f172a !important;
    line-height: 1.7;
    margin: 0;
    padding-left: 44px;
    padding-right: 8px;
    font-weight: 600 !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
    text-shadow: none;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 44px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(100, 116, 139, 0.1);
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    visibility: visible;
}

.testimonial-author * {
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-author strong {
    font-size: 15px;
    font-weight: 800 !important;
    color: #1A5B94 !important;
    letter-spacing: -0.01em;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.testimonial-author span {
    font-size: 13.5px;
    color: #334155 !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* CTA Button */
.slide-cta {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
}

.slide-cta .btn-large {
    padding: 14px 42px;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--neutral-300);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(64, 112, 183, 0.3);
}

.carousel-arrow i {
    font-size: 14px;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.carousel-arrow:hover i {
    color: white;
}

.carousel-prev {
    left: -18px;
}

.carousel-next {
    right: -18px;
}

/* Pagination Dots */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 28px 0 20px 0;
    position: relative;
}

.pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background: #94a3b8;
    transform: scale(1.3);
}

.pagination-dot.active {
    width: 40px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    box-shadow: 0 2px 8px rgba(64, 112, 183, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .carousel-tabs {
        gap: 8px;
        top: 70px;
        position: sticky;
    }
    
    .carousel-tab {
        min-width: 140px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .carousel-tab i {
        font-size: 16px;
    }
    
    .carousel-slide {
        min-height: 700px;
    }
    
    .slide-content {
        padding: 35px 40px;
    }
    
    .slide-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .slide-title h2 {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .slide-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .slide-features {
        grid-template-columns: 1fr;
    }
    
    .slide-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .target-audience-carousel {
        padding: 60px 0;
    }
    
    .carousel-tabs {
        flex-direction: column;
        gap: 8px;
        top: 60px;
        position: sticky;
    }
    
    .carousel-tab {
        width: 100%;
        min-width: auto;
    }
    
    .carousel-slide {
        min-height: auto;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-body {
        gap: 24px;
    }
    
    .slide-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .slide-icon {
        width: 60px;
        height: 60px;
    }
    
    .slide-icon i {
        font-size: 28px;
    }
    
    .slide-title h2 {
        font-size: 24px;
    }
    
    .slide-subtitle {
        font-size: 15px;
    }
    
    .slide-features-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .carousel-arrow i {
        font-size: 12px;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    /* Testimonial Responsive */
    .slide-testimonial {
        padding: 20px 24px;
        margin-top: 20px;
        border-radius: 14px;
    }
    
    .testimonial-quote i {
        font-size: 24px;
        top: 0;
    }
    
    .testimonial-quote p {
        font-size: 14.5px;
        padding-left: 40px;
        margin: 0;
        line-height: 1.65;
    }
    
    .testimonial-author {
        padding-left: 40px;
        padding-top: 10px;
        margin-top: 6px;
    }
    
    .testimonial-author strong {
        font-size: 13.5px;
    }
    
    .testimonial-author span {
        font-size: 12px;
    }
    
    .slide-cta {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .slide-cta .btn-large {
        padding: 12px 32px;
        font-size: 14.5px;
    }
}

/* =================================
   FOOTER
   ================================= */

.footer {
    background: var(--neutral-900);
    color: white;
    padding: 4rem 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3 {
    margin-bottom: var(--space-md);
    color: white;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
}

.footer-section h4 {
    margin-bottom: var(--space-md);
    color: white;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: var(--text-sm);
}

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

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: var(--text-sm);
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #25d366;
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
}

/* =================================
   CTA SECTION
   ================================= */

.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    color: white;
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    line-height: 1.6;
}

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

/* =================================
   ANIMATION CLASSES
   ================================= */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

@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 slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   RECURSOS PAGE SPECIFIC
   ================================= */

.recursos-main {
    padding: 60px 0;
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sticky-tabs {
    position: sticky;
    top: 80px;
    background: white;
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

.resource-category {
    display: none;
}

.resource-category.active {
    display: block;
}

.category-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.category-intro h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.category-intro p {
    font-size: 1.1rem;
    color: #666;
}

.recursos-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recurso-detailed-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.recurso-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.recurso-detailed-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list i {
    color: #28a745;
    margin-top: 0.2rem;
}

/* =================================
   PRICING PAGE SPECIFIC
   ================================= */

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

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.toggle {
    display: none;
}

.toggle-label {
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle:checked + .toggle-label {
    background: var(--primary-blue);
}

.toggle:checked + .toggle-label::after {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.popular {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.plan-badge {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0 0.25rem;
}

.period {
    font-size: 1.2rem;
    color: #999;
}

.plan-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: #28a745;
    margin-top: 0.2rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* =================================
   PARA QUEM PAGE SPECIFIC
   ================================= */

.target-audience-main {
    padding: 60px 0;
}

.audience-grid-detailed {
    display: grid;
    gap: 3rem;
}

.audience-detailed-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.audience-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.audience-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.audience-content {
    padding: 2.5rem;
}

.audience-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.benefits-section h3,
.use-cases h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.7;
}

.benefits-list i {
    color: #28a745;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--secondary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--dark-blue);
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* =================================
   CONTATO PAGE SPECIFIC
   ================================= */

.contact-main {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--dark-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-method {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    border-bottom: none;
}

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

.method-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.method-detail {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    padding: 10px;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna os ícones brancos */
}

.social-link:hover {
    transform: scale(1.1);
    background: var(--dark-blue);
}

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

.quick-action-btn {
    padding: 1rem;
    background: var(--lighter-blue);
    border-radius: 8px;
    text-align: center;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quick-action-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.quick-action-btn i {
    font-size: 1.8rem;
}

.faq-quick-section {
    padding: 60px 0;
    background: var(--lighter-blue);
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-quick-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.faq-quick-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.faq-quick-item h3 {
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-quick-item p {
    color: #666;
    line-height: 1.7;
}

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

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.location-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: #666;
    line-height: 1.7;
}

/* =================================
   SUCCESS STORIES (PRICING PAGE)
   ================================= */

.success-stories-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--lighter-blue) 0%, white 100%);
}

.success-stories-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: var(--font-extrabold);
}

.section-subtitle {
    text-align: center;
    color: var(--neutral-700);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-story-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(64, 112, 183, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--secondary-blue) 100%);
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(64, 112, 183, 0.2);
    border-color: var(--secondary-blue);
}

.success-quote {
    margin-bottom: 1.5rem;
}

.success-quote i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    opacity: 0.3;
}

.success-content {
    margin-bottom: 2rem;
}

.success-content p {
    color: var(--neutral-700);
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

.success-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--neutral-200);
}

.success-avatar {
    flex-shrink: 0;
}

.success-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(64, 112, 183, 0.2);
}

.success-info h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    margin-bottom: 0.25rem;
}

.success-info p {
    color: var(--neutral-700);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 2px 8px rgba(64, 112, 183, 0.3);
}

.success-badge i {
    font-size: 0.9rem;
}

/* =================================
   FAQ SECTION (PRICING PAGE)
   ================================= */

.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: var(--font-extrabold);
}

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

.faq-accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px rgba(64, 112, 183, 0.08);
    overflow: hidden;
    border: 2px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(64, 112, 183, 0.15);
}

.faq-accordion-item.active {
    border-color: var(--accent-blue);
    box-shadow: 0 6px 25px rgba(64, 112, 183, 0.2);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-accordion-header:hover {
    background: var(--light-blue);
}

.faq-accordion-item.active .faq-accordion-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--lighter-blue) 100%);
}

.faq-accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-accordion-title i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.faq-accordion-title h3 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    margin: 0;
}

.faq-accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-accordion-item.active .faq-accordion-content {
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
}

.faq-accordion-content p {
    color: var(--neutral-700);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding-top: 0.5rem;
}

/* Animação adicional para o ícone */
.faq-accordion-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

/* Melhoria no hover do header */
.faq-accordion-header {
    position: relative;
}

.faq-accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    opacity: 0.05;
    transition: width 0.3s ease;
}

.faq-accordion-header:hover::before {
    width: 100%;
}

/* Responsividade do FAQ */
@media (max-width: 768px) {
    .faq-accordion-header {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-accordion-content {
        padding: 0 1.5rem;
    }
    
    .faq-accordion-item.active .faq-accordion-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-accordion-title h3 {
        font-size: 1rem;
    }
    
    .faq-accordion-title i {
        font-size: 1.25rem;
    }
}

/* =================================
   CHATBOT & MASCOT
   ================================= */

.mascot-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.mascot-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.mascot-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.mascot-fallback {
    font-size: 2.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.mascot-fallback img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: robotBounce 2s ease-in-out infinite;
}

@keyframes robotBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.chatbot-modal {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 400px;
    max-height: 600px;
    z-index: 1001;
}

.chatbot-modal.active {
    display: block;
}

.chatbot-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.chatbot-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.chatbot-title h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chatbot-status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.chatbot-close:hover {
    opacity: 0.8;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--light-blue);
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.bot-message .message-content {
    background: white;
    padding: 1rem;
    border-radius: 12px 12px 12px 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 80%;
}

.user-message .message-content {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    border-radius: 12px 12px 4px 12px;
    max-width: 80%;
    align-self: flex-end;
}

.chatbot-quick-replies {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.quick-reply {
    padding: 8px 16px;
    background: var(--lighter-blue);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-reply:hover {
    background: var(--secondary-blue);
    color: white;
}

.chatbot-input-container {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-family: inherit;
    font-size: 0.95rem;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chatbot-send:hover {
    background: var(--dark-blue);
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 968px) {
    :root {
        font-size: 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-xl) 0;
        gap: var(--space-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .chatbot-modal {
        right: var(--space-md);
        left: var(--space-md);
        width: auto;
        bottom: 100px;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    .logo img {
        height: 32px;
    }
    
    h1 {
        font-size: var(--text-4xl);
    }
    
    h2 {
        font-size: var(--text-3xl);
    }
    
    h3 {
        font-size: var(--text-2xl);
    }
    
    .hero {
        padding: var(--space-3xl) 0;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: var(--space-lg);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .stats,
    .diferencial,
    .features-section,
    .how-it-works,
    .testimonials {
        padding: var(--space-3xl) 0;
    }
    
    .stats-grid,
    .diferencial-grid,
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: var(--text-sm);
        padding: var(--space-md);
        gap: var(--space-sm);
    }
    
    .footer {
        padding: var(--space-3xl) 0 var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .page-hero {
        padding: var(--space-3xl) 0;
    }
    
    .page-hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }
    
    .page-hero-content p {
        font-size: var(--text-base);
    }
    
    .cta {
        padding: var(--space-3xl) 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }
    
    .cta-content p {
        font-size: var(--text-base);
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .btn-large {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--text-base);
    }
    
    .mascot-float {
        width: 70px;
        height: 70px;
        bottom: 15px;
        right: 15px;
    }
    
    .mascot-fallback img {
        width: 70%;
        height: 70%;
    }
}

@media (max-width: 480px) {
    .comparison-header,
    .comparison-row {
        font-size: var(--text-xs);
        padding: var(--space-sm);
    }
    
    .comparison-feature {
        font-size: var(--text-sm);
    }
    
    .chatbot-container {
        height: 500px;
    }
    
    .nav-menu {
        gap: var(--space-md);
    }
}

/* =================================
   UTILITY CLASSES
   ================================= */

/* Hide back-to-top button on all pages */
.back-to-top,
.scroll-to-top,
.btn-top,
#back-to-top {
    display: none !important;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-blue); }
.text-accent { color: var(--accent-blue); }
.text-dark { color: var(--neutral-900); }
.text-muted { color: var(--neutral-700); }

.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }

/* Background Utilities */
.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--secondary-blue); }
.bg-accent { background-color: var(--accent-blue); }
.bg-light { background-color: var(--neutral-100); }
.bg-white { background-color: white; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-sm); }
.pt-2 { padding-top: var(--space-md); }
.pt-3 { padding-top: var(--space-lg); }
.pt-4 { padding-top: var(--space-xl); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-sm); }
.pb-2 { padding-bottom: var(--space-md); }
.pb-3 { padding-bottom: var(--space-lg); }
.pb-4 { padding-bottom: var(--space-xl); }

/* Display Utilities */
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-none { display: none; }

/* Flex Utilities */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }

/* Border Utilities */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Width Utilities */
.w-full { width: 100%; }
.max-w-screen { max-width: 100vw; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--primary-blue);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-blue);
    color: white;
}

/* =================================
   JOVENS GÊNIOS STYLE LAYOUT
   ================================= */

/* Hero Grid Layout (Side by Side) */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 600px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero h2.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: var(--font-semibold);
    color: var(--neutral-700);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

/* Stats Section - Jovens Gênios Style */
.stats {
    padding: var(--space-3xl) 0;
    background: var(--neutral-100);
}

.stats .section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    color: #4070B7;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #495057;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

/* About Platform Section */
.about-platform {
    padding: var(--space-3xl) 0;
    background: white;
}

.about-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: var(--neutral-700);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: var(--font-bold);
}

/* Platforms Section */
.platforms-section {
    padding: var(--space-3xl) 0;
    background: var(--light-blue);
}

.platforms-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: var(--space-3xl);
}

.platform-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

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

.platform-card.platform-right .platform-content {
    order: 1;
}

.platform-card.platform-right .platform-image {
    order: 2;
}

.platform-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: var(--primary-blue);
    opacity: 0.85;
}

.platform-content h3 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
    font-weight: var(--font-bold);
}

.platform-content p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: var(--space-xl);
}

@media (max-width: 968px) {
    .platform-card {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .platform-card.platform-right .platform-content,
    .platform-card.platform-right .platform-image {
        order: initial;
    }
    
    .platform-image {
        font-size: 6rem;
    }
}

/* Partners Section */
.partners-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.partners-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: var(--space-3xl);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: var(--neutral-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    min-height: 150px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.partner-logo i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.partner-logo span {
    font-size: var(--text-sm);
    color: var(--neutral-700);
    font-weight: var(--font-semibold);
    text-align: center;
}

/* Testimonials - Updated Style */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--light-blue);
}

.testimonials .section-title {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: var(--space-3xl);
}

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

.testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.75rem;
    color: white;
}

.testimonial-info h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--neutral-700);
    margin: 0;
}

.testimonial-quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 2.5rem;
    color: var(--secondary-blue);
    opacity: 0.2;
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--neutral-700);
    font-style: italic;
}

/* Footer - Expanded JG Style */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand h3 {
    font-size: var(--text-3xl);
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--text-base);
    line-height: 1.6;
         color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.footer-section h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: var(--space-lg);
}

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

.footer-section ul li {
    margin-bottom: var(--space-md);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-blue);
    padding-left: 5px;
}

.footer .social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-lg);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* Section Spacing - JG Style */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: var(--font-extrabold);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--neutral-700);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto var(--space-2xl) auto;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Floating Chatbot Button */
.floating-chatbot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(64, 112, 183, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    outline: none;
}

.floating-chatbot:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(64, 112, 183, 0.6);
    background: var(--dark-blue);
}

.floating-chatbot img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Floating Robot Button */
.floating-robot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 97px;
    height: 97px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(64, 112, 183, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    animation: float-bounce 3s ease-in-out infinite;
}

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

@keyframes robot-wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.floating-robot:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 50px rgba(64, 112, 183, 0.5);
    background: var(--dark-blue);
    animation: float-bounce 3s ease-in-out infinite, pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 12px 50px rgba(64, 112, 183, 0.5);
    }
    50% {
        box-shadow: 0 12px 60px rgba(64, 112, 183, 0.7);
    }
}

.floating-robot img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: robot-wave 2s ease-in-out infinite;
}

/* Responsive adjustments for chatbot button */
@media (max-width: 768px) {
    .floating-chatbot {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-chatbot img {
        width: 38px;
        height: 38px;
    }
    
    .floating-robot {
        width: 70px;
        height: 70px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-robot img {
        width: 68px;
        height: 68px;
    }
}

/* Chat Modal Styles */
.chat-modal {
    position: fixed;
    bottom: 140px;
    right: 2rem;
    width: 380px;
    max-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chat-modal.active {
    display: flex;
}

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

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 8px;
    filter: none;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.chat-close:hover {
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: var(--neutral-100);
    max-height: 350px;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
}

.bot-message .message-content {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 12px 12px 12px 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 80%;
}

.user-message .message-content {
    background: var(--primary-blue);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px 12px 4px 12px;
    max-width: 80%;
    align-self: flex-end;
}

.chat-quick-options {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--neutral-200);
    flex-wrap: wrap;
}

.quick-option {
    flex: 1;
    min-width: 100px;
    padding: 0.6rem 0.8rem;
    background: var(--light-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 10px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.quick-option:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.chat-input-area {
    display: flex;
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--neutral-200);
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--primary-blue);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chat-send:hover {
    background: var(--dark-blue);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .chat-modal {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 100px;
        max-height: 500px;
    }
}

/* =========================================
   RESPONSIVE - NEW SECTIONS (PRICING PAGE)
   ========================================= */

@media (max-width: 768px) {
    /* Responsive - Comparison Table */
    .comparison-table-wrapper {
        border-radius: var(--radius-md);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table thead tr th {
        padding: 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-table thead tr th.popular-column::after {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .comparison-table tbody tr td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Responsive - Comparison Table Styled (New) */
    .table-responsive {
        border-radius: var(--radius-md);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 1rem;
    }
    
    .comparison-table-styled {
        min-width: 600px;
    }
    
    .comparison-table-styled thead tr th {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .table-logo-animated {
        height: 35px;
    }
    
    .comparison-table-styled tbody tr td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .comparison-table-styled .text-success,
    .comparison-table-styled .text-danger,
    .comparison-table-styled .text-warning {
        font-size: 1.4rem;
    }
    
    /* Responsive - Success Stories */
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .success-story-card {
        padding: 1.5rem;
    }
    
    .success-content p {
        font-size: 0.95rem;
    }
    
    .success-info h4 {
        font-size: 1rem;
    }
    
    /* Responsive - FAQ Accordion */
    .faq-accordion-item {
        border-radius: var(--radius-md);
    }
    
    .faq-accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .faq-accordion-title {
        gap: 0.8rem;
    }
    
    .faq-accordion-title i {
        font-size: 1.2rem;
    }
    
    .faq-accordion-title h3 {
        font-size: 1rem;
    }
    
    .faq-accordion-content {
        padding: 0 1.5rem;
    }
    
    .faq-accordion-item.active .faq-accordion-content {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .faq-accordion-content p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Text79 - Pages Specific Styles
   Professional, Elegant & Modern Design
   ======================================== */

/* ========================================
   PARA QUEM PAGE - Target Audience
   ======================================== */

/* Hero Section - Para Quem */
.para-quem-hero {
    background: linear-gradient(135deg, #4070B7 0%, #39A1DB 50%, #61C2D3 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.para-quem-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(97, 194, 211, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 112, 183, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.para-quem-hero .page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.para-quem-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.para-quem-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Target Audience Main Section */
.target-audience-main {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F5F9FC 0%, #ffffff 100%);
}

/* Audience Grid */
.audience-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Audience Detailed Cards - Enhanced Design */
.audience-detailed-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(64, 112, 183, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.audience-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4070B7, #61C2D3);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

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

.audience-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(64, 112, 183, 0.15);
    border-color: rgba(64, 112, 183, 0.3);
}

/* Featured Card */
.audience-detailed-card.featured {
    border: 2px solid #4070B7;
    box-shadow: 0 8px 30px rgba(64, 112, 183, 0.15);
}

.audience-detailed-card.featured::before {
    transform: scaleX(1);
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    color: #ffffff;
    padding: 8px 40px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(64, 112, 183, 0.3);
}

/* Audience Header */
.audience-header {
    background: linear-gradient(135deg, #F5F9FC 0%, #EBF5F9 100%);
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(64, 112, 183, 0.3);
    transition: all 0.3s ease;
}

.audience-detailed-card:hover .audience-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(64, 112, 183, 0.4);
}

.audience-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.audience-header h2 {
    color: #1A5B94;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.audience-header .subtitle {
    color: #495057;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* Audience Content */
.audience-content {
    padding: 2.5rem;
}

.audience-description {
    margin-bottom: 2.5rem;
}

.audience-description p {
    color: #495057;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 2.5rem;
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #4070B7;
}

.benefits-section h3 {
    color: #1A5B94;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(4px);
    color: #1A5B94;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #39A1DB;
    font-size: 1.125rem;
}

/* Use Cases */
.use-cases {
    margin-bottom: 2.5rem;
}

.use-cases h3 {
    color: #1A5B94;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(135deg, #EBF5F9, #F5F9FC);
    color: #4070B7;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(64, 112, 183, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.use-case-tags .tag:hover {
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    color: #ffffff;
    border-color: #4070B7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 112, 183, 0.25);
}

/* Stats Highlight */
.stats-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #F5F9FC 0%, #EBF5F9 100%);
    border-radius: 1rem;
}

.stats-highlight .stat {
    text-align: center;
}

.stat-number {
    color: #4070B7;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #495057;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Features Grid (inside cards) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(64, 112, 183, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #F5F9FC;
    border-color: rgba(64, 112, 183, 0.3);
    transform: translateY(-4px);
}

.feature-item i {
    color: #4070B7;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    color: #1A5B94;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #495057;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* Testimonial inside cards */
.audience-content .testimonial {
    background: linear-gradient(135deg, #F5F9FC, #EBF5F9);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #61C2D3;
    margin-bottom: 2rem;
    position: relative;
}

.audience-content .testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(64, 112, 183, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    color: #495057;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-author strong {
    color: #1A5B94;
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Buttons in cards */
.audience-content .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.audience-content .btn-primary {
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    border: none;
    box-shadow: 0 4px 16px rgba(64, 112, 183, 0.3);
}

.audience-content .btn-primary:hover {
    background: linear-gradient(135deg, #39A1DB, #4070B7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64, 112, 183, 0.4);
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: #ffffff;
}

.success-stories h2 {
    text-align: center;
    color: #1A5B94;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

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

.story-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(64, 112, 183, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4070B7, #61C2D3);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(64, 112, 183, 0.15);
    border-color: rgba(64, 112, 183, 0.3);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(64, 112, 183, 0.3);
    transition: all 0.3s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(10deg);
}

.story-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.story-card h3 {
    color: #1A5B94;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-card p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, #EBF5F9, #F5F9FC);
    color: #4070B7;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(64, 112, 183, 0.2);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4070B7 0%, #39A1DB 50%, #61C2D3 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(97, 194, 211, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(26, 91, 148, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   ANIMATION CLASSES
   ================================= */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

@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 slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   RECURSOS PAGE SPECIFIC
   ================================= */

.recursos-main {
    padding: 60px 0;
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sticky-tabs {
    position: sticky;
    top: 80px;
    background: white;
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

.resource-category {
    display: none;
}

.resource-category.active {
    display: block;
}

.category-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.category-intro h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.category-intro p {
    font-size: 1.1rem;
    color: #666;
}

.recursos-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recurso-detailed-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.recurso-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.recurso-detailed-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list i {
    color: #28a745;
    margin-top: 0.2rem;
}

/* =================================
   PRICING PAGE SPECIFIC
   ================================= */

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

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.toggle {
    display: none;
}

.toggle-label {
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle:checked + .toggle-label {
    background: var(--primary-blue);
}

.toggle:checked + .toggle-label::after {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.popular {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.plan-badge {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0 0.25rem;
}

.period {
    font-size: 1.2rem;
    color: #999;
}

.plan-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: #28a745;
    margin-top: 0.2rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* =================================
   PARA QUEM PAGE SPECIFIC
   ================================= */

.target-audience-main {
    padding: 60px 0;
}

.audience-grid-detailed {
    display: grid;
    gap: 3rem;
}

.audience-detailed-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.audience-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.audience-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.audience-content {
    padding: 2.5rem;
}

.audience-description p {
    color: #495057;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 2.5rem;
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #4070B7;
}

.benefits-section h3 {
    color: #1A5B94;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(4px);
    color: #1A5B94;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #39A1DB;
    font-size: 1.125rem;
}

/* Use Cases */
.use-cases {
    margin-bottom: 2.5rem;
}

.use-cases h3 {
    color: #1A5B94;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(135deg, #EBF5F9, #F5F9FC);
    color: #4070B7;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(64, 112, 183, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.use-case-tags .tag:hover {
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    color: #ffffff;
    border-color: #4070B7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 112, 183, 0.25);
}

/* Stats Highlight */
.stats-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #F5F9FC 0%, #EBF5F9 100%);
    border-radius: 1rem;
}

.stats-highlight .stat {
    text-align: center;
}

.stat-number {
    color: #4070B7;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #495057;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Features Grid (inside cards) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(64, 112, 183, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #F5F9FC;
    border-color: rgba(64, 112, 183, 0.3);
    transform: translateY(-4px);
}

.feature-item i {
    color: #4070B7;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    color: #1A5B94;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #495057;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* Testimonial inside cards */
.audience-content .testimonial {
    background: linear-gradient(135deg, #F5F9FC, #EBF5F9);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #61C2D3;
    margin-bottom: 2rem;
    position: relative;
}

.audience-content .testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(64, 112, 183, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    color: #495057;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-author strong {
    color: #1A5B94;
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Buttons in cards */
.audience-content .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.audience-content .btn-primary {
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    border: none;
    box-shadow: 0 4px 16px rgba(64, 112, 183, 0.3);
}

.audience-content .btn-primary:hover {
    background: linear-gradient(135deg, #39A1DB, #4070B7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64, 112, 183, 0.4);
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: #ffffff;
}

.success-stories h2 {
    text-align: center;
    color: #1A5B94;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

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

.story-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(64, 112, 183, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4070B7, #61C2D3);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(64, 112, 183, 0.15);
    border-color: rgba(64, 112, 183, 0.3);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4070B7, #39A1DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(64, 112, 183, 0.3);
    transition: all 0.3s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(10deg);
}

.story-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.story-card h3 {
    color: #1A5B94;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-card p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, #EBF5F9, #F5F9FC);
    color: #4070B7;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(64, 112, 183, 0.2);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4070B7 0%, #39A1DB 50%, #61C2D3 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(97, 194, 211, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(26, 91, 148, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   ANIMATION CLASSES
   ================================= */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

@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 slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   RECURSOS PAGE SPECIFIC
   ================================= */

.recursos-main {
    padding: 60px 0;
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sticky-tabs {
    position: sticky;
    top: 80px;
    background: white;
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

.resource-category {
    display: none;
}

.resource-category.active {
    display: block;
}

.category-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.category-intro h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.category-intro p {
    font-size: 1.1rem;
    color: #666;
}

.recursos-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recurso-detailed-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.recurso-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.recurso-detailed-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list i {
    color: #28a745;
    margin-top: 0.2rem;
}

/* =================================
   PRICING PAGE SPECIFIC
   ================================= */

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

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.toggle {
    display: none;
}

.toggle-label {
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle:checked + .toggle-label {
    background: var(--primary-blue);
}

.toggle:checked + .toggle-label::after {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.popular {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.plan-badge {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0 0.25rem;
}

.period {
    font-size: 1.2rem;
    color: #999;
}

.plan-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: #28a745;
    margin-top: 0.2rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* =================================
   PARA QUEM PAGE SPECIFIC
   ================================= */

.target-audience-main {
    padding: 60px 0;
}

.audience-grid-detailed {
    display: grid;
    gap: 3rem;
}

.audience-detailed-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.audience-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.audience-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.audience-content {
    padding: 2.5rem;
}

.audience-description p {
    color: #495057;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 2.5rem;
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #4070B7;
}

.benefits-section h3 {
    color: #1A5B94;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(4px);
    color: #1A5B94;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #39A1DB;
    font-size: 1.125rem;
}

/* Use Cases */
.use-cases {
    margin-bottom: 2.5rem;
}

.use-cases h3 {
    color: #1A5B94;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(135deg, #EBF5F9, #F5F9FC);
    color: #4070B7;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(64, 112, 183, 0.2);
}

/* =================================
   RESPONSIVE STYLES - PARA QUEM PAGE
   ================================= */

/* Desktop Styles (968px+) */
@media (min-width: 968px) {
    .para-quem-hero h1 {
        font-size: 3.5rem !important;
    }
    
    .page-para-quem .audience-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .page-para-quem .audience-detailed-card {
        padding: 3rem;
    }
    
    .page-para-quem .stories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .page-para-quem .success-stories h2 {
        font-size: 3rem;
    }
}

/* Tablet Styles (768px to 968px) */
@media (max-width: 968px) and (min-width: 769px) {
    .para-quem-hero h1 {
        font-size: 2.75rem !important;
    }
    
    .page-para-quem .audience-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .page-para-quem .audience-detailed-card {
        padding: 2.5rem;
    }
    
    .page-para-quem .audience-content {
        gap: 2rem;
    }
    
    .page-para-quem .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .page-para-quem .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-para-quem .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Mobile Styles (max 768px) */
@media (max-width: 768px) {
    .para-quem-hero {
        padding: 4rem 0 3rem !important;
    }
    
    .para-quem-hero h1 {
        font-size: 2rem !important;
    }
    
    .para-quem-hero p {
        font-size: 1.0625rem !important;
    }
    
    .page-para-quem .target-audience-main {
        padding: 4rem 0;
    }
    
    .page-para-quem .audience-grid-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-para-quem .audience-detailed-card {
        padding: 2rem;
    }
    
    .page-para-quem .audience-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .page-para-quem .audience-header h2 {
        font-size: 1.5rem;
    }
    
    .page-para-quem .audience-icon {
        width: 70px;
        height: 70px;
    }
    
    .page-para-quem .audience-icon i {
        font-size: 2rem;
    }
    
    .page-para-quem .audience-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .page-para-quem .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-para-quem .stats-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .page-para-quem .stat-number {
        font-size: 2rem;
    }
    
    .page-para-quem .success-stories {
        padding: 4rem 0;
    }
    
    .page-para-quem .success-stories h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .page-para-quem .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-para-quem .cta {
        padding: 4rem 0;
    }
    
    .page-para-quem .cta h2 {
        font-size: 2rem;
    }
    
    .page-para-quem .cta p {
        font-size: 1.0625rem;
    }
    
    .page-para-quem .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .page-para-quem .cta-buttons .btn {
        width: 100%;
    }
}

/* =================================
   PRICING TOGGLE ENHANCEMENTS
   ================================= */

/* Animação suave para mudança de preços */
.price .amount {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.pricing-toggle span {
    color: var(--text-color);
    transition: color 0.3s ease;
    user-select: none;
}

.pricing-toggle span small {
    color: #28a745;
    font-size: 0.75rem;
    font-weight: 500;
}

.toggle-label {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-label::after {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* =================================
   PRICING TOGGLE FIXO
   ================================= */

/* Torna o pricing toggle fixo no topo da página */
.page-precos .pricing-toggle {
    position: fixed;
    top: 70px; /* Logo abaixo do header */
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

/* Esconde a barra ao rolar para baixo */
.page-precos .pricing-toggle.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Adiciona espaço no topo da seção de preços para compensar o toggle fixo */
.page-precos .pricing-section {
    padding-top: 140px;
}

/* Melhora a visibilidade do toggle */
.page-precos .pricing-toggle span {
    font-size: 1rem;
    font-weight: 600;
}

/* Destaque no texto "Economize 30%" */
.page-precos .pricing-toggle span small {
    color: #28a745;
    font-weight: 600;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .page-precos .pricing-toggle {
        top: 60px; /* Header menor em mobile */
        padding: 1rem 0;
        gap: 0.75rem;
    }
    
    .page-precos .pricing-toggle span {
        font-size: 0.9rem;
    }
    
    .page-precos .pricing-section {
        padding-top: 120px;
    }
}

/* END OF FILE */

