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

:root {
    --background: #FAFAFA;
    --foreground: #1A1A1A;
    --muted: #6B7280;
    --border: #E5E7EB;
    --card: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #FAFAFA, #F5F5F5);
    color: var(--foreground);
    overflow-x: hidden;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 48px;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    color: white;
    box-shadow: 0 4px 15px rgba(229, 71, 104, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 71, 104, 0.4);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.language-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.language-flag {
    font-size: 1.2rem;
}

.language-name {
    font-size: 0.9rem;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.language-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    background: var(--primary);
    color: white;
}

.language-option.active:hover {
    background: var(--primary);
}

/* Responsive Language Dropdown */
@media (max-width: 768px) {
    .language-dropdown {
        position: relative;
    }
    
    .language-toggle {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .language-name {
        display: none;
    }
    
    .language-menu {
        right: 0;
        min-width: 140px;
    }
    
    .language-option {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    margin-top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -350px;
    left: -350px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(244, 96, 80, 0.4) 0%, rgba(229, 71, 104, 0.2) 50%, rgba(229, 71, 104, 0) 60%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
}

.hero-bg2 {
    position: absolute;
    top: 150px;
    right: -350px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(244, 96, 80, 0.4) 0%, rgba(229, 71, 104, 0.2) 50%, rgba(229, 71, 104, 0) 60%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: left;
    margin-left: 40px;
}

.animated-text-container {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 1.5em;
    vertical-align: baseline;
}

.animated-word {
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.animated-word.active {
    opacity: 1;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(229, 71, 104, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 71, 104, 0.4);
}

/* Chat Bubbles */
.chat-bubble {
    position: absolute;
    border-radius: 20px 20px 20px 0px;
    background: white;
    padding: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    max-width: 240px;
    border: 1px solid var(--border);
    z-index: 1;
}

.chat-bubble1 {
    top: 200px;
    left: 80px;
}

.chat-bubble2 {
    top: 330px;
    right: 96px;
}

.chat-bubble3 {
    top: 450px;
    left: 128px;
}

.chat-bubble4 {
    top: 500px;
    right: 160px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 2px;
}

.waveform::before {
    content: '';
    width: 2px;
    height: 8px;
    background: currentColor;
    border-radius: 1px;
}

.waveform::after {
    content: '';
    width: 2px;
    height: 12px;
    background: currentColor;
    border-radius: 1px;
}

/* Products Section */
.products {
    position: relative;
}

header .logo {
    position: relative;
    top: 20px;
}

header.scrolled .logo {
    position: relative;
    top: 0px;
    height: 30px;
}

.animated-text {
    position: relative;
    left: 7px;
    top: 20px;
    color: #e44767;
    font-weight: bold;
}

.products-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 6rem 0 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.bg-transparent {
    background: linear-gradient(135deg, #FAFAFA, #F5F5F5);
}
.remove-fixed-position {
    transition: all 0.5s ease;
    position: relative;
}

.products-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.products-title p {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0 auto;
}

.scrollama-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.products-steps {
    width: 41.666%; /* 5/12 */
    display: flex;
    flex-direction: column;
    order: 1;
}

.products-image-fixed {
    position: sticky;
    top: calc(9rem + 100px);
    width: 58.333%; /* 7/12 */
    flex-shrink: 0;
    z-index: 1;
    order: 2;
    height: fit-content;
}

.step {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.step .product-card {
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step.active .product-card {
    opacity: 1;
    transform: translateY(0);
}

.step.fade-out .product-card {
    opacity: var(--fade-opacity, 0);
    transform: translateY(-30px);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .products-title h2 {
        font-size: 2.5rem;
    }
    
    .products-header {
        padding: 4rem 0 2rem;
    }
    
    .scrollama-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .products-steps,
    .products-image-fixed {
        width: 100%;
    }
    
    .step {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .step.fade-out .product-card {
        opacity: var(--fade-opacity, 0.3);
        transform: translateY(0);
    }
    
    .product-image {
        max-height: 400px;
    }
}

/* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0 auto;
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: var(--background);
    overflow: hidden;
}

.integrations-hub {
    position: relative;
    height: 600px;
    margin: 4rem 0;
}

.central-logo {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(229, 71, 104, 0.3);
}

.central-logo img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.integration-card {
    position: absolute;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    width: 200px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.integration-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.integration-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.integration-card p {
    color: var(--muted);
    font-size: 0.85rem;
}

.connection-lines {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-lines .line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform-origin: left center;
}

@media (max-width: 768px) {
    .integrations-hub {
        height: auto;
        padding: 2rem 0;
    }

    .central-logo {
        position: relative;
        margin: 2rem auto;
        transform: none;
        top: auto;
        left: auto;
    }

    .integration-card {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .connection-lines {
        display: none;
    }
}

/* Steps Section */
.steps {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.steps .container {
    max-width: 100%;
    padding: 0 40px;
}

.steps-scroll {
    position: relative;
    overflow: visible;
    margin: 0 -40px;
    padding: 20px 40px;
}

.steps-grid-wrapper {
    overflow-x: auto;
    margin: 0 -40px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.steps-grid-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.steps-grid {
    display: flex;
    gap: 24px;
    padding: 24px 40px;
    margin: 0;
    overflow: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.step-card {
    flex: 0 0 320px;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.step-card:hover,
.step-card.active {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.scroll-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.scroll-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--primary-light);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-button:hover {
    background: var(--primary);
}

.scroll-button svg {
    width: 24px;
    height: 24px;
    color: white;
}

.scroll-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-number {
    color: #ffffff;
    font-size: 14px;
    background: var(--primary);
    font-weight: bold;
    width: 40px;
    margin-bottom: 16px;
    text-align: center;
    height: 40px;
    border-radius: 100px;
    padding-top: 10px;
}

.step-header {
    margin-bottom: 16px;
}

.step-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--background);
}

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

.testimonial-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

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

.cta-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.products-title p {
    font-size: 18px;
    color: var(--muted);
    margin: 0 auto;
}

.product-card {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.5s ease;
    width: 100%;
}

.step.active .product-card {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(229, 71, 104, 0.2);
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.step.active .product-icon {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    color: white;
}

.product-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--muted);
    line-height: 1.6;
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 450px; /* Ajustei a altura máxima proporcionalmente */
    object-fit: contain;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.image-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Debug */
.debug {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.8rem;
    z-index: 9999;
    min-width: 200px;
}

.debug .value {
    color: #00ff00;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .cta-content h3 {
        font-size: 2.5rem;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-buttons {
        display: none;
    }

    .chat-bubble {
        display: none;
    }
}

/* Removed float animations - bubbles now only move with parallax */

.how-it-works {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 150vh;
}

.how-it-works .section-header {
    position: sticky;
    top: 100px;
    padding: 0 24px;
    margin-bottom: 60px;
    z-index: 2;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color) 60%, transparent);
}

.how-it-works .section-header h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.how-it-works .section-header p {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 auto;
}

.steps-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.black-text {
    color: black;
}

.steps-track {
    display: flex;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    gap: 24px;
    padding: 0 calc(50% - 480px);
    will-change: transform;
}

.step-card {
    flex: 0 0 320px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    color: #ffffff;
    font-size: 14px;
    background: var(--primary);
    font-weight: bold;
    width: 40px;
    margin-bottom: 16px;
    text-align: center;
    height: 40px;
    border-radius: 100px;
    padding-top: 10px;
}

.step-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon svg {
    color: white;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: white;
}

.footer-contact-link svg {
    flex-shrink: 0;
}

.legal-content {
    padding: 8rem 0 6rem;
    background: var(--background);
}

.legal-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.last-updated {
    color: var(--muted);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.legal-section p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 0 4rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
} 