/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #1a1a1a;
    --accent-color: #ff8c42;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-dark: #333333;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #2a2a2a;
    --border-color: #333333;
    --glow-color: rgba(255, 107, 53, 0.3);
    --shadow-color: rgba(255, 107, 53, 0.1);
}

/* Light Mode Variables */
[data-theme="light"] {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #f8f9fa;
    --accent-color: #ff8c42;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-dark: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e1e5e9;
    --glow-color: rgba(255, 107, 53, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header {
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--glow-color);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .logo {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .logo:hover {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--glow-color);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--glow-color) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

.typing-indicator {
    display: none;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 1.4s ease-in-out infinite both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary::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;
}

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

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--glow-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Main GIF */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-lottie {
    width: 100%;
    height: 500px;
    max-width: 500px;
    border-radius: 150px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    /* animation: float 6s ease-in-out infinite; */
    border: none;
    background: transparent;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    filter: drop-shadow(0 8px 16px rgba(255, 107, 53, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.icon-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

.icon-5 {
    top: 15%;
    left: 50%;
    animation-delay: 1s;
}

.icon-6 {
    top: 70%;
    left: 35%;
    animation-delay: 2.5s;
}

.icon-7 {
    bottom: 35%;
    right: 25%;
    animation-delay: 3.5s;
}

.icon-8 {
    top: 25%;
    right: 45%;
    animation-delay: 5s;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.feature-icon img {
    width: 40px;
    height: 40px;
    /* filter: brightness(0) invert(1); */
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--bg-primary);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0.5rem;
    box-shadow: 0 8px 20px var(--shadow-color);
    transition: all 0.3s ease;
    
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px var(--glow-color);
}

.benefit-item:hover .benefit-icon img {
    transform: rotate(5deg);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* color: var(--text-primary); */
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-visual {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}

.benefits-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px var(--glow-color));
    animation: pulse 3s ease-in-out infinite;
}

.benefits-lottie {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    border: none;
    background: transparent;
    filter: drop-shadow(0 20px 40px var(--glow-color));
    animation: pulse 3s ease-in-out infinite;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.economy-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transform: rotate(15deg);
    z-index: 10;
    animation: economyPulse 3s ease-in-out infinite;
}

.economy-badge::before {
    content: "ECONOMIA";
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2px;
}

@keyframes economyPulse {
    0%, 100% {
        transform: rotate(15deg) scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
}

@keyframes economyPulseMobile {
    0%, 100% {
        transform: rotate(12deg) scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: rotate(12deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
}

.economy-badge {
    animation: economyPulse 3s ease-in-out infinite;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-extra {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pricing-extra p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-btn {
    margin-top: auto;
    align-self: center;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--bg-primary);
}

.social-proof-content {
    text-align: center;
}

.social-proof-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-proof-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.testimonial {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Sistema Section */
.sistema {
    padding: 80px 0;
    background: var(--bg-primary);
}

.sistema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.sistema-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sistema-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.sistema-visual {
    position: relative;
    height: 300px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-lottie {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 12px;
}

.atendimento-lottie {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 12px;
}

.sistema-interface {
    background: white;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.interface-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    height: 40px;
    border-radius: 12px 12px 0 0;
}

.interface-content {
    padding: 1rem;
    height: calc(100% - 40px);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    height: 100%;
}

.grid-item {
    background: #f0f0f0;
    border-radius: 8px;
    position: relative;
    opacity: 0;
    animation: appearDetails 2s ease-in-out infinite;
}

.grid-item:nth-child(1) { animation-delay: 0.2s; }
.grid-item:nth-child(2) { animation-delay: 0.4s; }
.grid-item:nth-child(3) { animation-delay: 0.6s; }
.grid-item:nth-child(4) { animation-delay: 0.8s; }
.grid-item:nth-child(5) { animation-delay: 1s; }
.grid-item:nth-child(6) { animation-delay: 1.2s; }

@keyframes appearDetails {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e5e9;
    animation: floatCard 3s ease-in-out infinite;
}

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

.card-2 {
    top: 10%;
    right: -5%;
    width: 100px;
    animation-delay: 1s;
}

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

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.card-badge {
    background: var(--primary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-content {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.card-item {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.card-trend {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
}

/* Interface de Atendimento */
.atendimento {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
}

.interface-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
}

.header-left .dropdown {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

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

.header-icons .icon {
    font-size: 1.25rem;
    position: relative;
    cursor: pointer;
}

.header-icons .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.interface-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 0.5rem;
}

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

.profile-badge {
    position: absolute;
    top: -5px;
    right: calc(50% - 30px);
    background: #ef4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #e1e5e9;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.profile-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.profile-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.menu-icon {
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.search-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
}

.search-input {
    flex: 1;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.875rem;
    background: #f8f9fa;
    color: var(--text-dark);
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
}

.search-filter {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.filter-icon {
    font-size: 1rem;
    color: white;
}

.toggle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #e1e5e9;
}

.toggle-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sun-icon {
    font-size: 1rem;
    color: var(--text-secondary);
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #e1e5e9;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

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

.whatsapp-icon {
    font-size: 1.5rem;
    color: #25d366;
}

.toggle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.toggle-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sun-icon {
    font-size: 1rem;
    color: var(--text-secondary);
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #e1e5e9;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

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

.whatsapp-icon {
    font-size: 1.5rem;
    color: #25d366;
}

.status-tabs {
    display: flex;
    background: white;
    padding: 0 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.status-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.status-tab.active {
    background: #f8f9fa;
    border-bottom: 3px solid var(--primary-color);
}

.tab-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tab-badge {
    background: #ef4444;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tickets-list {
    background: white;
    flex: 1;
}

.ticket-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ticket-item:hover {
    background: #f8f9fa;
}

.ticket-avatar {
    width: 40px;
    height: 40px;
    background: #e1e5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.ticket-info {
    flex: 1;
}

.ticket-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.ticket-message {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
}

.ticket-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e1e5e9;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: var(--primary-color);
    color: white;
}

.nav-icon {
    font-size: 1.25rem;
}

/* Interface de Avaliação */
.avaliacao {
    padding: 1rem;
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.avaliacao-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.avaliacao-help {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.avaliacao-save {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.avaliacao-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.rating {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.avaliacao-item textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.75rem;
    resize: none;
    background: white;
}

/* Avaliação Lottie */
.avaliacao-lottie {
    width: 100%;
    height: 300px;
    border: none;
    background: transparent;
    border-radius: 12px;
}

/* Dados Lottie */
.dados-lottie {
    width: 100%;
    height: 300px;
    border: none;
    background: transparent;
    border-radius: 12px;
}

/* Interface de Dados */
.dados {
    padding: 1rem;
}

.dados-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dados-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.dados-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.dados-generate {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.dados-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    
    gap: 1rem;
}

.dados-card {
    background: rgba(249, 115, 22, 0.15);

    backdrop-filter: blur(10px);
    color: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}

.dados-card:hover {
    transform: translateY(-5px);
    background: rgba(249, 115, 22, 0.55);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.dados-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.dados-card .card-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dados-card .card-label {
    font-size: 0.75rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95);
}

.sistema-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.sistema-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sistema-features {
    list-style: none;
}

.sistema-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

[data-theme="light"] .sistema-info h3 {
    color: var(--text-primary);
}

[data-theme="light"] .sistema-info p {
    color: var(--text-secondary);
}

[data-theme="light"] .sistema-features li {
    color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}



/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-logo:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .footer-logo {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .footer-logo:hover {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo .logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo {
        padding: 0.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        position: relative;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0.3;
        filter: blur(1px);
    }
    
    .hero-main-lottie {
        max-width: 300px;
        height: 300px;
        border-radius: 15px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        opacity: 0.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .economy-badge {
        top: 15px;
        right: -8px;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        transform: rotate(12deg);
        animation: economyPulseMobile 3s ease-in-out infinite;
    }
    
    .economy-badge::before {
        font-size: 0.65rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo .logo-text {
        display: none;
    }
    
    .footer-logo {
        padding: 0.5rem;
    }
    
    .benefits-image {
        width: 250px;
        height: 250px;
    }
    
    .benefits-lottie {
        width: 250px;
        height: 250px;
    }
    
    .sistema-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sistema-visual {
        height: 250px;
    }
    
    .dashboard-lottie {
        border-radius: 10px;
    }
    
    .atendimento-lottie {
        border-radius: 10px;
    }
    
    .avaliacao-lottie {
        height: 250px;
        border-radius: 10px;
    }
    
    .dados-lottie {
        height: 250px;
        border-radius: 10px;
    }
    
    .dados-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .avaliacao-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-header {
        padding: 0.75rem;
    }
    
    .search-section {
        padding: 0.75rem;
    }
    
    .toggle-section {
        padding: 0.75rem;
    }
    
    .status-tabs {
        padding: 0 0.75rem;
    }
    
    .status-tab {
        padding: 0.75rem 0.25rem;
    }
    
    .tab-text {
        font-size: 0.75rem;
    }
    
    .ticket-item {
        padding: 0.75rem;
    }
    
    .ticket-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .bottom-nav {
        padding: 0.75rem;
    }
    
    .interface-image {
        border-radius: 6px;
        
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }
    
    .hero-visual {
        opacity: 0.2;
    }
    
    .hero-main-lottie {
        max-width: 250px;
        height: 250px;
        border-radius: 10px;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .benefits-image {
        width: 200px;
        height: 200px;
    }
    
    .benefits-lottie {
        width: 200px;
        height: 200px;
    }
    
    .sistema-visual {
        height: 200px;
    }
    
    .dashboard-lottie {
        border-radius: 8px;
    }
    
    .atendimento-lottie {
        border-radius: 8px;
    }
    
    .dados-cards {
        grid-template-columns: 1fr;
    }
    
    .avaliacao-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none;
    }
} 