/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da marca AdvCore baseadas na nova logo */
    --advcore-navy: #1A1B41;
    --advcore-black: #000000;
    --advcore-gold: #d4af37;
    --advcore-gold-light: #f1c40f;
    --advcore-dark: #1a252f;
    --advcore-light: #ecf0f1;
    --advcore-gray: #7f8c8d;
    --advcore-white: #ffffff;
    
    /* Gradientes premium com nova paleta */
    --premium-gradient: linear-gradient(135deg, #d4af37, #f1c40f);
    --hero-gradient: linear-gradient(135deg, #1A1B41, #000000);
    --pro-gradient: linear-gradient(135deg, #1A1B41, #34495e);
    --enterprise-gradient: linear-gradient(135deg, #000000, #1A1B41);
    
    /* Efeitos de brilho luxuoso */
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.4), 0 0 90px rgba(212, 175, 55, 0.2);
    --premium-glow: 0 0 40px rgba(241, 196, 15, 0.8), 0 0 80px rgba(241, 196, 15, 0.6), 0 0 120px rgba(241, 196, 15, 0.4);
    --pro-glow: 0 0 30px rgba(26, 27, 65, 0.6), 0 0 60px rgba(26, 27, 65, 0.4), 0 0 90px rgba(26, 27, 65, 0.2);
    --enterprise-glow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 80px rgba(0, 0, 0, 0.6), 0 0 120px rgba(0, 0, 0, 0.4);
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--advcore-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 27, 65, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
}

.nav-list a {
    color: var(--advcore-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: var(--advcore-gold);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--premium-gradient);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-login {
    background: var(--premium-gradient);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--advcore-white) !important;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
    color: var(--advcore-white) !important;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: var(--hero-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--premium-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--advcore-gold);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--advcore-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.mockup-placeholder,
.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mockup-placeholder:hover,
.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--advcore-gold);
}

.mockup-placeholder i,
.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--advcore-gold);
}

/* Seções */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--advcore-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--advcore-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-block {
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.feature-block.reverse .row {
    flex-direction: row-reverse;
}

.feature-content {
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--premium-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--advcore-dark);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--advcore-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--advcore-dark);
}

.feature-list i {
    color: var(--advcore-gold);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-image {
    padding: 2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
}

.toggle-label {
    font-weight: 600;
    color: var(--advcore-dark);
}

.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: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--premium-gradient);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: var(--premium-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colunas fixas para os 5 planos */
    gap: 1rem; /* Reduz o gap para caber todos na linha */
    margin-bottom: 4rem;
    justify-content: center;
    align-items: stretch; /* Alinha todos os cards com a mesma altura */
    padding-top: 2rem; /* Adiciona espaço no topo para o badge */
}

.pricing-card {
    background: white;
    border-radius: 15px; /* Reduz o border-radius */
    padding: 1.2rem; /* Reduz ainda mais o padding */
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; /* Permite que elementos saiam do card */
    max-width: none; /* Remove limitação de largura */
    margin: 0; /* Remove margem */
    min-height: 520px; /* Reduz altura mínima */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border: 3px solid var(--advcore-gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: -15px; /* Move o badge para cima do card */
    left: 50%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
    background: var(--premium-gradient);
    color: white;
    text-align: center;
    padding: 0.3rem 1rem; /* Reduz o padding vertical */
    font-weight: 600;
    font-size: 0.8rem; /* Reduz a fonte */
    border-radius: 15px; /* Adiciona border-radius */
    z-index: 10; /* Garante que fique acima do conteúdo */
    white-space: nowrap; /* Evita quebra de linha */
}

/* Card Enterprise - Agora na mesma linha que os outros */
.pricing-card.enterprise-card {
    background: linear-gradient(135deg, #000000, #1A1B41);
    color: white;
    border: 2px solid var(--advcore-gold);
    /* Remove grid-column, transform e margens especiais */
}

.pricing-card.enterprise-card:hover {
    transform: translateY(-10px); /* Mesmo comportamento dos outros cards */
    box-shadow: var(--enterprise-glow);
}

.pricing-card.enterprise-card .plan-name,
.pricing-card.enterprise-card .plan-description,
.pricing-card.enterprise-card .price-value {
    color: white;
}

.pricing-card.enterprise-card .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade para Mobile */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em telas médias */
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
        gap: 1.5rem;
    }
    
    .pricing-card {
        min-height: auto; /* Remove altura mínima no mobile */
        padding: 2rem; /* Aumenta padding no mobile */
    }
}



.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.2rem; /* Reduz de 1.5rem */
    font-weight: 700;
    margin-bottom: 0.3rem; /* Reduz margem */
    color: var(--advcore-dark);
}

.plan-description {
    color: var(--advcore-gray);
    margin-bottom: 0.5rem; /* Reduz de 1rem para 0.5rem */
    font-size: 0.85rem; /* Reduz fonte */
}

.plan-price {
    margin-bottom: 1rem; /* Reduz de 1.5rem para 1rem */
}

.price-value {
    font-size: 1.8rem; /* Reduz de 2.3rem */
    font-weight: 800;
    color: var(--advcore-dark);
}

.price-period {
    color: var(--advcore-gray);
    font-size: 0.8rem; /* Reduz fonte */
}

.plan-features {
    list-style: none;
    margin-bottom: 1rem; /* Reduz de 1.5rem para 1rem */
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem; /* Reduz de 0.5rem para 0.4rem */
    font-size: 0.85rem; /* Reduz fonte */
}

.plan-features i {
    color: var(--advcore-gold);
    margin-right: 0.6rem; /* Reduz margem */
    font-size: 0.9rem; /* Reduz fonte */
}

.plan-button {
    width: 100%;
    padding: 12px; /* Reduz padding */
    border-radius: 8px; /* Reduz border-radius */
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Reduz fonte */
}

.plan-button.primary {
    background: var(--premium-gradient);
    color: white;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.plan-button.secondary {
    background: transparent;
    color: var(--advcore-dark);
    border: 2px solid var(--advcore-gray);
}

.plan-button.secondary:hover {
    background: var(--advcore-dark);
    color: white;
    border-color: var(--advcore-dark);
}

.plan-button.enterprise-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.plan-button.enterprise-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--advcore-gold);
}

/* Comparison Table */
.comparison-table-container {
    margin-top: 4rem;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.comparison-table th {
    background: var(--advcore-dark);
    color: white;
    padding: 1.5rem 1rem;
    font-weight: 600;
    border: none;
}

.comparison-table th.feature-column {
    text-align: left;
    width: 30%;
}

.comparison-table th.plan-column {
    text-align: center;
    width: 14%;
}

.comparison-table th.plan-column.free {
    background: var(--advcore-gray);
}

.comparison-table th.plan-column.basic {
    background: var(--advcore-dark);
}

.comparison-table th.plan-column.premium {
    background: var(--premium-gradient);
}

.comparison-table th.plan-column.pro {
    background: var(--advcore-navy);
}

.comparison-table th.plan-column.enterprise {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.comparison-table tr.category-header td {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
    text-align: center;
    padding: 1.2rem;
    color: var(--advcore-dark);
    border-bottom: 2px solid var(--advcore-gold);
}

.check-icon {
    color: var(--advcore-gold);
    font-size: 1.2rem;
}

.cross-icon {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--advcore-navy);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.footer h5 {
    color: var(--advcore-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--advcore-gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--advcore-gold);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 1rem;
        margin: 0;
    }
    
    .nav-list a {
        font-size: 0.9rem;
    }
    
    .btn-login {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .feature-block .row {
        flex-direction: column;
    }
    
    .feature-block.reverse .row {
        flex-direction: column;
    }
    
    /* Garantir que todas as imagens fiquem embaixo do texto em mobile */
    .feature-block .col-lg-6:has(.feature-image) {
        order: 2;
    }
    
    .feature-block .col-lg-6:has(.feature-content) {
        order: 1;
    }
    
    .feature-content,
    .feature-image {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-block {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:hover {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility classes */
.text-gradient {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-gold {
    box-shadow: var(--gold-glow);
}

.border-gold {
    border-color: var(--advcore-gold) !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--advcore-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--advcore-gold-light);
}



/* App Section */
.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.app-content, .portal-content {
    padding: 2rem;
}

.app-icon, .portal-icon {
    width: 80px;
    height: 80px;
    background: var(--premium-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.app-icon i, .portal-icon i {
    font-size: 2rem;
    color: white;
}

.app-title, .portal-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--advcore-navy);
}

.app-subtitle, .portal-subtitle {
    font-size: 1.1rem;
    color: var(--advcore-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-features, .portal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.app-features li, .portal-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--advcore-dark);
}

.app-features i, .portal-features i {
    color: var(--advcore-gold);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.app-download {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn img {
    height: 50px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.app-image, .portal-image {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Client Portal Section */
.client-portal-section {
    padding: 100px 0;
    background: white;
}

.portal-demo {
    margin-top: 2rem;
}

/* Responsive adjustments for app sections */
@media (max-width: 768px) {
    .app-title, .portal-title {
        font-size: 1.8rem;
    }
    
    .app-content, .portal-content {
        padding: 1rem;
        text-align: center;
    }
    
    .app-image, .portal-image {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .app-download {
        justify-content: center;
    }
    
    .download-btn img {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .app-icon, .portal-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .app-icon i, .portal-icon i {
        font-size: 1.5rem;
    }
    
    .app-title, .portal-title {
        font-size: 1.5rem;
    }
    
    .download-btn img {
        height: 40px;
    }
}
