:root {
    --dark-bg: #0A032C;
    --primary-neon: #00ffff;
    /* Ciano Elétrico */
    --secondary-neon: #ff00ff;
    /* Magenta Vibrante */
    --light-text: #f8f9fa;
    --dark-text-on-neon: #0A032C;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #4A00E0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Grid Sutil de Fundo */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Animação de Partículas (Núcleo de IA) */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}

/* --- NAVBAR --- */
.logo-neon {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-text);
    text-shadow:
        0 0 5px var(--primary-neon),
        0 0 10px var(--primary-neon),
        0 0 20px var(--primary-neon);
}

.menu {
    z-index: 1;
}

.navbar .nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-neon);
    text-shadow: 0 0 5px var(--primary-neon);
}


/* --- CONTEÚDO HERO --- */
.hero-section h1 {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.highlight-neon {
    color: var(--primary-neon);
    text-shadow:
        0 0 0px var(--primary-neon),
        0 0 5px var(--primary-neon),
        0 0 25px var(--primary-neon);
}

/* --- BOTÃO CTA --- */
.btn-cta {
    background-color: var(--secondary-neon);
    color: var(--dark-text-on-neon);
    border: none;
    border-radius: 5px;
    box-shadow:
        0 0 5px var(--secondary-neon),
        0 0 15px var(--secondary-neon),
        0 0 30px var(--secondary-neon);
    transition: all 0.3s ease-in-out;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: var(--secondary-neon);
    color: var(--dark-text-on-neon);
    box-shadow:
        0 0 10px var(--secondary-neon),
        0 0 30px var(--secondary-neon),
        0 0 60px var(--secondary-neon);
}

/* --- PROVA SOCIAL --- */
.client-logo {

    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* ================================== */
/*         ESTILOS PARA A IMAGEM HERO */
/* ================================== */

/* Animação para a imagem flutuar suavemente */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    /* Aplica a animação */
    animation: floatAnimation 6s ease-in-out infinite;
    position: relative; /* Necessário para o z-index */
    z-index: 2; /* Garante que a imagem fique acima das partículas */
    /* Efeito de brilho (glow) que combina com o tema neon */
    filter: drop-shadow(0 0 15px var(--primary-neon));
    border-radius: 20px;
}

/* ============================================ */
/*       SEÇÃO DE SOLUÇÕES (SEGMENTAÇÃO)        */
/* ============================================ */
.solucoes-section {
    background-color: #111111;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Reutilizando a grade sutil da Hero */
.solucoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.solucoes-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    color: var(--light-text);
}


/* --- Card de Solução --- */
.solution-card {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
}

/* Efeito de brilho (glow) nas bordas */
.card-ciano {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}
.card-ciano:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border-color: var(--primary-neon);
}
.card-magenta {
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}
.card-magenta:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    border-color: var(--secondary-neon);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.card-ciano .card-icon { color: var(--primary-neon); }
.card-magenta .card-icon { color: var(--secondary-neon); }


.card-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    align-self: center; /* Centraliza a tag */
}

.card-title {
    color: var(--light-text);
    margin-bottom: 20px;
    min-height: 56px; /* Garante que os títulos tenham a mesma altura */
}

.benefits-list {
    color: #aab2bd;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 15px;
    flex-grow: 1;
}
.benefits-list li {
    margin-bottom: 10px;
}
.benefits-list .fa-check-circle {
    color: var(--primary-neon);
    margin-right: 10px;
}

/* --- Botões Customizados --- */
.btn-outline-light {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: var(--primary-neon);
    color: var(--dark-text-on-neon);
    box-shadow: 0 0 15px var(--primary-neon);
}
.btn-magenta {
    background-color: var(--secondary-neon);
    color: var(--dark-text-on-neon);
    font-weight: 600;
    border: 1px solid var(--secondary-neon);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    transition: all 0.3s ease;
}
.btn-magenta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--secondary-neon);
    color: var(--secondary-neon);
}

/* ============================================ */
/*           SEÇÃO DE RECURSOS (FEATURES)       */
/* ============================================ */

/* Wrapper para o divisor da seção de Recursos */
.section-divider-wrapper-features {
    background-color: #111111; /* Cor da seção ANTERIOR (Soluções) */
    position: relative;
    height: 80px;
}
.section-divider-top-features {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    
}
.section-divider-top-features svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.section-divider-top-features .shape-fill {
    fill: var(--dark-bg); /* Cor da seção de Features */
}


/* --- Estilo da Seção de Features --- */
.features-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #4A00E0 100%);
    padding: 100px 0;
}


/* --- Abas de Navegação (Esquerda) --- */
.feature-tabs .nav-link {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: left;
    color: var(--light-text);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-tabs .nav-link:hover {
    background-color: rgba(0, 255, 255, 0.05);
}

.feature-tabs .nav-link.active {
    background-color: rgba(0, 255, 255, 0.1);
    border-left-color: var(--primary-neon);
    box-shadow: inset 5px 0 15px -5px var(--primary-neon);
}

.feature-tabs .tab-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-tabs .tab-text {
    font-size: 0.9rem;
    color: #aab2bd;
    margin-bottom: 0;
}


/* --- Mockup da Interface (Direita) --- */
.mockup-window {
    position: relative;
    border-radius: 15px;
    padding: 20px;
    /* Efeito Glassmorphism */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Bolinhas de controle da janela (efeito visual) */
.mockup-window::before {
    content: '● ● ●';
    position: absolute;
    top: 5px;
    left: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 5px;
}

.mockup-window img {
    border-radius: 8px;
}

/* Efeito de transição suave entre as imagens */
.tab-content .tab-pane {
    transition: opacity 0.4s ease-in-out;
}

/* ================================== */
/*   ESTILOS PARA O ACCORDION MOBILE  */
/* ================================== */
.feature-accordion .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px !important; /* !important para sobrepor o Bootstrap */
    margin-bottom: 15px;
}
.feature-accordion .accordion-header {
    border-radius: 10px;
}
.feature-accordion .accordion-button {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--light-text);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: none; /* Remove a sombra do Bootstrap */
}

/* Estilo do botão quando o accordion está ABERTO */
.feature-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 255, 255, 0.2);
    color: var(--primary-neon);
    box-shadow: inset 0 -3px 0 var(--primary-neon);
}

/* Estiliza a seta padrão do Bootstrap para ficar branca */
.feature-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.feature-accordion .accordion-body {
    color: #aab2bd;
}

/* Remove a borda padrão entre os itens do accordion */
.feature-accordion .accordion-item + .accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================ */
/*           SEÇÃO DE CASOS DE USO (CORRIGIDO)    */
/* ============================================ */
.use-cases-section {
    background-color: #111111;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.use-cases-section .container {
    position: relative;
    z-index: 1;
}

/* --- Card do Caso de Uso --- */
.case-card {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    color: var(--light-text);
    /* NOVO: Força o card a se comportar como flex para alinhar o conteúdo */
    display: flex;
    flex-direction: column;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.case-icon { font-size: 2rem; color: var(--primary-neon); }
.case-industry { font-weight: 700; margin-bottom: 0; }
.case-subtitle { font-weight: 600; color: #aab2bd; font-size: 1rem; margin-top: 20px; }
.case-text { color: #aab2bd; font-size: 0.95rem; flex-grow: 1; /* NOVO: Faz o texto ocupar o espaço disponível */}

/* --- Grid de Resultados (KPIs) --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}
.result-item { text-align: center; }
.result-value { font-size: 2.5rem; font-weight: 800; color: var(--primary-neon); text-shadow: 0 0 10px var(--primary-neon); }
.result-label { font-size: 0.9rem; color: #aab2bd; }

/* --- Mockup de Celular (CORRIGIDO) --- */
.mockup-phone {
    background-color: #111;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    /* NOVO: Define um tamanho máximo e centraliza */
    max-width: 320px;
    margin: 0 auto;
}
.mockup-screen {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}
.mockup-screen img {
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    display: block;
}

/* --- Estilos do Swiper.js (CORRIGIDO) --- */
.use-cases-slider .swiper-slide {
    height: auto; /* NOVO: Permite que o Swiper calcule a altura corretamente */
}
.use-cases-slider {
    padding-bottom: 50px;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-neon);
}
.swiper-pagination-bullet-active {
    background: var(--primary-neon) !important;
}


/* ============================================ */
/*           SEÇÃO DE PLANOS (PRICING)          */
/* ============================================ */
.pricing-section {
    background-color: #111111;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* --- Seletor (Toggle Switch) --- */
.plan-toggle {
    display: flex;
    justify-content: center;
    background-color: #1A1A1A;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.toggle-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #aab2bd;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle-btn.active {
    background-color: var(--primary-neon);
    color: var(--dark-text-on-neon);
    box-shadow: 0 0 15px var(--primary-neon);
}

/* --- Controle de Visualização dos Planos --- */
.plan-view {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.plan-view.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Card de Preço --- */
.price-card {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: var(--light-text);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
}
.plan-name { font-weight: 700; }
.plan-price { font-size: 3rem; font-weight: 800; color: var(--primary-neon); margin: 10px 0; }
.per-month { font-size: 1rem; color: #aab2bd; font-weight: 400; }
.plan-description { color: #aab2bd; font-size: 0.9rem; min-height: 40px; }
.feature-list { margin: 30px 0; text-align: left; flex-grow: 1; }
.feature-list li { margin-bottom: 10px; color: #aab2bd; }
.feature-list i { margin-right: 10px; }
.feature-list .fa-check { color: var(--primary-neon); }
.feature-list .fa-times { color: #555; }

/* Destaque do Plano Popular */
.price-card.featured {
    position: relative;
    border-color: var(--secondary-neon);
    transform: scale(1.05);
}
.price-card.featured:hover { transform: scale(1.1); }
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-neon);
    color: var(--dark-text-on-neon);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* --- Card Enterprise (Bots) --- */
.enterprise-card {
    background-color: #1A1A1A;
    border: 1px solid var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    color: var(--light-text);
}
.enterprise-content { padding: 40px; }
.enterprise-icon { font-size: 3rem; color: var(--primary-neon); margin-bottom: 15px; }
.enterprise-title { font-weight: 700; }
.enterprise-text { color: #aab2bd; }
.enterprise-cta {
    padding: 40px;
    background-color: rgba(0, 255, 255, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================ */
/*       SEÇÃO DE FAQ E CTA FINAL               */
/* ============================================ */
.faq-cta-section {
    background-color: #111111;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Reutilizando a grade sutil */
.faq-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.faq-cta-section .container {
    position: relative;
    z-index: 1;
}

/* --- Card do CTA Final --- */
.cta-final-card {
    background-color: #1A1A1A;
    border: 1px solid var(--secondary-neon);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: var(--light-text);
}

.cta-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
}
.cta-title-bold {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.1rem;
    color: #aab2bd;
}

.cta-benefits {
    font-size: 0.9rem;
    color: #aab2bd;
}
.cta-benefits li {
    margin-bottom: 5px;
}
.cta-benefits i {
    color: var(--primary-neon);
    margin-right: 8px;
}

/* ============================================ */
/*                  RODAPÉ                      */
/* ============================================ */
.footer-section {
    background-color: var(--dark-bg); /* Cor de fundo mais escura da paleta */
    color: #aab2bd;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-logo {
    font-size: 2.2rem; /* Aumenta o logo no rodapé */
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* Linha de destaque neon abaixo do título */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-neon);
    box-shadow: 0 0 5px var(--primary-neon);
}

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

.footer-section ul a {
    color: #aab2bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 5px var(--primary-neon);
    padding-left: 5px;
}

/* Ícones Sociais */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aab2bd;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-neon);
    color: var(--dark-bg);
    border-color: var(--primary-neon);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--primary-neon);
}

/* Barra Inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsividade para a barra inferior e colunas */
@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}


/* --- Linha Divisória Vertical (Apenas Desktop) --- */
@media (min-width: 992px) {
    .cta-final-card {
        position: relative;
        padding-left: 50px; /* Espaço para a linha */
        text-align: left;
    }
    .cta-final-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10%;
        height: 80%;
        width: 2px;
        background: linear-gradient(var(--primary-neon), var(--secondary-neon));
        box-shadow: 0 0 10px var(--primary-neon);
    }
}


/* --- Responsividade --- */
@media (max-width: 991.98px) {
    .faq-cta-section { padding: 80px 0; }
    .cta-final-card { margin-top: 40px; }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    /* SEÇÃO DE SOLUÇÕES */
    .solucoes-section {
        padding: 80px 0;
    }
    .card-title {
        min-height: auto; /* Remove a altura mínima no mobile */
    }

    /* SEÇÃO DE RECURSOS (FEATURES) */
    .features-section { padding: 80px 0; }
    .section-divider-wrapper-features, .section-divider-top-features svg { height: 50px; }
    
    /* No mobile, as abas ficam horizontais e scrolláveis */
    .feature-tabs {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    .feature-tabs::-webkit-scrollbar { display: none; } /* Esconde a barra de rolagem */
    
    .feature-tabs .nav-link {
        flex: 0 0 280px; /* Define uma largura fixa para cada aba */
        margin-right: 15px;
        margin-bottom: 0;
        border-left: none; /* Remove a borda esquerda */
        border-bottom: 4px solid transparent; /* Adiciona uma borda inferior */
    }
    .feature-tabs .nav-link.active {
        border-bottom-color: var(--primary-neon);
        box-shadow: none; /* Remove a sombra interna */
    }

    .use-cases-section { padding: 80px 0; }
    .case-card .row { flex-direction: column-reverse; }
    .mockup-phone { margin-bottom: 30px; max-width: 300px; }
    .results-grid { grid-template-columns: 1fr; }
    .result-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; }
    .result-item:last-child { border-bottom: none; }
}

@media (max-width: 575.98px) {  
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .pHero {
        text-align: center;
        padding: 20px;
    }
    .pHero2 {
        text-align: center;
        
    }

    .client-logo {
        width: 100px;
    }
}