/* My Custom Plugin - Pagina Inicial styles. Version 5.0.0 VERSION_GERAL */
/* Os estilos foram movidos para este arquivo, removendo o <style> do HTML. */

/* Estilos Globais e Tipografia (Apple-like) */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #ffffff;  
    color: #1d1d1f;
    transition: padding-top 0.3s ease-in-out;  
}
.container {
    max-width: 1024px;  
    margin: auto;
    padding: 0 1.5rem;
    overflow: hidden;
}
/* Bordas Arredondadas (30px) */
.rounded-3xl {
    border-radius: 30px !important;
}

/* ------------------------------------- */
/* CABEÇALHO (HEADER) */
/* ------------------------------------- */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1d1d1f;
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    z-index: 50;
    position: relative;
}
header .logo h1 {
    font-size: 1.5rem;  
    font-weight: 700;
    color: #5A20A8; /* Cor original do logo */
}

/* NOVOS ESTILOS: Navegação Principal */
.main-nav {
    display: none; /* Oculto em mobile por padrão */
}
@media (min-width: 768px) {
    .main-nav {
        display: block; /* Visível em desktop */
    }
    .main-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        gap: 1.5rem; /* 24px */
    }
    .main-nav ul li a {
        text-decoration: none;
        color: #1d1d1f;
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }
    .main-nav ul li a:hover {
        color: #5A20A8;
    }
}
/* FIM NOVOS ESTILOS NAVEGAÇÃO */


/* Botões - Estilo moderno */
.btn {
    background: #5A20A8;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    text-align: center;
    display: inline-block; /* Mantido para botões tradicionais (largura do texto) */
}
.btn:hover {
    background: #6B26CB;
    transform: scale(1.02);
}

/* Estilo para o botão "Assinar" (Justificado) */
.price-card .btn {
    width: 100%; /* Justificado */
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0.85rem 1.75rem;
}

/* ---------------------------------------------------- */
/* CORREÇÃO 2 & 3: ESPAÇAMENTO ENTRE SEÇÕES E BOTÕES */
/* ---------------------------------------------------- */
#features, #pricing, #usability, #problem, #cta-bottom, #faq {
    padding: 4rem 0; /* Padding vertical padrão */
    margin-bottom: 5rem; /* Margem extra para separação entre blocos */
    background-color: #ffffff;
    box-shadow: none;
    border-radius: 0;
}
/* A seção CTA tem um fundo diferente, então o padding dela é mantido, mas a margem é aplicada */
#cta-bottom {
     background: #f5f5f7;
     padding: 5rem 0;
     margin-bottom: 0; /* Sem margem, pois o footer vem logo abaixo */
}
/* Seção FAQ */
#faq {
    background-color: #ffffff;
}

/* Ajuste de Espaçamento e Hierarquia de Texto */
#showcase {
    padding: 6rem 0;
    padding-bottom: 8rem; /* Aumentando o padding inferior para o botão não ser cortado */
    text-align: center;
    margin-bottom: 5rem; /* Separador entre Showcase e Problem */
}

#showcase h1 {
    font-size: 3.5rem;  
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}
#showcase p {
    font-size: 1.5rem;  
    font-weight: 500;
    color: #6e6e73;
    margin-bottom: 3rem; /* Espaço entre sub-título e botão */
    line-height: 1.5;
}

/* TÍTULOS DE SEÇÃO MINIMALISTAS */
#features h2, #pricing h2, #usability h2, #cta-bottom h2, #faq h2 {  
    font-size: 2rem;  
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 2.5rem;  
    border-bottom: none;
    display: block;
}

/* Bloco de Preço */
.price-card {
    background-color: #f5f5f7;
    padding: 3rem;  
    border-radius: 30px;  
    /* REMOVIDO A BORDA SÓLIDA #5A20A8 (que o usuário chamou de 6B26CB): */
    /* border: 4px solid #5A20A8; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Mantida apenas a sombra */
    padding-bottom: 4rem; /* Garante espaço para o botão */
}
.price-card ul {
    text-align: left;
    margin-bottom: 2rem;
    /* Adicionado layout de grid para 2 colunas */
    display: grid;
    grid-template-columns: 1fr; /* Padrão mobile: 1 coluna */
    gap: 10px;
    padding: 0; /* Removendo padding padrão de UL */
}
@media (min-width: 768px) {
    .price-card ul {
        grid-template-columns: 1fr 1fr; /* Desktop: 2 colunas */
    }
}

/* Estilos para o Subcontainer de Benefício (Quadrado Branco) */
.benefit-item-container {
    list-style: none;
    margin-bottom: 5px; 
}

.benefit-box {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex-grow: 1; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-box .benefit-icon-box {
    /* Estilos antigos (para <i>) mantidos para referência, mas substituídos por width/height */
    color: #5A20A8; 
    font-size: 2rem;
    margin-bottom: 10px;

    /* === NOVOS ESTILOS PARA SVG === */
    width: 2.5rem;  /* 40px */
    height: 2.5rem;
    display: inline-block; /* Garante alinhamento e dimensionamento */
}

/* Garante que o SVG preencha o contêiner .benefit-icon-box */
.benefit-box .benefit-icon-box svg {
    width: 100%;
    height: 100%;
}
/* === FIM DOS NOVOS ESTILOS === */


.benefit-box strong {
    font-size: 0.95rem;
    line-height: 1.3;
    display: block;
}

.benefit-box .microdescricao-geral {
    font-size: 0.75rem;
    color: #6e6e73;
    margin-top: 5px;
    line-height: 1.2;
}


/* Seção de Usabilidade */
.usability-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.device-list {
    list-style: none;
    padding: 0;
    display: flex; /* Mantém horizontal */
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}
.device-list li {
    display: flex;
    flex-direction: column; /* Ícone acima do texto */
    align-items: center;
}

/* ESTILO ATUALIZADO: Ícones de Dispositivos (SVG) */
.device-list .device-icon {
    width: 2.8rem; /* 44.8px */
    height: 2.8rem;
    color: #5A20A8;
    margin-bottom: 0.5rem;
}
/* Estilo antigo para <i>, pode ser removido ou mantido como fallback */
.device-list i {
    font-size: 2.5rem;
    color: #5A20A8;
    margin-bottom: 0.5rem;
}


/* Seção de Features (3 colunas em desktop) */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile padrão */
    gap: 2rem;
}
@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 colunas */
    }
}

.feature-item {
    padding: 2rem;
    background-color: #f5f5f7; 
    text-align: center;
}
.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.feature-item p {
    font-size: 1rem;
    color: #6e6e73;
    margin-bottom: 1.5rem;
}

.font-bold-custom {
    font-weight: 700 !important;
}


/* NOVOS ESTILOS: Seção FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    user-select: none;
}
.faq-question::-webkit-details-marker {
    display: none; /* Remove marcador padrão (Chrome) */
}
.faq-question::after {
    /* Adiciona ícone '+' */
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-question::after {
    /* Muda para '–' quando aberto */
    content: '–';
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #6e6e73;
    line-height: 1.6;
}
/* FIM ESTILOS FAQ */


/* Responsividade (Ajustes finos para mobile) */
@media (max-width: 768px) {
    #showcase { padding-bottom: 5rem; margin-bottom: 3rem; }
    #cta-bottom { padding-bottom: 5rem; }
    #features, #pricing, #usability, #problem, #faq { margin-bottom: 3rem; }
    .price-card { padding-bottom: 3rem; }
    .device-list { gap: 1rem; }
    .feature-grid { grid-template-columns: 1fr; }  

    /* Oculta nav e actions, mostra só logo em mobile */
    .main-nav, .header-actions {
        display: none;
    }
    header .container {
        justify-content: center; /* Centraliza o logo */
    }
}

/* Adicionando estilos para header-sticky (agora que o JS está separado) */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos de Spinner e GIF - Não estavam no estilo principal, mas são necessários */
.gif-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    min-height: 250px; /* Altura mínima para evitar layout shift */
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
}

.gif-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #5A20A8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    display: none; /* Controlado pelo JS */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Seletor .text-link removido, pois os botões foram atualizados para classes gerais. */