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

/* Correções específicas para Chrome */
@supports (-webkit-appearance: none) {
    .logo img {
        -webkit-transform: translateZ(0); /* força aceleração de hardware */
        transform: translateZ(0);
    }
    
    .try-now-btn {
        -webkit-transform: translateZ(0); /* força aceleração de hardware */
        transform: translateZ(0);
    }
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-alt: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
    width: 100%;                /* garante largura total */
    box-sizing: border-box;     /* inclui padding/border na largura */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;                 /* reduzido gap para melhor distribuição */
    position: relative;        /* para posicionamento absoluto do logo */
    width: 100%;               /* garante largura total */
}

@media (max-width: 768px) {
    .nav-container {
        gap: 16px;
        padding: 0 16px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;                  /* espaço entre ícone/texto */
    font-weight: 700;
    font-size: 14px;           /* tamanho do texto */
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 0;            /* removido margin-left problemático */
    flex-shrink: 0;            /* evita que o logo encolha */
}

.logo img {
    width: 200px;              /* tamanho fixo da logo */
    height: auto;              /* mantém proporção */
    max-width: 100%;           /* responsivo */
    display: block;            /* remove espaços inline */
    object-fit: contain;       /* mantém proporção */
}

.logo-icon {
    width: auto;
    height: 24px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    padding: 0 8px;
}

.logo-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0 auto;            /* centraliza o menu */
    padding: 0;                /* remove padding padrão */
    flex: 1;                   /* ocupa espaço disponível */
    justify-content: center;   /* centraliza itens do menu */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient);
    transition: var(--transition);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: 0;           /* removido margin-right problemático */
    flex-shrink: 0;            /* evita que encolha */
}

.try-now-btn {
    background: var(--bg-gradient);
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Safari fallback */
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);    /* Firefox fallback */
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: inline-block;      /* garante comportamento consistente */
    white-space: nowrap;        /* evita quebra de linha */
    text-align: center;         /* centraliza texto */
    vertical-align: middle;     /* alinhamento vertical */
}

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

/* Botão de Login */
.login-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}

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

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

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.login-btn i {
    font-size: 12px;
}

/* Botão de Login Mobile */
.login-btn-mobile {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}

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

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

.login-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.login-btn-mobile i {
    font-size: 14px;
}

.nav-menu-login {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Compensar altura do header fixo */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fbbf24; /* Fallback para navegadores que não suportam background-clip */
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Dashboard Preview */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 380px;
    height: fit-content;
    color: white !important;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-weight: 600;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 16px;
    text-align: center;
    color: white !important;
}

.metric-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white !important;
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.8;
    color: white !important;
}

/* Dashboard Chart */
.dashboard-chart {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-header h4 {
    color: white !important;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.chart-period {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.75rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
    border-radius: 2px 2px 0 0;
    min-height: 8px;
    transition: all 0.3s ease;
}

.bar:hover {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
}

/* Dashboard Automation */
.dashboard-automation {
    display: flex;
    gap: 12px;
}

.automation-item {
    flex: 1;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--border-radius);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
}

.automation-item i {
    font-size: 0.875rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

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

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* Plans Section */
.plans {
    padding: 80px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--bg-gradient);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}



.plan-price {
    margin-bottom: 8px;
    display: flex;
  align-items: baseline;
  gap: 6px;
}

.old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  font-size: 28px;
  font-weight: bold;
  color: #5a57ff; /* mesma cor do destaque atual */
}

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

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

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

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

.plan-features {
    padding: 24px 32px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.plan-features i {
    color: #22c55e;
    font-size: 0.875rem;
}

.plan-footer {
    padding: 24px 32px 32px;
    text-align: center;
}

/* Self-Management Section */
.self-management {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.self-management::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.self-management-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.self-management-text {
    color: white;
}

.self-management-text .section-title {
    color: white;
    margin-bottom: 24px;
}

.self-management-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.self-management-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

.self-management-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: #f8fafc;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.price-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.self-management-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.mockup-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 16px 20px;
}

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

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mockup-logo span {
    color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.mockup-logo i {
    color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e !important;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    visibility: visible !important;
    opacity: 1 !important;
}

.mockup-status span {
    color: #22c55e !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.mockup-status i {
    color: #22c55e !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.mockup-status i {
    font-size: 0.5rem;
}

.mockup-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.mockup-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.mockup-metric {
    background: white;
    border-radius: var(--border-radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--text-primary) !important;
    transition: var(--transition);
}

.mockup-metric:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.mockup-metric i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.mockup-metric .metric-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-metric .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    line-height: 1;
    white-space: nowrap;
}

.mockup-metric .metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary) !important;
    line-height: 1;
}

.mockup-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mockup-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mockup-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mockup-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-section h4 i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    background: #f8fafc;
}

.item-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.platform-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    line-height: 1;
}

.item-guest {
    font-size: 0.625rem;
    color: var(--text-secondary) !important;
    line-height: 1;
}

.item-status {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.item-status.confirmed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.item-status.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.item-date {
    font-size: 0.625rem;
    color: var(--text-secondary) !important;
    font-weight: 600;
    flex-shrink: 0;
}

.mockup-occurrences {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-top: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mockup-occurrences:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mockup-occurrences h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-occurrences h4 i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.occurrence-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.occurrence-item:hover {
    background: #f1f5f9;
}

.occurrence-icon {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.occurrence-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.occurrence-guest {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    line-height: 1;
}

.occurrence-property {
    font-size: 0.625rem;
    color: var(--text-secondary) !important;
    line-height: 1;
}

.occurrence-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.occurrence-source {
    display: flex;
    align-items: center;
}

.occurrence-value {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-primary) !important;
}

.occurrence-date {
    font-size: 0.625rem;
    color: var(--text-secondary) !important;
    font-weight: 600;
}

.occurrence-status {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.occurrence-status.resolved {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.occurrence-details i {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.trial-cta {
    text-align: center;
}

.btn-trial {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-trial:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-trial i {
    font-size: 1.125rem;
}

.trial-note {
    margin-top: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature i {
    width: 48px;
    height: 48px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--border-radius-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section .logo-icon {
    width: auto;
    height: 20px;
    font-size: 10px;
    padding: 0 6px;
}

.footer-section .logo-text {
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 16px 20px;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid #f3f4f6;
        transition: var(--transition);
    }

    .nav-menu li a:hover {
        background: #f8fafc;
        color: var(--primary-color);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
    }
    
    .login-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
        min-width: auto;
    }
    
    .login-btn i {
        font-size: 10px;
    }
    
    .try-now-btn {
        padding: 8px 14px;
        font-size: 12px;
        margin-right: 0;
        background: var(--bg-gradient) !important;
        background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        text-decoration: none !important;
        font-weight: 600;
        display: inline-block;
        border: none;
        transition: var(--transition);
        white-space: nowrap;
        min-width: auto;
    }
    
    .try-now-btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu-login {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .nav-menu-login .login-btn-mobile {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 20px;
        min-height: auto;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

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

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

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }

    .self-management .container {
        padding: 0 12px;
    }

    .self-management-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .self-management-cta {
        align-items: center;
    }

    .self-management-preview {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-chart {
        display: none;
    }
    
    .dashboard-automation {
        flex-direction: column;
    }

    .mockup-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mockup-sections {
        grid-template-columns: 1fr;
    }

    .mockup-logo span,
    .mockup-logo i,
    .mockup-status span,
    .mockup-status i {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dashboard-mockup {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mockup-metric {
        padding: 12px;
        gap: 10px;
    }

    .mockup-metric i {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .mockup-metric .metric-value {
        font-size: 1.25rem;
    }

    .mockup-metric .metric-label {
        font-size: 0.7rem;
    }

    .mockup-sections {
        gap: 12px;
    }

    .mockup-section {
        padding: 12px;
    }

    .mockup-occurrences {
        padding: 12px;
        margin-top: 12px;
    }

    .occurrence-item {
        padding: 10px;
        gap: 8px;
    }

    .occurrence-details {
        gap: 6px;
        flex-wrap: wrap;
    }
}

@media (max-width: 360px) {
    .self-management .container {
        padding: 0 8px;
    }

    .dashboard-mockup {
        width: 100%;
        box-sizing: border-box;
    }

    .mockup-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mockup-metric {
        padding: 10px;
        gap: 8px;
    }

    .mockup-metric i {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .mockup-metric .metric-value {
        font-size: 1.125rem;
    }

    .mockup-metric .metric-label {
        font-size: 0.65rem;
    }

    .mockup-sections {
        gap: 8px;
    }

    .mockup-section {
        padding: 10px;
    }

    .mockup-occurrences {
        padding: 10px;
        margin-top: 8px;
    }

    .occurrence-item {
        padding: 8px;
        gap: 6px;
    }

    .occurrence-details {
        gap: 4px;
    }

    .occurrence-value,
    .occurrence-date {
        font-size: 0.6rem;
    }
}

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

.hero-content,
.hero-image,
.service-card,
.plan-card,
.self-management-content,
.about-content,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de foco para acessibilidade */
.btn:focus,
.nav-menu a:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
