/* Apresentação Page - AuraJuris */
@import url('base-design-system.css');

/* Hero Section */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding-top: 110px; /* Ajuste para nova navbar (90px + margem) */
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: floatingBubbles 20s ease-in-out infinite;
}

@keyframes floatingBubbles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-60px) translateY(-60px); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 20s ease-in-out infinite;
    opacity: 0.1;
}

.floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    border-radius: 50%;
}

.floating-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    border-radius: 30%;
    background: rgba(255, 255, 255, 0.05);
}

.floating-shape.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: -10s;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    border-radius: 0;
}

.floating-shape.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -7s;
}

.floating-shape.shape-5 {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 50%;
    animation-delay: -3s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }
    to {
        text-shadow: 
            0 2px 20px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(255, 255, 255, 0.1);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-primary:hover::before {
    opacity: 1;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(111, 12, 99, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-primary.large, .cta-secondary.large {
    padding: var(--space-6) var(--space-8);
    font-size: var(--text-lg);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffeaa7;
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-window {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.demo-header {
    background: var(--gray-50);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.demo-controls {
    display: flex;
    gap: var(--space-2);
}

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

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.demo-title {
    font-weight: 600;
    color: var(--gray-900);
}

.demo-content {
    padding: var(--space-6);
}

.chat-message {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.message-content {
    flex: 1;
}

.message-content p {
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.analysis-result {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.result-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    padding: var(--space-2);
    background: var(--success);
    border-radius: var(--radius-sm);
    color: white;
}

.result-item.warning {
    background: var(--warning);
    color: white;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: var(--space-3);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Global Background */
body {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--blue-50) 100%);
    min-height: 100vh;
}

/* Impact Section */
.impact-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--blue-50) 100%);
    position: relative;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236F0C63" fill-opacity="0.02"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-20);
}

.impact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.impact-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    color: white;
}

.impact-icon.society {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.impact-icon.lawyers {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.impact-icon.justice {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.impact-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.impact-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.impact-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.impact-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.impact-benefits i {
    color: var(--success);
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-12);
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6F0C63 0%, #1E3A8A 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
    transform: translateX(30px);
}

.feature-card:nth-child(even) .feature-visual {
    order: 2;
}

.feature-card:nth-child(even) .feature-content {
    order: 1;
}

.feature-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    border: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(111, 12, 99, 0.15);
    border-color: var(--purple-200);
}

.feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}

.visual-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: var(--space-4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .visual-icon::after {
    opacity: 1;
}

.feature-card:hover .visual-icon {
    transform: scale(1.05) rotate(5deg);
}

.visual-icon.chat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.visual-icon.analysis {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.visual-icon.jurisprudence {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.visual-icon.official {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.visual-icon.generation {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.visual-icon.comparison {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.visual-demo {
    width: 100%;
}

.demo-chat {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.chat-bubble {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.chat-bubble.user {
    background: var(--primary-purple);
    color: white;
    margin-left: var(--space-6);
}

.chat-bubble.ai {
    background: var(--gray-200);
    color: var(--gray-900);
    margin-right: var(--space-6);
}

.progress-demo {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.progress-bar {
    background: var(--gray-200);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    height: 100%;
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 75%; }
}

.progress-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.search-demo {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-4);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.search-results .result-item {
    background: white;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    font-size: var(--text-sm);
    color: var(--gray-900);
}

.notification-demo {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.notification {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--primary-purple);
    color: white;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.template-demo {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.template {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.template-header {
    background: var(--primary-purple);
    color: white;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
}

.template-content {
    padding: var(--space-4);
}

.template-line {
    background: var(--gray-200);
    height: 8px;
    border-radius: 4px;
    margin-bottom: var(--space-2);
}

.template-line.short {
    width: 60%;
}

.comparison-demo {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.doc-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.doc-side {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: var(--space-4);
    text-align: center;
    font-size: var(--text-sm);
    font-weight: 600;
    flex: 1;
}

.comparison-arrow {
    font-size: var(--text-lg);
    color: var(--primary-purple);
}

.diff-indicator {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--warning);
    background: var(--warning);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
}

.feature-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.feature-card.featured .feature-content h3 {
    color: white;
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.feature-card.featured .feature-content p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-6);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.feature-card.featured .feature-list li {
    color: white;
}

.feature-list i {
    color: var(--success);
    font-size: 16px;
}

.feature-card.featured .feature-list i {
    color: rgba(255, 255, 255, 0.9);
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--primary-purple);
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card.featured .feature-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-24) 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

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

.testimonial-content {
    margin-bottom: var(--space-6);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
    color: #ffd700;
}

.testimonial-card.featured .stars {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--gray-900);
}

.testimonial-card.featured .testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--gray-900);
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.author-info p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.testimonial-card.featured .author-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatingBubbles 20s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: var(--space-24) 0 var(--space-8);
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: white;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-logo {
    margin-bottom: var(--space-4);
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:first-child {
    margin-bottom: var(--space-2);
}

/* Container Override */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .feature-card:nth-child(even) .feature-visual,
    .feature-card:nth-child(even) .feature-content {
        order: initial;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .visual-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}