/* ESTILOS GLOBAIS - CONTROLE DE SCROLL CORRIGIDO */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Reset completo para evitar scroll extra */
* {
    box-sizing: border-box;
}

html, body, div, section, footer {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Estilos Globais */
:root {
    /* Cores da logo */
    --primary-color: #8a2ce2;    /* Roxo principal */
    --secondary-color: #6a1db8;
    --accent-color: #6a1db8;    /* Ajustado para melhor contraste */
    --dark-color: #1a1126;      /* Cor mais escura para melhor contraste */
    --light-color: #f8f9fa;
    --text-color: #f0f0f0;      /* Texto claro para melhor contraste */
    --text-light: #d0d0d0;      /* Texto secundário mais claro */
    --transition: all 0.3s ease;
    
    /* Cores do tema */
    --bg-color: #1a1625;
    --bg-secondary: #241d33;
    --text-primary: #f0e6ff;
    --text-secondary: #b8b2bf;
    --header-bg: rgba(26, 22, 37, 0.95);
    --card-bg: #241d33;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Transições suaves */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Acessibilidade: foco visível apenas para teclado */
*:focus:not(:focus-visible) {
    outline: none !important;
}

*:focus-visible {
    outline: 2px solid var(--accent-color) !important;
    outline-offset: 2px !important;
}

/* Melhor contraste para textos em cards */
.service-card h3, 
.service-card h4, 
.service-card p,
.card h3, 
.card h4, 
.card p,
.service-card,
.card {
    color: var(--text-primary);
}

.service-card .text-muted,
.card .text-muted {
    color: var(--text-secondary) !important;
    opacity: 0.9;
}

/* Garantir que o texto em seções escuras seja legível */
.bg-dark,
.bg-primary,
.bg-secondary {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    background-color: var(--primary-color) !important;
    color: white;
}

/* Estilo para seções com fundo colorido */
.section-colored {
    background-color: var(--card-bg);
    padding: 4rem 0;
    margin: 2rem 0;
}

/* Estilo para containers internos */
.container-inner {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

/* Melhor contraste para links */
a {
    color: var(--primary-color); /* Usando a cor primária do tema */
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

/* Removendo sublinhado padrão de todos os links */
a {
    text-decoration: none !important;
}

/* Aplicando sublinhado apenas no hover dos links de navegação */
.nav-menu > li > a:hover,
.nav-menu > li > a:focus {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

/* Garantindo que apenas o after faça o sublinhado */
.nav-menu > li > a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a:focus::after {
    width: 60%;
}

/* Melhor contraste para links em fundos escuros */
.bg-dark a, 
.bg-primary a, 
.bg-secondary a {
    color: #ffffff !important;
    text-decoration: underline;
}

.bg-dark a:hover, 
.bg-primary a:hover, 
.bg-secondary a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Estilo base dos cards */
.card, 
.service-card {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}


/* =================================
   SEÇÃO DE PLANOS - ESTILOS MELHORADOS
   ================================= */

/* Pricing Grid - Responsivo sem scroll */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 1.5rem 0;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        gap: 10px;
        margin: 1rem 0;
        padding: 0 5px;
    }
}

/* Pricing Cards - Sem overflow problemático */
.pricing-card,
.pricing-header,
.pricing-features,
.pricing-footer {
    overflow: visible;
    max-height: none;
    height: auto;
}

/* Container principal dos planos - sem problemas de overflow */
.pricing,
.pricing-grid {
    overflow: visible;
}

.pricing-card .price {
    font-size: 1.8rem;
    margin: 0.8rem 0 0.3rem;
}

.pricing-card .price span {
    font-size: 2.2rem;
}

.pricing-card .price-period {
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.pricing-features {
    margin: 1rem 0 1.5rem;
}

.pricing-features li {
    font-size: 0.85rem;
    padding: 0.6rem 0;
    line-height: 1.4;
}

.pricing-card .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
}

.pricing-badge {
    font-size: 0.6rem;
    padding: 0.3rem 2.5rem;
    right: -30px;
    top: 15px;
}

@media (max-width: 480px) {
    .pricing-grid {
        gap: 12px;
        margin: 1.5rem 0;
    }
    
    .pricing-card {
        padding: 1.2rem 0.8rem;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .price span {
        font-size: 1.8rem;
    }
    
    .pricing-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .pricing-card .btn {
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
    }
}

/* Estilo base para todos os cards */
.pricing-card {
    background: linear-gradient(145deg, #241d33, #1e172b);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efeito de brilho sutil ao passar o mouse */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Efeito de elevação reduzido para evitar scroll extra */
.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(138, 44, 226, 0.3);
}

/* Cabeçalho do card */
.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

/* Linha decorativa abaixo do cabeçalho */
.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Título do plano */
.pricing-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

/* Preço */
.price {
    color: #fff !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
    display: block;
    line-height: 1.2;
}

/* Valor numérico do preço */
.price span {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin: 0.5rem 0;
}

/* Período do preço */
.price-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

/* Lista de recursos */
.pricing-features {
    margin: 1.5rem 0 2rem;
    text-align: left;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Itens da lista de recursos */
.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* Efeito sutil ao passar o mouse nos itens */
.pricing-features li:hover {
    color: #fff;
    padding-left: 5px;
}

/* Ícones da lista */
.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 0.2rem;
}

/* Rodapé do card */
.pricing-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

/* Botões */
.pricing-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efeito de brilho ao passar o mouse nos botões */
.pricing-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.pricing-card .btn:hover::before {
    left: 100%;
}

/* Botão de contorno */
.pricing-card .btn-outline {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color) !important;
    position: relative;
    z-index: 1;
}

.pricing-card .btn-outline:hover {
    background: rgba(138, 44, 226, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.2);
}

/* Botão primário */
.pricing-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
    color: white !important;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(138, 44, 226, 0.3);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 44, 226, 0.4);
}

/* Badge de destaque */
.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 3.5rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Card em destaque */
.pricing-card.featured {
    border: 1px solid rgba(138, 44, 226, 0.3);
    transform: translateY(-1px);
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #1e1830, #2a1f3d);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Linha superior colorida no card em destaque */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

/* Efeito de brilho ao redor do card em destaque */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(138, 44, 226, 0.5), rgba(106, 29, 184, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: translateY(-1px);
    box-shadow: 0 25px 50px rgba(138, 44, 226, 0.25);
}

/* Seção CTA */
.pricing-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, rgba(138, 44, 226, 0.08), rgba(106, 29, 184, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(138, 44, 226, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* Efeito de partículas sutil no fundo do CTA */
.pricing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 44, 226, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(106, 29, 184, 0.1) 0%, transparent 25%);
    animation: rotate 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Conteúdo do CTA */
.pricing-cta .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Ícone do CTA */
.pricing-cta i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 44, 226, 0.15);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Efeito de brilho ao redor do ícone */
.pricing-cta i::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(138, 44, 226, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* Título do CTA */
.pricing-cta h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* Texto do CTA */
.pricing-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão do CTA */
.pricing-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(138, 44, 226, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 220px;
}

/* Efeito de brilho ao passar o mouse no botão do CTA */
.pricing-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.pricing-cta .btn:hover::before {
    left: 100%;
}

.pricing-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(138, 44, 226, 0.4);
}

/* =================================
   HEADER
   ================================= */

/* Botões do header - Tamanhos otimizados */
.header-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: auto;
    padding-right: 8px;
    flex-shrink: 0;
}

/* Botões do header - Simplificados */
.btn-help, .btn-login {
    background: #ff0000 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    display: inline-block !important;
    margin: 5px !important;
    font-weight: bold !important;
}

/* Ajuste para telas médias */
@media (max-width: 1200px) {
    .header-buttons {
        gap: 5px;
        padding-right: 6px;
    }
    
    .btn-login {
        font-size: 0.6rem;
        padding: 4px 8px;
        border-radius: 14px;
    }
    
    .btn-help {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
    }
}

/* Ajuste para tablets */
@media (max-width: 992px) {
    .header-buttons {
        gap: 4px;
        padding-right: 5px;
    }
    
    .btn-login {
        font-size: 0.55rem;
        padding: 3px 6px;
        border-radius: 12px;
    }
    
    .btn-help {
        font-size: 0.8rem;
        width: 20px;
        height: 20px;
    }
    
    /* Esconder texto do botão em telas menores */
    .btn-login .btn-text {
        display: none;
    }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .header-buttons {
        gap: 3px;
        padding-right: 4px;
    }
    
    .btn-login {
        font-size: 0.5rem;
        padding: 3px 5px;
        border-radius: 10px;
    }
    
    .btn-help {
        font-size: 0.8rem;
        width: 18px;
        height: 18px;
    }
}

.btn-help:hover {
    opacity: 1;
    transform: scale(1.2);
    background: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.btn-login:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
    background: linear-gradient(135deg, #9b3de2 0%, #5a0a9e 100%) !important;
}

.btn-help i {
    font-size: 1.8rem;
}

.btn-login i {
    font-size: 1rem;
    margin-right: 5px;
}

/* Esconde o texto em telas pequenas */
@media (max-width: 992px) {
    .btn-text {
        display: none;
    }
    
    .btn-help {
        padding: 8px 12px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        margin-right: 5px;
    }
    
    .btn-login i, .btn-help i {
        margin: 0;
    }
}

/* Estilos do modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
}

/* Conteúdo do modal */
.modal-content {
    background: linear-gradient(145deg, #1e1830, #2a1f3d);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border: 1px solid rgba(138, 44, 226, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Cabeçalho do modal */
.modal-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-price {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.modal-price span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.6rem;
}

/* Corpo do modal */
.modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-features,
.modal-benefits {
    text-align: left;
}

.modal-features h4,
.modal-benefits h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.modal-features ul,
.modal-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li,
.modal-benefits li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.modal-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.modal-benefits i {
    color: #ffc107;
    margin-right: 0.8rem;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.modal-emoji {
    flex-shrink: 0;
    margin-right: 0.65rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Rodapé do modal */
.modal-footer {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

/* Botão de fechar */
.modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
}

.modal .modal-close:hover {
    color: var(--primary-color);
}

/* Responsividade dos modais */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.2rem;
    }
    
    .modal-price span {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Ícone do botão do CTA */
.pricing-cta .btn i {
    font-size: 1rem;
    margin: 0;
    background: none;
    width: auto;
    height: auto;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Animação do ícone ao passar o mouse */
.pricing-cta .btn:hover i {
    transform: translateX(5px);
}

/* =================================
   RESPONSIVIDADE
   ================================= */

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: translateY(0);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-1px);
    }
    
    .pricing-cta {
        margin-top: 4rem;
        padding: 3rem 1.5rem;
    }
    
    .pricing-cta h3 {
        font-size: 1.8rem;
    }
}

/* Dispositivos móveis */
@media (max-width: 768px) {
    .pricing-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .pricing-header h3 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .price span {
        font-size: 2.6rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    .pricing-cta {
        margin: 3rem 0;
        padding: 2.5rem 1.5rem;
        border-radius: 12px;
    }
    
    .pricing-cta h3 {
        font-size: 1.5rem;
    }
    
    .pricing-cta p {
        font-size: 1rem;
    }
    
    .pricing-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Ajuste do badge para telas menores */
    .pricing-badge {
        font-size: 0.65rem;
        padding: 0.4rem 3rem;
        right: -38px;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .price span {
        font-size: 2.3rem;
    }
    
    .pricing-cta h3 {
        font-size: 1.4rem;
    }
    
    .pricing-cta p {
        font-size: 0.95rem;
    }
}

/* Estilos para a seção de preços */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0 auto 1rem auto;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilo para o período do preço */
.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Melhorias nos botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(138, 44, 226, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .price span {
        font-size: 2.25rem;
    }
    
    .pricing-cta {
        padding: 1.5rem;
    }
    
    .pricing-cta p {
        font-size: 1.1rem;
    }
}

/* Estilos para Cards de Preços */
.pricing-card {
    background-color: var(--card-bg) !important;
    color: var(--text-primary) !important;
}

.pricing-card * {
    color: var(--text-primary) !important;
}

.pricing-card h3,
.pricing-card .price,
.pricing-card .price span,
.pricing-card li,
.pricing-card li i,
.pricing-card .pricing-header h3,
.pricing-card .pricing-features li,
.pricing-card .pricing-features i,
.pricing-card .pricing-features li i.fa-check,
.pricing-card .pricing-features li i.fa-plus,
.pricing-card .pricing-header .price,
.pricing-card .pricing-header .price span {
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

.pricing-card .highlight {
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* Estilo para itens da lista */
.pricing-card .pricing-features ul li,
.pricing-card .pricing-features ul li * {
    color: var(--text-primary) !important;
}

/* Estilo para ícones */
.pricing-card .fas,
.pricing-card .fab,
.pricing-card .far {
    color: var(--text-primary) !important;
}

/* Estilo para botões dentro dos cards de preços */
.pricing-card .btn-outline {
    color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
}

.pricing-card .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
}

.pricing-card .btn-primary {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
}

.pricing-card .btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
}


/* Estilo para títulos */
.card h3,
.card h4,
.service-card h3,
.service-card h4 {
    color: var(--primary-color);
}

.card h3::after,
.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Melhorar espaçamento interno dos cards */
.card-body,
.service-card-body {
    padding: 1.5rem;
}

/* Ícones nos cards */
.card > i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(138, 44, 226, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
}

/* Remover contorno em navegadores WebKit/Blink */
button:focus, a:focus, input:focus, textarea:focus, select:focus, .btn:focus, .menu-item:focus, .service-card:focus, .card:focus, .nav-link:focus, .dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remover highlight ao tocar em elementos no iOS */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Remover estilos de seleção em elementos clicáveis */
a, button, .btn, .menu-item, .service-card, .card, .nav-link, .dropdown-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a[href^="mailto:"],
a[href^="tel:"] {
    -webkit-touch-callout: default;
    -webkit-user-select: auto;
    user-select: auto;
    cursor: pointer;
}

/* Controle de scroll para menu mobile - simplificado */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Reset e ajustes base para mobile - OTIMIZADO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
    padding-top: 0;
    margin: 0;
    min-height: 100vh;
}

/* Forçar elementos a não transbordar horizontalmente */
section, div, header, footer, main, article, aside {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Prevenir scroll vertical ao carregar (exceto hero) */
* {
    max-height: none !important;
}

section:not(.hero) {
    min-height: auto !important;
}

/* Garantir scroll vertical normal */
html, body {
    overflow-y: auto;
}

.footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Forçar fim da página no footer */
body::after {
    display: none !important;
}

footer::after {
    display: none !important;
}

*[style*="position: absolute"],
*[style*="position: fixed"] {
    max-width: 100%;
    overflow-x: hidden;
}

/* Correção para elementos posicionados — apenas desktop */
@media (min-width: 993px) {
    .navbar-center {
        position: relative !important;
        left: auto !important;
        transform: none !important;
    }
}


/* Header - Reescrevendo do zero */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 17, 38, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.navbar-left {
    flex-shrink: 0;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    overflow: visible;
    min-width: 0;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Menu - REGRA FORÇADA com adaptação real por tamanho */
.nav-menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    min-width: 0 !important;
    justify-content: center !important;
}

.nav-menu li {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.nav-menu a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    transition: color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    padding: 3px 6px !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.nav-menu a:hover {
    color: #8a2ce2 !important;
}

/* Botões dentro do menu - estilo de link */
.nav-menu .btn-help,
.nav-menu .btn-login {
    background: none !important;
    border: none !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    transition: color 0.3s ease !important;
    padding: 3px 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.nav-menu .btn-help:hover,
.nav-menu .btn-login:hover {
    color: #8a2ce2 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Botões fora do menu - estilo normal */
.header-buttons .btn-help {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.header-buttons .btn-help:hover {
    color: #8a2ce2;
    transform: scale(1.1);
}

.header-buttons .btn-login {
    background: linear-gradient(135deg, #8a2ce2, #6a1db8);
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-buttons .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.3);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    padding: 5px;
    box-sizing: content-box;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile — menu toggle visível (layout do drawer em seção dedicada no final do CSS) */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .header .navbar {
        padding: 8px 0;
    }
}

/* Ajuste para telas grandes - desktop normal */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 15px !important;
    }
    
    .nav-menu a {
        font-size: 0.9rem !important;
        gap: 3px !important;
        padding: 3px 6px !important;
    }
}

/* Ajuste para desktop padrão */
@media (max-width: 1400px) and (min-width: 1201px) {
    .nav-menu {
        gap: 12px !important;
    }
    
    .nav-menu a {
        font-size: 0.85rem !important;
        gap: 3px !important;
        padding: 3px 6px !important;
    }
}

/* Ajuste para telas médias */
@media (max-width: 1200px) and (min-width: 993px) {
    .nav-menu {
        gap: 10px !important;
    }
    
    .nav-menu a {
        font-size: 0.8rem !important;
        gap: 2px !important;
        padding: 2px 4px !important;
    }
    
    .navbar-center {
        padding: 0 8px !important;
    }
}

/* Tablets usam menu drawer — regras de nav inline desativadas abaixo de 993px */

/* Ajuste para mobile grande — drawer controlado na seção mobile do final do CSS */
@media (max-width: 600px) {
    .navbar {
        padding: 10px 0;
    }
}

/* Ajuste para telas menores - sem scroll */
@media (max-width: 1200px) {
    .header {
        min-height: 55px;
    }
    
    .navbar {
        padding: 6px 0;
        min-height: 40px;
    }
    
    .header .container {
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .header {
        min-height: 50px;
    }
    
    .navbar {
        padding: 5px 0;
        min-height: 36px;
    }
    
    .header .container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 45px;
    }
    
    .navbar {
        padding: 4px 0;
        min-height: 32px;
    }
    
    .header .container {
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 40px;
    }
    
    .navbar {
        padding: 3px 0;
        min-height: 28px;
    }
    
    .header .container {
        padding: 0 6px;
    }
}

.navbar-left {
    flex-shrink: 0;
    max-width: 200px;
}

@media (min-width: 993px) {
    .navbar-center {
        flex: 1;
        display: flex;
        justify-content: center;
        overflow: hidden;
        position: relative;
        left: auto;
        transform: none;
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

/* Menu Mobile - Correções críticas */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .header-actions {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        gap: 8px;
    }
    
    .btn-help {
        font-size: 1.2rem;
        padding: 0 8px;
    }
    
    .btn-login {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        width: 100%;
        position: relative;
        left: auto;
        transform: none;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        transition: all 0.3s ease;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu a:hover {
        background: rgba(138, 44, 226, 0.1);
        transform: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-left: 15px;
        margin-top: 5px;
        border-radius: 8px;
        max-width: 100%;
        left: auto;
        right: auto;
    }
    
    .dropdown-menu li a {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .dropdown-arrow {
        transform: rotate(90deg);
    }
    
    .logo-container {
        width: 120px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .btn-help {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .btn-login {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Container responsivo sem overflow desnecessário */
.container {
    width: 100%;
    max-width: 1448px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container específico para header */
.header .container {
    padding: 0 0px;
}

/* Telas muito pequenas - ajuste principal */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header .container {
        padding: 0 8px;
    }
    
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
}

/* Dispositivos móveis */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 0 12px;
    }
    
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
}

/* Tablets */
@media (max-width: 992px) {
    .header .container {
        padding: 0 18px;
    }
}

/* Navbar Right */
.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Estilos antigos removidos */

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(138, 44, 226, 0.1);
}

.theme-toggle i {
    transition: opacity 0.3s ease;
}

.theme-toggle i:last-child {
    position: absolute;
    opacity: 0;
}

[data-theme="dark"] .theme-toggle i:first-child {
    opacity: 0;
}

[data-theme="dark"] .theme-toggle i:last-child {
    opacity: 1;
}

/* Header - Ajustes para prevenir overflow */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    overflow: visible;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.navbar-left {
    flex-shrink: 0;
}

@media (min-width: 993px) {
    .navbar-center {
        flex: 1;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

/* Menu Mobile - Melhorias com overflow controlado */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        transition: all 0.3s ease;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu a:hover {
        background: rgba(138, 44, 226, 0.1);
        transform: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-left: 15px;
        margin-top: 5px;
        border-radius: 8px;
        max-width: 100%;
    }
    
    .dropdown-menu li a {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .dropdown-arrow {
        transform: rotate(90deg);
    }
    
    .logo-container {
        width: 120px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .btn-help {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .btn-login {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .logo-container {
        width: 100px;
    }
    
    .logo-img {
        height: 20px;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .dropdown-menu li a {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Menu Toggle - Estilos base */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    margin-left: 20px;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animação do menu hamburger — desktop (mobile usa regras em .header .menu-toggle) */
@media (min-width: 993px) {
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Logo */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-25px);
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    40% {
        opacity: 0.3;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Logo - Ajuste responsivo com tamanho ainda maior */
.logo-container {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    overflow: visible;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Ajuste para telas médias */
@media (max-width: 1200px) {
    .logo-container {
        width: 180px;
    }
    
    .logo-img {
        height: 36px;
    }
}

/* Ajuste para tablets */
@media (max-width: 992px) {
    .logo-container {
        width: 160px;
    }
    
    .logo-img {
        height: 32px;
    }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .logo-container {
        width: 140px;
    }
    
    .logo-img {
        height: 36px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .logo-container {
        width: 120px;
    }
    
    .logo-img {
        height: 32px;
    }
}

.logo-text {
    display: none; /* Remove o texto ao lado da logo */
}

.logo:hover .logo-text {
    transform: translateX(3px);
    transition: transform 0.4s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8a2ce2, #d0c6da);
    border-radius: 3px;
}

/* Progress Bar - Desativada para evitar problemas de scroll */
.progress-container {
    display: none;
}

.progress-bar {
    display: none;
}

/* Body - Corrigido */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    position: relative;
    color: var(--text-primary);
}

/* Overlay com cores da paleta do tema e movimento */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 44, 226, 0.15), rgba(106, 29, 184, 0.25));
    z-index: 0;
    pointer-events: none;
    animation: overlayMove 15s ease-in-out infinite alternate;
}

@keyframes overlayMove {
    0% {
        opacity: 0.3;
        background: linear-gradient(135deg, rgba(138, 44, 226, 0.15), rgba(106, 29, 184, 0.25));
    }
    50% {
        opacity: 0.4;
        background: linear-gradient(225deg, rgba(106, 29, 184, 0.25), rgba(138, 44, 226, 0.15));
    }
    100% {
        opacity: 0.3;
        background: linear-gradient(135deg, rgba(138, 44, 226, 0.15), rgba(106, 29, 184, 0.25));
    }
}

/* Estilo para o destaque 'E muito mais...' */
.pricing-features .highlight {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(138, 44, 226, 0.3);
    animation: slideIn 0.3s ease-out;
}

.pricing-features .highlight i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Estilos para a seção de planos */
.pricing {
    background-color: #f8f9fa;
    padding: 60px 0;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

[data-theme="dark"] .pricing {
    background-color: #1a1a2e;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin: 0 auto 12px auto;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    overflow: visible;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Grid - Cards menores sem scroll */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    overflow: visible;
}

.pricing-card {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    max-height: none;
    height: auto;
}

.pricing-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--primary-color);
    color: white;
    padding: 3px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 20px 15px;
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    padding: 20px 15px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: #4caf50;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.pricing-footer {
    padding: 0 15px 20px;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.3);
}

/* Estilos para os Modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: var(--bg-color);
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    padding: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.modal-body {
    padding: 10px 0;
}

.price-highlight {
    text-align: center;
    margin-bottom: 25px;
}

.price-tag {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.modal-features li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.modal-features li i {
    color: #4caf50;
    margin-top: 5px;
    flex-shrink: 0;
}

.modal-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.modal-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.footer-bottom {
    background: var(--bg-color);
    padding: 20px 0 0;
    margin: 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
    position: relative;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px 15px;
        padding: 25px 20px;
    }
    
    .modal h3 {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

.pricing-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.pricing-cta p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Seções abaixo do banner */
.services, .about, .projects, .contact, .testimonials, .pricing, .faq, .cta {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Tema escuro - ajuste de cores */
[data-theme="dark"] .services, 
[data-theme="dark"] .about, 
[data-theme="dark"] .projects, 
[data-theme="dark"] .contact, 
[data-theme="dark"] .testimonials, 
[data-theme="dark"] .pricing, 
[data-theme="dark"] .faq, 
[data-theme="dark"] .cta {
    background-color: var(--bg-secondary);
}

/* Modal de Ajuda */
.ajuda-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ajuda-modal.active {
    display: flex;
    opacity: 1;
}

.ajuda-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.ajuda-modal-content {
    position: relative;
    margin: auto;
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    background: #1a1a2e;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.ajuda-modal.active .ajuda-modal-content {
    transform: scale(1);
}

.ajuda-modal-header {
    background: linear-gradient(135deg, #2d2d44, #1a1a2e);
    color: white;
    padding: 18px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #3d3d5c;
}

.ajuda-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.ajuda-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.ajuda-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
    color: #ffffff;
}

.ajuda-modal-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    color: #b8b8d1;
}

.ajuda-modal-body {
    padding: 18px;
    max-height: calc(80vh - 110px);
    overflow-y: auto;
    background: #1a1a2e;
}

.ajuda-etapas {
    margin-bottom: 18px;
}

.ajuda-etapa {
    margin-bottom: 12px;
    padding: 12px;
    background: #2d2d44;
    border-radius: 10px;
    border-left: 3px solid #6c5ce7;
    transition: all 0.3s ease;
}

.ajuda-etapa:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 12px rgba(108, 92, 231, 0.2);
}

.ajuda-etapa-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ajuda-etapa-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6c5ce7, #5f4bb6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.ajuda-etapa-info {
    flex: 1;
}

.ajuda-etapa-titulo {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.ajuda-etapa-descricao {
    font-size: 0.75rem;
    color: #b8b8d1;
    line-height: 1.3;
    margin: 0;
}

.ajuda-destaque {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(95, 75, 182, 0.15));
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    margin-bottom: 18px;
}

.ajuda-destaque-texto {
    font-size: 0.85rem;
    color: #a29bfe;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ajuda-destaque-texto i {
    color: #6c5ce7;
}

.ajuda-acao {
    text-align: center;
}

.ajuda-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #6c5ce7, #5f4bb6);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.ajuda-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(108, 92, 231, 0.4);
    color: white;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .ajuda-modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 85vh;
    }
    
    .ajuda-modal-header {
        padding: 15px 15px;
    }
    
    .ajuda-modal-title {
        font-size: 1.2rem;
    }
    
    .ajuda-modal-subtitle {
        font-size: 0.8rem;
    }
    
    .ajuda-modal-body {
        padding: 15px 12px;
    }
    
    .ajuda-etapa-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ajuda-etapa {
        padding: 12px 10px;
    }
    
    .ajuda-etapa-titulo {
        font-size: 0.85rem;
    }
    
    .ajuda-etapa-descricao {
        font-size: 0.7rem;
    }
    
    .ajuda-destaque {
        padding: 10px 12px;
    }
    
    .ajuda-destaque-texto {
        font-size: 0.8rem;
    }
    
    .ajuda-btn {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ajuda-modal-content {
        width: 98%;
        margin: 10px auto;
        border-radius: 12px;
    }
    
    .ajuda-modal-header {
        padding: 12px 12px;
    }
    
    .ajuda-modal-title {
        font-size: 1.1rem;
    }
    
    .ajuda-modal-body {
        padding: 12px 10px;
    }
    
    .ajuda-etapa {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .ajuda-etapa-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Efeito de Scroll Reveal para elementos */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.5s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.5s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.5s ease-out;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 0 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.68)), url('../imagens/Banner01.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
    background-attachment: scroll;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        background-size: 100% auto;
    }
    50% {
        background-size: 105% auto;
    }
    100% {
        background-size: 100% auto;
    }
}

.hero-overlay {
    display: none; /* Removendo o overlay antigo */
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 0;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
    min-height: 500px;
    transform: translateZ(0);
    will-change: transform;
    overflow: hidden;
    max-height: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin: 0 auto 25px auto;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 30%, #ffffff 60%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1.1;
    letter-spacing: -0.01em;
    position: relative;
    word-wrap: break-word;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out 0.1s both;
    opacity: 0;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    margin: 0 0 25px 0;
    font-weight: 400;
    line-height: 1.5;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}

/* RESET COMPLETO - NENHUM ESTILO PODE BLOQUEAR */
.hero * {
    box-sizing: border-box !important;
}

.hero-buttons * {
    box-sizing: border-box !important;
}

/* FORÇAR BOTÕES APARECEREM E FUNCIONAREM */
.hero-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 120px !important;
    position: relative !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    animation: none !important;
    transform: none !important;
}

/* ESTILO FINAL - BOTÕES HERO SEMÂNTICOS */
.hero-buttons button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;
    min-width: 150px !important;
    justify-content: center !important;
    border: none !important;
}

.hero-buttons button:hover {
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

.hero-buttons button.primary {
    background: linear-gradient(135deg, #8a2ce2, #6a1db8) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.hero-buttons button.primary:hover {
    background: linear-gradient(135deg, #6a1db8, #8a2ce2) !important;
    box-shadow: 0 6px 20px rgba(138, 44, 226, 0.3) !important;
    color: white !important;
}

.hero-buttons button.secondary {
    background: white !important;
    color: #8a2ce2 !important;
    border: 2px solid #8a2ce2 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.hero-buttons button.secondary:hover {
    background: #8a2ce2 !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(138, 44, 226, 0.2) !important;
}

.hero-buttons button i {
    font-size: 1rem !important;
    margin-right: 0 !important;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: none;
    color: white;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 220px;
    margin-top: 10px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(138, 44, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(138, 44, 226, 0.4);
}

/* Header - Links padronizados no menu principal */

/* Menu do lado direito - Links separados */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 120px;
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    margin: 0px 100px 0px 200px !important;
    padding: 0 !important;
    gap: 25px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    min-width: 0 !important;
    justify-content: center !important;
}

.nav-menu-right {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: -5px;
}

.nav-menu-right li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu-right li a:hover {
    color: #8a2ce2;
    background: rgba(138, 44, 226, 0.1);
}

/* Responsividade para menu direito */
@media (max-width: 992px) {
    .header-actions {
        margin-left: 85px;
        gap: 15px;
    }
    
    .nav-menu-right {
        gap: 3px;
        margin-right: -3px;
    }
    
    .nav-menu {
        gap: 20px !important;
        justify-content: center !important;
    }
    
    .nav-menu-right li a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-actions {
        margin-left: 50px;
        gap: 10px;
    }
    
    .nav-menu-right {
        gap: 2px;
        margin-right: -2px;
    }
    
    .nav-menu {
        gap: 15px !important;
        justify-content: center !important;
    }
    
    .nav-menu-right li a {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
    
    .nav-menu-right li a span {
        display: none;
    }
}

/* Estilo do botão de login */
.btn-login {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-left: -17px;
    flex: 1;
    max-width: 1400px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px; /* Reduzido de 70px para 60px */
    position: relative;
}

/* Lado esquerdo - Logo */
.navbar-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

@media (min-width: 993px) {
    .navbar-left {
        max-width: 100px;
        overflow: hidden;
        max-height: 100%;
    }
}


/* Lado direito - Botões - CORRIGIDO */
.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    max-width: 300px;
    position: relative;
}

/* Menu toggle para mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 15px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px; /* Reduzido de 8px 20px */
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem; /* Reduzido de 0.95rem */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    white-space: nowrap;
    order: 2;
}

/* Estilos para o dropdown */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.dropdown > a i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 3px;
}

.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 180px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(138, 44, 226, 0.1);
    color: var(--primary-color);
    padding-left: 15px;
}

.dropdown-menu a i {
    margin-right: 8px;
    font-size: 0.8rem;
    width: 12px;
    text-align: center;
}

/* Ajuste dropdown para telas menores */
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 160px;
        padding: 6px 0;
    }
    
    .dropdown-menu a {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .dropdown-menu {
        min-width: 140px;
        padding: 4px 0;
    }
    
    .dropdown-menu a {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .dropdown-menu a i {
        margin-right: 6px;
        font-size: 0.7rem;
    }
}

.dropdown-menu a i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

/* Estilos para os botões do header já foram atualizados acima */

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle i {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0);
}

.header.scrolled {
    padding: 5px 0;
    background: #5a18a0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin-left: auto;
    padding: 0;
}

.nav-menu li {
    margin-left: 15px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
}

.nav-menu > li:last-child {
    margin-left: 20px;
    gap: 8px;
    margin-right: 0;
}

.nav-menu a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.nav-menu a i {
    margin-right: 8px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-menu a:not(.btn-contato)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #d0c6da;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:not(.btn-contato):hover,
.nav-menu a:not(.btn-contato).active {
    color: var(--primary-color);
}

/* Botões */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #9e5ae5);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(138, 44, 226, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9e5ae5, var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    background: #7a1fd1;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(138, 44, 226, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    border: 2px solid #8a2ce2;
}

.btn-login:hover {
    background: #7a1fc9;
    border-color: #7a1fc9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}

.btn-signup {
    background: #8a2ce2;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid #8a2ce2;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(138, 44, 226, 0.3);
    border: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin: 0;
}

.btn-signup:hover {
    background: #7a1fd1;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(138, 44, 226, 0.4);
}

.btn-contato:hover {
    background: #7a1fd1;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(138, 44, 226, 0.4);
}

/* Serviços */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 44, 226, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.services .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 15px auto;
    position: relative;
    padding-bottom: 15px;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 300;
}

/* Grid de Serviços - Responsivo com overflow controlado */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .service-icon .bi {
        font-size: 1.6rem;
    }
    
    .service-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .service-features {
        margin-top: 15px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 15px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        margin-bottom: 18px;
    }
    
    .service-icon .bi {
        font-size: 1.4rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(0);
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 44, 226, 0.15);
    border-color: rgba(138, 44, 226, 0.3);
}

/* Ícones dos serviços */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(138, 44, 226, 0.15);
    background: rgba(138, 44, 226, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon .bi {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    -webkit-text-fill-color: currentColor;
    background: none;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(138, 44, 226, 0.15);
}

.service-card:hover .service-icon .bi {
    color: white;
    transform: scale(1.05);
}

/* Badges dos serviços */
.service-badge {
    position: absolute;
    top: 15px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(138, 44, 226, 0.3);
    z-index: 2;
}

/* Features dos serviços */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li .bi {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 1rem;
    flex-shrink: 0;
    line-height: 1;
    -webkit-text-fill-color: currentColor;
    background: none;
}

.service-card:hover .service-features li .bi {
    transform: scale(1.2);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
    color: var(--text-primary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-primary);
}

/* Sobre Nós */
.about {
    padding: 100px 0;
    /* Herda o background-color da regra .services, .about, etc */
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Contato */
.contact {
    padding: 100px 0;
    /* Herda o background-color da regra .services, .about, etc */
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 44, 226, 0.15);
    background-color: #fff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b7386' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
}

/* Rodapé */
.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8b3c0;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2em;
    line-height: 1;
}

.footer-legal a {
    color: #b8b3c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2ce2, transparent);
}

/* Responsivo */
@media (max-width: 992px) {
    .header-actions {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 10px;
    }
    
    .btn-help {
        font-size: 1.5rem;
        margin: 0;
        padding: 0 10px;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-legal a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center !important;
    }
    
    .footer-about {
        text-align: center !important;
    }
    
    .footer-logo {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .footer-links {
        text-align: center !important;
    }
    
    .footer-links h4 {
        text-align: center !important;
    }
    
    .footer-links h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-contact {
        text-align: center !important;
    }
    
    .footer-contact h4 {
        text-align: center !important;
    }
    
    .footer-contact h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .contact-info {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-info li:not(.footer-email-item) {
        justify-content: center !important;
        text-align: center !important;
    }

    .contact-info li.footer-email-item {
        text-align: left !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .footer-form {
        text-align: center !important;
        align-self: center !important;
    }
    
    .footer-form h4 {
        text-align: center !important;
    }
    
    .footer-form h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .contact-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        flex-grow: 1 !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-form .form-group {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-form label {
        text-align: center !important;
        display: block !important;
        margin-bottom: 8px !important;
        width: 100% !important;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: block !important;
    }
    
    .contact-form button {
        margin: 15px auto 0 auto !important;
        display: block !important;
        text-align: center !important;
        width: auto !important;
        max-width: 250px !important;
        padding: 12px 20px !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Botão específico btn-enviar - CONFIGURAÇÃO EXATA */
    #btn-enviar.btn-submit,
    .contact-form #btn-enviar,
    .footer-form #btn-enviar,
    footer #btn-enviar,
    .text-center #btn-enviar,
    .form-group.text-center #btn-enviar {
        margin: 15px auto 0px auto !important;
        display: block !important;
        text-align: center !important;
        width: auto !important;
        max-width: 250px !important;
        padding: 12px 23px !important;
        position: relative !important;
        left: 37% !important;
        transform: translateX(-49%) !important;
        float: none !important;
        clear: both !important;
        box-sizing: border-box !important;
        margin-left: 25% !important;
        margin-right: auto !important;
    }
    
    .contact-form .form-group:last-child {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0px 0px 0px 0px !important;
        text-align: center !important;
        margin-left: 0px !important;
        margin-right: 70px !important;
    }
    
    /* Menu mobile ocupando todo o espaço */
    .nav-menu {
        margin: -80px 0px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .nav-menu[style*="margin"] {
        margin: -80px 0px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .nav-menu[style*="margin: -330px"] {
        margin: -80px 0px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
    }
    
    ul.nav-menu {
        margin: -80px 0px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
    }
    
    ul.nav-menu[style*="margin"] {
        margin: -80px 0px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-about p {
    color: #b3b3b3;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #b3b3b3;
}

.contact-info a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info li.footer-email-item {
    display: block !important;
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
    align-items: stretch !important;
}

.footer-email-link {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 5;
    pointer-events: auto !important;
    cursor: pointer;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: left;
    -webkit-touch-callout: default !important;
    touch-action: manipulation;
}

.footer-email-link i {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-email-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: visible !important;
    text-overflow: unset !important;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.45;
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
}

/* Estilos para o formulário no rodapé */
.form-group {
    margin-bottom: 15px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.footer-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    margin-top: 0;
    grid-column: span 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-self: flex-start;
    width: 100%;
}

.footer-form h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-form h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(138, 44, 226, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.3);
}

/* Estilos para mensagens de alerta do formulário */
.form-alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-1px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Melhorias de performance */
.hero,
.hero * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Ajustes de responsividade para o banner */
@media (max-width: 992px) {
    .hero {
        padding: 90px 0 80px;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 40px 20px 0 20px;
        min-height: 350px;
        justify-content: flex-end;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin: 0 auto 30px auto;
        max-width: 800px;
        text-align: center;
        animation: fadeInUp 1.2s ease-out 0.1s both;
        opacity: 0;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 85%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 50px;
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 30px 0 0;
        min-height: 400px;
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin: 0 auto 20px auto;
        max-width: 600px;
        text-align: center;
        animation: fadeInUp 1.2s ease-out 0.1s both;
        opacity: 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 90px !important;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 18px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .hero-btn i {
        font-size: 0.8rem;
    }
    
    .hero .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 45px;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 20px 0 0;
        min-height: 350px;
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin: 0 auto 15px auto;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        gap: 10px;
        margin-top: 70px !important;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 220px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-btn i {
        font-size: 0.7rem;
    }
}

.form-alert.success {
    background-color: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-alert.error {
    background-color: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.form-alert.info {
    background-color: rgba(23, 162, 184, 0.15);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

/* Ajustes para o layout do rodapé */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr; /* Distribuição das colunas */
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
    position: relative;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Estilo para as seções sem fundo */
.footer-about,
.footer-links,
.footer-contact {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
    box-shadow: none;
}

/* Estilo para os títulos */
.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linha decorativa abaixo dos títulos */
.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Estilo específico para o formulário */
.footer-form {
    grid-column: 4 / span 1;
    min-height: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Título do formulário */
.footer-form h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
}

.footer-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Estilo para o conteúdo do formulário */
.footer-form .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* Espaço entre campos aumentado */
    flex-grow: 1;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    align-content: flex-start;
}

/* Campos do formulário */
.footer-form .form-group {
    margin: 0 0 5px 0;
}

/* Ajuste para os inputs e selects */
.footer-form input,
.footer-form select,
.footer-form textarea {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    height: 40px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-form input:focus,
.footer-form select:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(70, 130, 180, 0.3);
}

/* Ajuste específico para o textarea */
.footer-form textarea {
    min-height: 100px !important;
    max-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Campos de texto e textarea ocupam duas colunas */
.footer-form .form-group:has(textarea),
.footer-form .form-group:has(button) {
    grid-column: span 2;
}

/* Ajuste para o botão */
.footer-form button {
    margin: 15px 0 0 0;
    padding: 10px 15px;
    font-size: 0.9rem;
    height: auto;
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Estilo para o conteúdo do card Sobre */
.footer-about p {
    color: #b3b3b3;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
}

/* Estilo para a lista de links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    transition: all 0.3s ease;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

/* Estilo para as informações de contato */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info p, 
.contact-info a {
    margin: 0;
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Estilo para os ícones sociais */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer - Reorganizado e corrigido */
.footer {
    background: var(--bg-secondary);
    padding: 40px 0 0;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    clear: both;
}

.footer-content {
    max-width: 1448px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Footer About */
.footer-about {
    text-align: left;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    height: auto;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4,
.footer-form h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Footer Contact */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-info a,
.contact-info p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Footer Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form button {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

/* Formulário de Contato - Design Profissional */
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group textarea {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(138, 44, 226, 0.1);
    background: rgba(138, 44, 226, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    font-style: italic;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(138, 44, 226, 0.3);
    margin-top: 25px;
    width: 280px;
    max-width: 100%;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 44, 226, 0.4);
}

/* Botão de enviar com ID para centralização */
#btn-enviar {
    margin-left: auto;
    margin-right: auto;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-color);
    padding: 20px 0;
    margin: 40px 0 0 0;
    border-top: 1px solid var(--border-color);
    width: 100%;
    clear: both;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 44, 226, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 44, 226, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.3);
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 20px;
    }
    
    .footer-bottom {
        background: var(--bg-color);
        padding: 15px 0;
        margin-top: 30px;
        border-top: 1px solid var(--border-color);
        text-align: center;
    }
    
    .contact-form button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-form button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Formulários - Responsivo com overflow controlado */
@media (max-width: 768px) {
    .contact-form {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 12px;
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 12px 15px;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-secondary);
        opacity: 0.7;
    }
    
    .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 8px;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 14px;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .footer-form {
        padding: 20px 15px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
    }
    
    .contact-info li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
}

/* Responsivo */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 30px 0;
    }
    
    .footer-form {
        grid-column: span 2;
        margin-top: 20px;
    }
    
    .footer-form {
        grid-column: span 2;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        grid-row: auto;
    }
    
    .footer-about .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .footer-form {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 20px;
    }
    
    .footer-about h3,
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-form {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        min-height: auto;
        grid-column: span 1;
        grid-row: auto;
    }
    
    .footer-form .contact-form {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }
    
    .footer-form .form-group:has(textarea),
    .footer-form .form-group:has(button) {
        grid-column: span 1;
    }
    
    
    .footer-about {
        margin: 0 auto 20px;
    }
    
    .footer-links ul,
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
}

/* =================================
   DIFERENCIAIS
   ================================= */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e6d6ff 0%, #d6e6ff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(138, 44, 226, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features .section-title {
    text-align: center;
    margin: 0 auto 3.5rem auto;
    position: relative;
    display: block;
    left: auto;
    transform: none;
    width: 100%;
}

.features .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 44, 226, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(138, 44, 226, 0.2);
    border-color: rgba(138, 44, 226, 0.4);
    background: #ffffff;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.4);
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    right: -100%;
    transition: 0.5s;
}

.feature-card:hover .feature-icon::before {
    left: 100%;
}

.feature-card h3 {
    color: #4a2d7a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        text-align: center;
        padding: 25px 20px;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 3.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
}

/* =================================
   DEPOIMENTOS
   ================================= */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 70%, rgba(138, 44, 226, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(138, 44, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.testimonial-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    opacity: 0.3;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
    padding: 2px;
}

.author-info h4 {
    color: var(--text-primary);
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.testimonials-cta p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Efeito hover nos cards */
.testimonial-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(138, 44, 226, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-cta {
        margin-top: 3rem;
    }
    
    .testimonials-cta p {
        font-size: 1.1rem;
    }
}

/* =================================
   NOVO MODAL DE LOGIN - DESIGN MODERNO
   ================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(145deg, rgba(26, 17, 38, 0.95) 0%, rgba(42, 26, 58, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    width: 95%;
    max-width: 420px;
    max-height: none;
    overflow: visible;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(138, 44, 226, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.7) translateY(50px) rotateX(10deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0) rotateX(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px 25px;
    background: linear-gradient(135deg, rgba(138, 44, 226, 0.15) 0%, rgba(106, 29, 184, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 1s ease;
}

.modal-overlay.active .modal-header::before {
    left: 100%;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.modal-logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(138, 44, 226, 0.4));
    transition: transform 0.3s ease;
}

.modal-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.modal-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.modal-close:hover::before {
    width: 100%;
    height: 100%;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(138, 44, 226, 0.4);
}

.modal-body {
    padding: 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
}

.modal-body::before {
    content: '';
    position: absolute;
    top: 0;
}

.welcome-message {
    text-align: center;
    padding: 10px 15px 8px;
    background: linear-gradient(135deg, rgba(138, 44, 226, 0.08) 0%, rgba(106, 29, 184, 0.04) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    animation: fadeInDown 0.6s ease 0.2s both;
}

.welcome-message h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-message p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
}

.login-container {
    padding: 10px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.8s ease 0.4s both;
    overflow: visible;
    max-height: none;
}

.login-form {
    margin-bottom: 15px;
    display: block;
    clear: both;
}

.login-form .form-group {
    position: relative;
    margin-bottom: 15px;
    animation: slideInRight 0.5s ease both;
}

.login-form .form-group:nth-child(1) { animation-delay: 0.5s; }
.login-form .form-group:nth-child(2) { animation-delay: 0.6s; }

.login-form label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form label i {
    color: var(--primary-color);
    font-size: 0.75rem;
    filter: drop-shadow(0 0 4px rgba(138, 44, 226, 0.5));
}

.login-form input {
    width: 100%;
    padding: 14px 16px 14px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 44, 226, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    position: relative;
}

.login-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px rgba(138, 44, 226, 0.12),
        0 6px 20px rgba(138, 44, 226, 0.15);
    transform: translateY(-1px);
}

.login-form input[type="password"] {
    padding-right: 55px;
}

.login-form .form-group {
    position: relative;
    margin-bottom: 20px;
    animation: slideInRight 0.5s ease both;
}

.login-form .form-group:nth-child(1) { animation-delay: 0.5s; }
.login-form .form-group:nth-child(2) { animation-delay: 0.6s; }

.input-icon {
    position: absolute;
    left: 18px;
    top: 65%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon i {
    font-size: 18px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form .form-group:nth-child(1) .input-icon {
    left: 18px;
}

.login-form .form-group:nth-child(2) .input-icon {
    left: 18px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 65%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 44, 226, 0.2);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--primary-color);
    background: rgba(138, 44, 226, 0.1);
    border-color: rgba(138, 44, 226, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    animation: slideInUp 0.5s ease 0.7s both;
}

.remember-me {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.remember-me:hover {
    color: rgba(255, 255, 255, 0.9);
}

.remember-me input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(138, 44, 226, 0.25);
    border-radius: 5px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.remember-me input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.forgot-password::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
}

.forgot-password:hover::after {
    width: 100%;
}

.btn-login-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(138, 44, 226, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.5s ease 0.8s both;
}

.btn-login-submit::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-login-submit:hover::before {
    left: 100%;
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(138, 44, 226, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-login-submit:active {
    transform: translateY(0);
}

.register-section {
    text-align: center;
    padding: 8px 15px 10px;
    background: linear-gradient(135deg, rgba(138, 44, 226, 0.06) 0%, rgba(106, 29, 184, 0.03) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    animation: fadeInUp 0.6s ease 0.9s both;
}

.register-section p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.register-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(138, 44, 226, 0.4);
}

.register-section a:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.register-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.register-section a:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.register-section a:hover::after {
    width: 100%;
}

/* Estilos para formulário de cadastro */
.register-form {
    display: none;
    animation: fadeIn 0.5s ease both;
}

.register-form .form-group {
    position: relative;
    margin-bottom: 20px;
    animation: slideInRight 0.5s ease both;
}

.register-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.register-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.register-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.register-form .form-group:nth-child(4) { animation-delay: 0.4s; }

.register-form label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-form label i {
    color: var(--primary-color);
    font-size: 0.75rem;
    filter: drop-shadow(0 0 4px rgba(138, 44, 226, 0.5));
}

.register-form input {
    width: 100%;
    padding: 14px 16px 14px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 44, 226, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    position: relative;
}

.register-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.register-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px rgba(138, 44, 226, 0.12),
        0 6px 20px rgba(138, 44, 226, 0.15);
    transform: translateY(-1px);
}

.register-form input[type="password"] {
    padding-right: 55px;
}

.register-form .form-group::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 65%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form .form-group:nth-child(1)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    background-size: 20px 20px;
}

.register-form .form-group:nth-child(2)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath d='M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z'/%3E%3Cpath d='M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 20px 20px;
}

.register-form .form-group:nth-child(3)::before,
.register-form .form-group:nth-child(4)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    background-size: 20px 20px;
}

.register-form .toggle-password {
    position: absolute;
    right: 15px;
    top: 65%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 44, 226, 0.2);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form .toggle-password:hover {
    color: var(--primary-color);
    background: rgba(138, 44, 226, 0.1);
    border-color: rgba(138, 44, 226, 0.3);
    transform: translateY(-50%) scale(1.05);
}

/* Seletor de Tipo de Cadastro */
.register-type-selector {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(138, 44, 226, 0.1);
    animation: fadeInDown 0.5s ease 0.1s both;
}

.type-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-btn i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.type-btn span {
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.type-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.type-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 
        0 4px 15px rgba(138, 44, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.type-btn.active i {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

/* Campos específicos por tipo */
.person-fields,
.company-fields {
    animation: fadeIn 0.4s ease both;
}

.register-form .form-group {
    position: relative;
    margin-bottom: 12px;
    animation: slideInRight 0.5s ease both;
}

.register-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.register-form .form-group:nth-child(2) { animation-delay: 0.15s; }
.register-form .form-group:nth-child(3) { animation-delay: 0.2s; }
.register-form .form-group:nth-child(4) { animation-delay: 0.25s; }
.register-form .form-group:nth-child(5) { animation-delay: 0.3s; }
.register-form .form-group:nth-child(6) { animation-delay: 0.35s; }

.register-form label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.register-form label i {
    color: var(--primary-color);
    font-size: 0.7rem;
    filter: drop-shadow(0 0 4px rgba(138, 44, 226, 0.5));
}

.register-form input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 44, 226, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    position: relative;
}

.register-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.register-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px rgba(138, 44, 226, 0.12),
        0 6px 20px rgba(138, 44, 226, 0.15);
    transform: translateY(-1px);
}

.register-form input[type="password"] {
    padding-right: 45px;
}

.register-form .form-group::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 65%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form .form-group:nth-child(1)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    background-size: 16px 16px;
}

.register-form .form-group:nth-child(2)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath d='M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z'/%3E%3Cpath d='M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 16px 16px;
}

.register-form .form-group:nth-child(3)::before,
.register-form .form-group:nth-child(4)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    background-size: 16px 16px;
}

.register-form .toggle-password {
    position: absolute;
    right: 10px;
    top: 65%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 44, 226, 0.2);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form .toggle-password:hover {
    color: var(--primary-color);
    background: rgba(138, 44, 226, 0.1);
    border-color: rgba(138, 44, 226, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.register-form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
    animation: slideInUp 0.5s ease 0.7s both;
}

.register-form .remember-me {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.register-form .remember-me:hover {
    color: rgba(255, 255, 255, 0.9);
}

.register-form .remember-me input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.register-form .checkmark {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(138, 44, 226, 0.25);
    border-radius: 3px;
    margin-right: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.register-form .remember-me input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.register-form .remember-me input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 8px;
    font-weight: bold;
}

.register-form .btn-login-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 6px 20px rgba(138, 44, 226, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.5s ease 0.8s both;
}

.register-form .btn-login-submit::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.register-form .btn-login-submit:hover::before {
    left: 100%;
}

.register-form .btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(138, 44, 226, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.register-form .btn-login-submit:active {
    transform: translateY(0);
}

.company-fields .form-group:nth-child(1)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    background-size: 20px 20px;
}

.company-fields .form-group:nth-child(2)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a2ce2' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M4 4a2 2 0 00-2 2v8a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2H4zm3 5a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zm0 3a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    background-size: 20px 20px;
}

/* Estilos para a página de Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-meta span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-meta i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.project-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsividade para projetos */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .project-meta {
        gap: 1rem;
    }
    
    .project-meta span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .project-content {
        padding: 1rem;
    }
    
    .project-content h3 {
        font-size: 1.1rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Estilos profissionais para o cabeçalho da página de projetos */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: left;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.page-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.page-header-text {
    flex: 1;
    max-width: 600px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}

.page-header-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-header-visual {
    flex: 1;
    max-width: 350px;
    height: 250px;
    position: relative;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.float-element:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 25%;
    animation-delay: 1s;
}

.element-3 {
    width: 55px;
    height: 55px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.element-4 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Responsividade para o cabeçalho profissional */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 3rem;
        text-align: center;
    }
    
    .page-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .page-header-visual {
        max-width: 250px;
        height: 180px;
    }
    
    .float-element {
        font-size: 1rem;
    }
    
    .element-1, .element-3 {
        width: 50px;
        height: 50px;
    }
    
    .element-2, .element-4 {
        width: 40px;
        height: 40px;
    }
}

/* Estilos para a seção Nossa Jornada */
.journey-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.journey-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.2);
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(138, 44, 226, 0.3);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.journey-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Estilos para a seção Nossa Essência */
.essence-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.essence-full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.essence-container {
    width: 100%;
    padding: 0 2rem;
}

.essence-content {
    width: 100%;
    max-width: none;
    padding: 0;
}

.essence-modern {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    align-items: stretch;
    width: 100%;
}

.essence-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.essence-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.circle-inner {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    box-shadow: 0 0 30px rgba(138, 44, 226, 0.1);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.essence-quote {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    text-align: center;
    border-left: 3px solid var(--primary-color);
}

.essence-quote blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.essence-quote i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    display: block;
}

.essence-quote cite {
    display: block;
    margin-top: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
    font-size: 0.85rem;
}

.values-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.value-simple-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(138, 44, 226, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 44, 226, 0.1);
}

.value-simple-item:hover {
    background: rgba(138, 44, 226, 0.1);
    transform: translateY(-2px);
    border-color: rgba(138, 44, 226, 0.2);
}

.value-simple-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.value-simple-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.essence-modern {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    align-items: stretch;
}

.essence-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(138, 44, 226, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.essence-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 44, 226, 0.05), transparent);
    transition: left 0.6s ease;
}

.essence-card:hover::before {
    left: 100%;
}

.essence-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(138, 44, 226, 0.3);
    box-shadow: 0 15px 40px rgba(138, 44, 226, 0.15);
}

.card-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #34a853, #fbbc05);
}

.values-card .card-icon {
    background: linear-gradient(135deg, #fbbc05, #ea4335);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(138, 44, 226, 0.2), transparent);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 1;
}

.essence-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.essence-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.values-modern {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-modern-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 44, 226, 0.1);
}

.value-modern-item:hover {
    background: rgba(138, 44, 226, 0.08);
    transform: translateX(8px);
    border-color: rgba(138, 44, 226, 0.2);
}

.value-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.value-modern-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes glow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsividade para o design moderno */
@media (max-width: 768px) {
    .essence-modern {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .essence-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-glow {
        width: 60px;
        height: 60px;
    }
    
    .essence-card h3 {
        font-size: 1.2rem;
    }
    
    .essence-card p {
        font-size: 0.9rem;
    }
    
    .values-modern {
        gap: 0.6rem;
    }
    
    .value-modern-item {
        padding: 0.6rem;
        flex: 1;
        min-width: calc(50% - 0.3rem);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .essence-modern {
        gap: 1.5rem;
    }
    
    .essence-card {
        padding: 1.8rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .card-glow {
        width: 70px;
        height: 70px;
    }
}

.value-list {
    display: grid;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(138, 44, 226, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(138, 44, 226, 0.1);
    transform: translateX(5px);
}

.value-icon-small {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-text {
    flex: 1;
}

.value-text strong {
    color: var(--primary-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.value-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(138, 44, 226, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(138, 44, 226, 0.2);
    }
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .journey-container,
    .essence-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .journey-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-box {
        flex: 1;
        min-width: 200px;
        padding: 1.2rem;
    }
    
    .essence-visual {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .essence-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-inner {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .essence-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 0.8rem;
    }
}

/* Estilos para depoimentos do Google */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-color: #f8f9fa;
}

.loading-reviews {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.loading-reviews i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.google-reviews-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
}

.btn-google-reviews:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.2);
}

.btn-google-reviews i:first-child {
    font-size: 1rem;
    color: #4285f4;
}

.btn-google-reviews:hover i:first-child {
    color: white;
}

.btn-google-reviews i:last-child {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Card de review do Google */
.google-review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(138, 44, 226, 0.15);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(138, 44, 226, 0.1);
}

.google-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 44, 226, 0.25);
    border-color: rgba(138, 44, 226, 0.2);
}

.google-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.google-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.google-review-author {
    flex: 1;
}

.google-review-author h4 {
    margin: 0 0 0.2rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.google-review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.google-review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-review-rating .stars {
    display: flex;
    gap: 0.1rem;
}

.google-review-rating .stars i {
    color: #fbbc05;
    font-size: 0.9rem;
}

.google-review-rating .rating-number {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.google-review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.google-review-text.read-more {
    max-height: 3.2rem;
    overflow: hidden;
    position: relative;
}

.google-review-text.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1rem;
    background: linear-gradient(transparent, white);
}

.read-more-btn {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.google-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-review-source {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #4285f4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.google-review-source:hover {
    color: #ea4335;
}

.google-review-source i {
    font-size: 0.9rem;
}

/* Responsividade para depoimentos do Google */
@media (max-width: 768px) {
    .google-review-card {
        padding: 1.2rem;
    }
    
    .google-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .google-review-avatar {
        width: 40px;
        height: 40px;
    }
    
    .google-review-author h4 {
        font-size: 1rem;
    }
    
    .btn-google-reviews {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Novas Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade do Novo Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 10px;
        max-width: none;
        border-radius: 25px;
    }
    
    .modal-header,
    .modal-body {
        padding: 30px 25px;
    }
    
    .modal-header {
        padding: 25px 25px 20px;
    }
    
    .modal-logo img {
        width: 55px;
        height: 55px;
    }
    
    .welcome-message h3 {
        font-size: 1.5rem;
    }
    
    .welcome-message p {
        font-size: 0.9rem;
    }
    
    .login-form .form-group {
        margin-bottom: 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-login-submit {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
        border-radius: 0;
    }
    
    .modal-body {
        padding: 25px 20px;
        height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .welcome-message h3 {
        font-size: 1.3rem;
    }
    
    .welcome-message p {
        font-size: 0.85rem;
    }
    
    .login-form .form-group {
        margin-bottom: 18px;
    }
    
    .login-form input {
        padding: 13px 15px 13px 45px;
        font-size: 0.9rem;
    }
    
    .login-form input[type="password"] {
        padding-right: 50px;
    }
    
    .input-icon {
        left: 16px;
        top: 65%;
        width: 18px;
        height: 18px;
    }
    
    .input-icon i {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .login-form .form-group:nth-child(1) .input-icon,
    .login-form .form-group:nth-child(2) .input-icon {
        left: 16px;
        top: 65%;
    }
    
    .toggle-password {
        right: 12px;
        top: 65%;
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* Container e Botão Comercial */
.commercial-btn-container {
    position: relative;
    margin-right: 0px;
}

.corner-btns .commercial-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(138, 44, 226, 0.18);
    color: #fff !important;
    padding: 4px 11px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    border: none;
    box-shadow: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.corner-btns .commercial-btn:hover {
    background: rgba(138, 44, 226, 0.32);
    color: #fff !important;
}

.corner-btns .commercial-btn i {
    font-size: 0.9rem;
    color: #25d366;
}

.corner-btns .commercial-btn span {
    line-height: 1;
}

/* Estilo para botão de ajuda no canto */
.corner-btns a:not(.commercial-btn) {
    color: #fff !important;
    text-decoration: none !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.corner-btns a:not(.commercial-btn):hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #8a2ce2 !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Ajustar posicionamento para ficar mais próximo do canto */
.navbar-right {
    margin-left: auto;
    margin-right: 2px;
}

.header-actions {
    margin-left: 0;
    gap: 12px;
}

.nav-menu-right {
    gap: 3px;
    align-items: center;
    margin-left: 30px;
    margin-right: -3px;
}

.nav-menu {
    gap: 20px !important;
    justify-content: center !important;
}

/* Responsividade dos botões do canto */
@media (max-width: 992px) {
    .corner-btns .commercial-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .navbar-right {
        margin-right: 2px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .nav-menu-right {
        gap: 2px;
        margin-right: -2px;
    }
    
    .nav-menu {
        gap: 18px !important;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .corner-btns .commercial-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .navbar-right {
        margin-right: 1px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .nav-menu-right {
        gap: 1px;
        margin-right: -1px;
    }
    
    .nav-menu {
        gap: 15px !important;
        justify-content: center !important;
    }
    
}

/* ═══════════════════════════════════════════════════════════
   Menu Premium Code Minds — glassmorphism + animações
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 993px) {
    .premium-menu-overlay,
    .premium-menu-panel {
        display: none !important;
    }
}

/* Overlay escuro com blur */
.premium-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10990;
    background: rgba(4, 2, 10, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Painel lateral premium */
.premium-menu-panel {
    --premium-purple: #8a2ce2;
    --premium-blue: #5b8def;
    --premium-glass: rgba(14, 10, 22, 0.82);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 10995;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--premium-glass);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border-left: 1px solid rgba(138, 44, 226, 0.18);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45),
                inset 1px 0 0 rgba(255, 255, 255, 0.04);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    overscroll-behavior: none;
}

body.premium-menu-open .premium-menu-panel,
body.premium-menu-open .premium-menu-scroll,
body.premium-menu-open .premium-menu-static {
    overflow: hidden;
    touch-action: none;
}

.premium-menu-panel.is-open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.premium-menu-glow {
    position: absolute;
    top: -20%;
    right: -30%;
    width: 70%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(138, 44, 226, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.premium-menu-glow::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -40%;
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(91, 141, 239, 0.12) 0%, transparent 70%);
}

/* Cabeçalho */
.premium-menu-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px 12px;
    padding-top: calc(18px + env(safe-area-inset-top, 0px));
    flex-shrink: 0;
}

.premium-menu-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.premium-menu-logo {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.premium-menu-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.premium-menu-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #fff;
    line-height: 1.2;
}

.premium-menu-subtitle {
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.35;
    max-width: 200px;
}

.premium-menu-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.premium-menu-close:hover,
.premium-menu-close:focus-visible {
    background: rgba(138, 44, 226, 0.2);
    border-color: rgba(138, 44, 226, 0.4);
    color: #fff;
    outline: none;
}

/* Corpo do menu — sem scroll */
.premium-menu-scroll {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding: 2px 0 4px;
}

.premium-menu-nav {
    padding: 0 22px;
}

.premium-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.premium-menu-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.06s * var(--item-index, 0) + 0.12s);
}

.premium-menu-panel.is-open .premium-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.premium-menu-link {
    display: block;
    padding: 9px 2px;
    text-decoration: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.3s ease;
}

.premium-menu-list .premium-menu-item:last-child .premium-menu-link {
    border-bottom: none;
}

.premium-menu-link-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.premium-menu-link-desc {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.premium-menu-link:hover .premium-menu-link-title,
.premium-menu-link:focus-visible .premium-menu-link-title {
    color: var(--premium-purple);
}

.premium-menu-link:hover .premium-menu-link-desc,
.premium-menu-link:focus-visible .premium-menu-link-desc {
    color: rgba(201, 160, 255, 0.75);
}

.premium-menu-link:hover,
.premium-menu-link:focus-visible {
    outline: none;
}

/* Atendimento fixo no rodapé do painel */
.premium-menu-static {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.15);
}

/* Divisor Atendimento */
.premium-menu-divider {
    margin: 10px 22px 6px;
    position: relative;
    display: flex;
    align-items: center;
}

.premium-menu-divider::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 44, 226, 0.35), transparent);
}

.premium-menu-divider-label {
    padding: 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(138, 44, 226, 0.85);
    white-space: nowrap;
}

.premium-menu-nav--secondary .premium-menu-link-title {
    font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
    .premium-menu-overlay,
    .premium-menu-panel,
    .premium-menu-item,
    .premium-menu-link {
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .premium-menu-item {
        opacity: 1;
        transform: none;
    }
}

body.premium-menu-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Tablet — painel 400–500px */
@media (min-width: 481px) and (max-width: 992px) {
    .premium-menu-panel {
        width: clamp(400px, 48vw, 500px);
        max-width: 500px;
    }
}

/* Mobile pequeno — largura total */
@media (max-width: 480px) {
    .premium-menu-header {
        padding: 14px 18px 10px;
        padding-top: calc(14px + env(safe-area-inset-top, 0px));
    }

    .premium-menu-nav {
        padding: 0 18px;
    }

    .premium-menu-logo {
        height: 24px;
    }

    .premium-menu-link {
        padding: 7px 2px;
    }

    .premium-menu-link-title {
        font-size: 0.86rem;
    }

    .premium-menu-link-desc {
        font-size: 0.66rem;
    }

    .premium-menu-static {
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .premium-menu-divider {
        margin: 8px 18px 4px;
    }

    .premium-menu-subtitle {
        font-size: 0.62rem;
    }

    .premium-menu-title {
        font-size: 0.58rem;
    }
}

/* Telas baixas — compactar para evitar overflow */
@media (max-height: 720px) {
    .premium-menu-header {
        padding-top: calc(12px + env(safe-area-inset-top, 0px));
        padding-bottom: 8px;
    }

    .premium-menu-link {
        padding: 6px 2px;
    }

    .premium-menu-link-title {
        font-size: 0.84rem;
    }

    .premium-menu-link-desc {
        font-size: 0.64rem;
        margin-top: 1px;
    }

    .premium-menu-divider {
        margin: 6px 18px 4px;
    }
}

/* Hambúrguer + nav desktop oculta em mobile */
@media (max-width: 992px) {
    .header,
    .header .container,
    .header .navbar {
        overflow: visible !important;
    }

    .header .navbar .navbar-center {
        display: none !important;
    }

    .header .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 11000;
        width: 28px;
        height: 22px;
        padding: 0 !important;
        margin: 0 0 0 8px !important;
        align-items: center;
        justify-content: center;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        outline: none;
        cursor: pointer;
        font: inherit;
        color: inherit;
        flex-shrink: 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .header .menu-toggle:hover,
    .header .menu-toggle:focus,
    .header .menu-toggle:active {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .header .menu-toggle .bar {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #fff !important;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
        margin: 0;
    }

    .header .menu-toggle .bar:nth-child(1) {
        transform: translateY(-7px);
    }

    .header .menu-toggle .bar:nth-child(2) {
        transform: translateY(0);
    }

    .header .menu-toggle .bar:nth-child(3) {
        transform: translateY(7px);
    }

    .header .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }

    .header .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateY(0) scaleX(0);
    }

    .header .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }
}

/* Correções globais de overflow em telas menores */
img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 8px 0;
        min-height: 56px;
        overflow: visible;
        width: 100%;
    }

    .header .navbar-left {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none !important;
        overflow: visible !important;
    }

    .header .logo-container {
        width: auto !important;
        max-width: 100%;
    }

    .header .logo-img {
        height: 32px;
        width: auto;
        max-width: min(220px, calc(100vw - 72px));
        object-fit: contain;
        display: block;
    }

    .header .navbar-right {
        flex: 0 0 auto;
        margin-left: 0;
        max-width: none;
        z-index: 1004;
    }

}

@media (max-width: 480px) {
    .header .logo-img {
        height: 28px;
        max-width: min(180px, calc(100vw - 56px));
    }

    .header .menu-toggle {
        width: 26px;
        height: 20px;
    }

    .header .menu-toggle .bar {
        width: 22px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-title,
    .hero-subtitle,
    .section-title,
    .section-subtitle {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-buttons button {
        width: 100% !important;
        max-width: 280px !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-info a:not(.footer-email-link) {
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
    }

    .contact-info li:not(.footer-email-item) {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .contact-info li.footer-email-item {
        text-align: left !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 4px;
        box-sizing: border-box;
    }

    .footer-email-link {
        justify-content: flex-start;
    }

    .footer-email-text {
        font-size: clamp(0.74rem, 3.4vw, 0.9rem);
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }

    .contact-form input,
    .contact-form textarea,
    .footer-form input,
    .footer-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 0 5px;
    }

    .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }

    .hero {
        padding: 80px 12px 45px !important;
    }

    .hero-content {
        padding: 20px 0 0 !important;
        min-height: auto !important;
    }

    .hero-buttons {
        margin-top: 40px !important;
        width: 100% !important;
        padding: 0 5px !important;
    }

    .services,
    .features,
    .pricing {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden !important;
    }

    .service-card,
    .feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
