.page-hero-interactive { 
    position: relative; 
    background: linear-gradient(rgba(26,35,126,0.9), rgba(0,188,212,0.8)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1587&auto-format&fit=crop') no-repeat center center; 
    background-size: cover; 
    padding: 140px 20px; 
    color: #fff; 
    text-align: center; 
}
.page-hero-interactive::after { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.35); 
}
.page-hero-interactive .section-tagline, 
.page-hero-interactive .section-title, 
.page-hero-interactive .title-underline { 
    position: relative; 
    z-index: 1; 
}
.page-hero-interactive .section-tagline { 
    color: #fff; 
    letter-spacing: 2px; 
    font-weight: 600; 
    text-transform: uppercase; 
}
.page-hero-interactive .section-title { 
    font-size: 2.8rem; 
    font-weight: 700; 
    color: #fff; 
    margin: 10px 0; 
}
.title-underline { 
    width: 80px; 
    height: 4px; 
    background-color: #00BCD4; 
    margin: 20px auto 0; 
    border-radius: 2px; 
}

/* Seções e Títulos */
.section-fullwidth { 
    padding: 80px 0; 
}
.section-fullwidth.bg-light { 
    background-color: #F8F9FA; 
}
.container-link-pro { 
    max-width: 1140px; 
    margin: 0 auto; 
    padding: 0 15px; 
}
.section-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.section-tagline-content { 
    color: #00BCD4; 
    font-size: 1rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 10px; 
}
.section-title-content { 
    font-size: 2.2rem; 
    font-weight: 700; 
    margin-top: 0; 
    background: linear-gradient(90deg, #00BCD4, #1A237E); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.section-subtitle-centered { 
    text-align: center; 
    max-width: 700px; 
    margin: -30px auto 50px auto; 
    color: #546E7A; 
    font-size: 1.1rem; 
}

/* Botão CTA */
.cta-container { 
    text-align: center; 
}
.cta-button { 
    display: inline-block; 
    background: linear-gradient(45deg, #00BCD4, #00acc1); 
    color: white !important; 
    padding: 15px 35px; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; 
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4); 
    border: none; 
    margin-top: 15px; 
    position: relative; 
    overflow: hidden; 
}
.cta-button:hover {
    background: linear-gradient(45deg, #00acc1, #00BCD4);
}
.cta-button i { 
    margin-left: 8px; 
    transition: transform 0.3s ease; 
}
.cta-button:hover i { 
    transform: translateX(5px); 
}

/* --- ESTILO DE ALTO CONTRASTE PARA CTA FINAL --- */
.section-fullwidth:last-of-type { /* Seleciona a última seção, que é o CTA */
    background-color: #1A237E; /* Cor Marinho Sólida */
    color: #ffffff;
}
.section-fullwidth:last-of-type .section-tagline-content,
.section-fullwidth:last-of-type .section-title-content,
.section-fullwidth:last-of-type .section-subtitle-centered {
    color: #ffffff; /* Garante que os títulos e subtítulos sejam brancos */
    -webkit-text-fill-color: #ffffff; /* Força o preenchimento para branco no title-content */
    background: none; /* Remove o gradiente de texto */
}

/* ===================================================================
   2. COMPONENTES REUTILIZÁVEIS (Cards, Layouts e Listas)
=================================================================== */

/* Grid Padrão */
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}
.feature-card { 
    background-color: #fff; 
    padding: 30px; 
    border-radius: 12px; 
    text-align: center; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); 
    border-top: 4px solid transparent; 
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease; 
}
.feature-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); 
    border-top-color: #00BCD4; 
}
.feature-card img { 
    height: 65px; 
    width: auto; 
    margin-bottom: 20px; 
}

/* Layout de Duas Colunas */
.two-column-layout { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    flex-wrap: wrap; 
}
.two-column-layout.reverse-layout { 
    flex-direction: row-reverse; 
}
.column-text, .column-image { 
    flex: 1; 
    min-width: 300px; 
}
.column-image { 
    text-align: center; 
}
.main-pdv-image, .main-mobile-image { 
    max-width: 100%; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: none; 
}
.column-text .section-title-content { 
    text-align: left; 
    background: none; 
    -webkit-text-fill-color: initial; 
    color: #1A237E; 
    margin-bottom: 15px; 
}
.pdv-subtitle { 
    font-size: 1.2rem; 
    color: #546E7A; 
    margin-top: 0; 
    margin-bottom: 30px; 
}

/* Listas de Ícones (Mantido o seu estilo original) */
.feature-icon-list, .cadastro-list { 
    margin-top: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}
.feature-icon-item, .cadastro-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
}
.feature-icon-wrapper { 
    flex-shrink: 0; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background-color: #e0f2f1; 
    color: #00796b; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
}
.feature-icon-text h4, .cadastro-text h4 { 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: #1A237E; 
    margin: 0 0 5px 0; 
}
.feature-icon-text p, .cadastro-text p { 
    color: #546E7A; 
    line-height: 1.6; 
    margin: 0; 
}
.cadastro-icon { 
    flex-shrink: 0; 
    width: 40px; 
    font-size: 1.8rem; 
    color: #00BCD4; 
    text-align: center; 
    margin-top: 3px; 
}

/* ===================================================================
   3. ESTILOS PARA O NOVO GRID DE MÓDULOS (6 CARDS/MODAIS)
=================================================================== */

.module-cards-grid {
    margin-top: 50px;
}

.module-cards-grid .feature-card {
    text-align: left; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: none; 
    transition: transform 0.3s ease;
}

.module-cards-grid .feature-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.module-cards-grid .card-icon {
    font-size: 2.2rem;
    color: #00BCD4; 
    margin-bottom: 15px;
    display: block; 
}

.module-cards-grid h3 {
    font-size: 1.3rem;
    color: #1A237E;
    margin-top: 0;
}

.module-cards-grid p {
    color: #546E7A;
    margin-bottom: 20px;
}

.btn-detalhes {
    display: inline-block;
    color: #00BCD4 !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.btn-detalhes:hover {
    color: #00acc1 !important;
    text-decoration: underline;
}

/* ===================================================================
   4. ESTILOS DE LISTA DE CHECKLIST (USADO NO MODAL)
=================================================================== */

.modal-body .feature-checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.modal-body .feature-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #546E7A;
}

.modal-body .feature-checklist li i.fa-check-circle,
.modal-body .feature-checklist li i.fas {
    color: #00BCD4; 
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 5px; 
    flex-shrink: 0;
}

/* ===================================================================
   5. MEDIA QUERIES (RESPONSIVIDADE)
=================================================================== */

@media (max-width: 768px) {
    
    /* Redimensionamento de títulos para mobile */
    .section-title-content {
        font-size: 1.8rem;
    }
    .pdv-subtitle {
        font-size: 1.1rem;
    }

    /* Ajuste do grid para mobile (1 coluna) */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .module-cards-grid {
        gap: 20px;
    }
    
    /* Layout de Duas Colunas para mobile */
    .two-column-layout {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .two-column-layout.reverse-layout {
        flex-direction: column-reverse !important;
    }
}