:root {
    --primary: #00FF94;
    --secondary: #6C63FF;
    --dark: #0A0A0A;
    --light: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.1);
    --blur: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* Navegação com Efeito Vidro */
.glass-nav {
    height: 64px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.tech-dot {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 1px;
}

.tech {
    font-size: 1.2rem;
    font-weight: 500;
}

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

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section com Grid Moderno */
.hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.hero-content {
    text-align: left;
}

.hero-visual {
    position: relative;
}

.chat-interface {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.chat-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.profile-pic::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    color: var(--light);
    font-weight: 500;
}

.profile-status {
    color: #4CAF50;
    font-size: 0.8rem;
}

.chat-messages {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.message.incoming {
    align-self: flex-start;
}

.message.outgoing {
    align-self: flex-end;
}

.message-content {
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.incoming .message-content {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.outgoing .message-content {
    background: var(--primary);
    color: var(--dark);
}

.message-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
    margin-left: 0.5rem;
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

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

/* Interface de Chat Animada */
.platform-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

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

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Seção de Recursos */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 148, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(108, 99, 255, 0.03) 0%, transparent 25%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.feature-card {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    background: transparent;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient);
    border-radius: 24px;
    opacity: 0.15;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.feature-icon i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 148, 0.2);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.feature-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-details ul {
    display: grid;
    gap: 1.5rem;
}

.feature-details li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-details li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-details li i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 148, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-details li:hover i {
    background: rgba(0, 255, 148, 0.15);
    transform: scale(1.05);
}

.feature-detail-content {
    flex: 1;
}

.feature-detail-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light);
    margin-bottom: 0.3rem;
}

.feature-detail-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

@media (max-width: 1200px) {
    .features-grid {
        gap: 4rem 6rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

    .feature-card h3 {
        font-size: 1.6rem;
    }

    .feature-details {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 2rem;
    }
}

/* Hero Section e botões */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.primary-btn, .secondary-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: var(--gradient);
    border: none;
    color: var(--dark);
}

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

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.secondary-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

/* Partículas Tecnológicas */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        max-width: 100%;
    }

    .chat-interface {
        margin: 0 1rem;
    }
}

/* Formulário lateral atualizado */
.contact-form-wrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.contact-form-container {
    background: rgba(244, 244, 244, 0.95);
    border-radius: 12px;
    width: 280px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    background: var(--dark);
    color: var(--light);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form {
    padding: 1rem;
}

.input-group {
    margin-bottom: 0.8rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1);
}

.input-group textarea {
    resize: none;
    height: 60px;
}

.submit-btn {
    width: 100%;
    padding: 0.7rem;
    background: #1a8f4a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #146e3a;
    transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-form-wrapper {
        right: 15px;
        bottom: 15px;
    }

    .contact-form-container {
        width: 260px;
    }
}

/* Footer atualizado */
.footer-contact {
    padding: 2rem 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-info span {
    color: var(--light);
    font-size: 1rem;
}

/* Footer Moderno */
.modern-footer {
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    color: var(--light);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-info {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: 2rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: var(--light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

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

.footer-links-column h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

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

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

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

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        max-width: none;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Seção de Soluções e Preços */
.solutions-pricing-section {
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    padding: 6rem 0;
    color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid de Soluções */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.solution-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.solution-features li i {
    color: var(--primary);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Toggle de Preços */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.toggle-option {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.toggle-option.active {
    color: var(--primary);
}

.discount-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Switch do Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--primary);
    transition: .4s;
    border-radius: 50%;
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
}

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

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card.featured {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: normal;
}

.custom-price {
    font-size: 2rem;
}

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

.price-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-features li i {
    color: var(--primary);
    margin-right: 0.8rem;
}

.price-cta {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: var(--gradient);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.price-cta:hover {
    transform: translateY(-2px);
}

/* Ajuste na largura da seção de soluções */
.solutions-area.narrow-width {
    max-width: 1000px;
    margin: 0 auto;
}

/* Seção de Métricas - Layout Compacto */
.metrics-dashboard-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

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

/* Cards de Métricas */
.metrics-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(0, 255, 148, 0.1);
    color: var(--primary);
}

.metric-info {
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* Grid de Gráficos */
.charts-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.charts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.chart-card h3 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.chart-container {
    height: 250px;
    position: relative;
}

/* Tabela de Desempenho */
.table-container {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.chart-card + .chart-card {
    margin-top: 24px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

th {
    padding: 12px 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

td {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsividade para tabelas */
@media (max-width: 768px) {
    .table-container {
        margin: 0 -16px;
        padding: 0 16px;
    }

    th, td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .chart-card + .chart-card {
        margin-top: 16px;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .metrics-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .metrics-overview {
        grid-template-columns: 1fr;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }

    .chart-container {
        height: 200px;
    }
} 