.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Estilos da barra de navegação (copiados do seu quem-somos.html) */
.navbar {
    background-color: #5f0675;
    color: #fff;
    padding: 1.5rem 1.5rem;
}

.navbar-container {
    max-width: 84rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 4rem;
}

@media (min-width: 768px) {
    .logo {
        height: 5rem;
    }
}

.menu-toggle {
    color: #fff;
    display: block;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle-icon {
    width: 2rem;
    height: 2rem;
}

.navbar-links {
    display: none;
}

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
}

.navbar-links a:hover {
    color: #fdbf21;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background-color: #fff;
    color: #000000;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 14rem;
    transform-origin: top;
    transition: all 200ms ease-out;
    z-index: 50;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #000000;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
}

.mobile-menu {
    position: absolute;
    top: 5rem;
    background-color: #fff;
    width: 12rem;
    color: #000000;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 50;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: all 200ms ease-out;
    max-width: 10rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 1rem;

}

.mobile-menu a:hover {
    background-color: #f3f4f6;
}

.mobile-dropdown-menu {
    margin-top: 0.5rem;
    background-color: #f9fafb;
    color: #000000;
    border-radius: 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    width: 100%;
    padding: 0;
}

.mobile-dropdown-menu a {
    padding-left: 1.5rem;
}

.mobile-dropdown-menu a:hover {
    background-color: #e5e7eb;
}

.btn-contact {
    background-color: #ffa500;
    color: #000000;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 200ms ease-in-out;
    display: none;
}

@media (min-width: 1024px) {
    .btn-contact {
        display: block;
    }
}

.btn-contact:hover {
    background-color: #fdbf21;
}

@media (max-width: 768px) {
    .navbar .max-w-7xl {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .navbar ul li {
        margin: 0.5rem 0;
    }
}


main {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #fffbf7;
}

.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: 2px 2px 3px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.05);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.heading {
    text-align: center;
    color: #5f0675;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 4rem;
    margin: 0 auto 1rem;
}

.service-card h3 {
    color: #5f0675;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.cta-section {
    background-color: #5f0675;
    color: #fff;
    padding: 4rem 1.5rem;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #fdbf21;
    color: #5f0675;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e5a81e;
}

footer {
    background-color: #fffbf7;
    color: #fffbf7;
}

.footer-logo {
    width: 10rem;
    height: auto;
}

.footer-social-link {
    transition: color 0.2s ease-in-out;
}

.footer-social-link:hover {
    color: #5f0675;
}

.footer-bottom {
    background-color: #5f0675;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }
}

/* Estilos gerais do body para layout flex */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fffbf7;
}

main {
    flex: 1;
}

/* Estilos Navbar - Adaptados para Gestão Que Vende (Roxo escuro) */
nav {
    background-color: #5f0675;
    /* Roxo escuro da Gestão Que Vende */
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Sombra para o cabeçalho */
}

nav a {
    color: rgb(0, 0, 0);
    /* Cor dos links da navbar */
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.navbar a:hover {
    color: #ffa500;
    /* Cor de hover padrão dos links da navbar */
}

.navbar .active {
    font-weight: bold;
    color: #ffa500;
}

.btn-cta {
    background-color: #fdbf21;
    /* Amarelo vibrante para o botão CTA */
    color: #5f0675;
    /* Texto roxo escuro no botão CTA */
    padding: 0.75rem 1.5rem;
    /* Um pouco maior */
    border-radius: 4px;
    /* Cantos levemente arredondados */
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    font-weight: 600;
    text-transform: uppercase;
    /* Maiúsculas */
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background-color: #e0a01a;
    /* Amarelo um pouco mais escuro no hover */
    color: #5f0675;
    /* Mantém a cor do texto no hover */
}

/* Estilos para seções gerais de conteúdo */
.content-section {
    max-width: 1200px;
    margin: 4rem auto;
    /* Aumenta o espaçamento entre seções */
    padding: 2rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Alinha itens no centro verticalmente */
    overflow: hidden;
    gap: 2rem;
    /* Espaçamento entre colunas */
}

.content-section.reverse-layout {
    flex-direction: row-reverse;
    /* Inverte a ordem para imagem à direita */
}

.content-section .image-column,
.content-section .text-column {
    flex: 1;
    min-width: 300px;
    /* Garante que não fiquem muito pequenos */
}

.content-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    /* Pequeno arredondamento nas imagens */
}

.content-section .text-column h2 {
    font-size: 2.5rem;
    /* Títulos maiores */
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    /* Mais negrito */
    line-height: 1.2;
}

.content-section .text-column h2 span {
    color: #fdbf21;
    /* Destaque em amarelo */
}

.content-section .text-column p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.content-section .text-column ul {
    list-style: none;
    /* Remove bullet points padrão */
    padding: 0;
    margin-bottom: 1.5rem;
}

.content-section .text-column ul li {
    position: relative;
    padding-left: 25px;
    /* Espaço para o ícone */
    margin-bottom: 10px;
    color: #444;
    font-size: 1.1em;
}

.content-section .text-column ul li::before {
    content: "\f058";
    /* Ícone de check do Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #25d366;
    /* Verde para o check */
    position: absolute;
    left: 0;
    top: 2px;
}

.btn-call-to-action {
    display: inline-block;
    background-color: #fdbf21;
    color: #5f0675;
    padding: 10px;
    /* Este é o preenchimento que você quer diminuir */
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.btn-call-to-action:hover {
    background-color: #e0a01a;
    /* Amarelo mais escuro no hover */
    color: #5f0675;
}

/* Seção de Banner Principal (Hero) */
#hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6)), url('./imagens/ads.png');
    /* Corrigido */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 550px;
    /* Definindo uma altura mínima para o banner principal */
    color: white;
    /* Adicionado para que o texto no banner seja visível */
}

#hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 900px;
}

#hero-banner p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    line-height: 1.5;
    font-weight: 300;
}

.secondary-banner {
    background-color: #5f0675;
    background-image: url('/imagens/ads3.png');
    background-size: 108%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 450px;
    color: white;
    text-align: left;
    position: relative;
}

.secondary-banner .content-wrapper {
    max-width: 55%;
    margin-left: 5%;
    z-index: 2;
}

/* Opcional: para garantir que o texto não "vaze" em telas pequenas */
@media (max-width: 768px) {
    .secondary-banner .content-wrapper {
        margin-left: 20px;
        /* Ajuste para telas menores */
        margin-right: 20px;
    }
}

.secondary-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 700px;
    /* Limita a largura do título para a esquerda */
}

.secondary-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    /* Limita a largura do parágrafo para a esquerda */
    margin-bottom: 2rem;
}

.secondary-banner .btn-custom {
    background-color: #fdbf21;
    color: #5f0675;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    /* Para que o padding funcione corretamente */
    margin-top: 1rem;
    /* Espaçamento do parágrafo */
}

.secondary-banner .btn-custom:hover {
    background-color: #e0a01a;
}

.benefits-section {
    background-color: #fffbf7;
    padding: 4rem 2rem;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .benefits-section h2 {
        width: 80%;
        margin-left: 10%;
    }
}

/* Seção de Fundo Roxo (Chamada para Ação) */
.purple-call-to-action-section {
    background-color: #6A329F;
    /* Seu roxo */
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.purple-call-to-action-section h2 {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fdbf21;
    /* Seu amarelo */
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.purple-call-to-action-section p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

/* Seção de Formulário */
.form-contact-section {
    background-color: #fffbf7;
    padding: 4rem 2rem;
}

.form-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background-color: #fffbf7;

}

.form-contact-text {
    flex: 1;
    min-width: 300px;
    color: #333;
    text-align: left;
}

.form-contact-text h3 {
    font-size: 2.5em;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.form-contact-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.form-contact-fields {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #f9f9f9;
    /* Fundo do formulário */
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-contact-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    color: #333;
}

.form-contact-input::placeholder {
    color: #888;
}

.form-contact-input:focus {
    outline: none;
    border-color: #5f0675;
    /* Roxo da Gestão Que Vende */
    box-shadow: 0 0 0 2px rgba(106, 50, 159, 0.2);
}

.form-contact-button {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: #fdbf21;
    /* Amarelo */
    color: #5f0675;
    /* Roxo escuro */
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.form-contact-button:hover {
    background-color: #e0a01a;
    /* Amarelo mais escuro no hover */
    color: #5f0675;
}

footer a {
    color: #000000;
    /* Links em amarelo */
    transition: color 0.2s;
}

footer a:hover {
    color: #e0a01a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    height: 80px;
    /* Altura do logo no footer */
}

.footer-contact-info {
    text-align: left;
    /* Alinha à esquerda */
    line-height: 1.8;
    font-size: 0.95em;
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.8rem;
}

.copyright-bar {
    background-color: #5f0675;
    /* Fundo ainda mais escuro para o copyright */
    color: #888;
    padding: 1rem 2rem;
    font-size: 0.9em;
    text-align: center;
    margin-top: 2rem;
    /* Espaçamento do conteúdo acima */
}

/* Estilos do 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: 2px 2px 3px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.05);
}

.whatsapp-float i {
    color: white;
}

/* Responsividade geral */
@media (max-width: 1024px) {
    #hero-banner h1 {
        font-size: 3rem;
    }

    #hero-banner p {
        font-size: 1.2rem;
    }

    .content-section .text-column h2 {
        font-size: 2rem;
    }

    .benefits-section h2 {
        font-size: 2.2rem;
    }

    .secondary-banner h2 {
        font-size: 2.2rem;
    }

    .secondary-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    nav .max-w-7xl {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        /* Remove 'hidden' do Tailwind aqui, Alpine.js vai gerenciar */
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    nav .btn-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    #hero-banner {
        padding: 6rem 1.5rem;
        min-height: 400px;
    }

    #hero-banner h1 {
        font-size: 2.5rem;
    }

    #hero-banner p {
        font-size: 1rem;
    }

    .secondary-banner {
        padding: 3rem 1.5rem;
        min-height: 350px;
        /* Manter alinhado à esquerda em mobile */
        align-items: flex-start;
        text-align: left;
    }

    .secondary-banner h2 {
        font-size: 1.8rem;
    }

    .secondary-banner p {
        font-size: 0.9rem;
    }

    .content-section {
        flex-direction: column;
        margin: 2rem auto;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .content-section.reverse-layout {
        flex-direction: column;
        /* Em mobile, sempre em coluna */
    }

    .content-section .text-column h2 {
        font-size: 1.8rem;
    }

    .benefits-section {
        padding: 3rem 1.5rem;
    }

    .benefits-section h2 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .purple-call-to-action-section {
        padding: 3rem 1.5rem;
    }

    .purple-call-to-action-section h2 {
        font-size: 2rem;
    }

    .form-contact-section {
        padding: 3rem 1.5rem;
    }

    .form-contact-wrapper {
        flex-direction: column;
        gap: 2rem;

    }

    .form-contact-text {
        text-align: center;
    }

    .form-contact-text h3 {
        font-size: 2rem;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-info,
    .footer-social-icons {
        text-align: center;
        justify-content: center;
    }

    /* Responsividade WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}


.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.purple-call-to-action-section h2,
.purple-call-to-action-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-call-to-action {
    display: block;
    /* Ou inline-block, mas 'block' pode ser mais fácil de centralizar com margin: auto */
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    /* Seu espaçamento superior original */
}

.benefits-section {
    padding: 80px 0;
    background-color: #fffbf7;
}

.benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.benefit-card {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    flex: 1 1 calc(33% - 40px);
    box-sizing: border-box;
    min-width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
}

@media (max-width: 768px) {
    .benefit-card {
        flex: 1 1 calc(80% - 40px);
        box-sizing: border-box;
        max-width: 500px;
    }
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #5f0675;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.5;
}

.left-image-right-content-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0rem;
    gap: 15rem;
    max-width: 1600px;
    margin: 1rem;
    background-color: #fffbf7;
}

.banner-content-wrapper {
    flex: 100px;
    min-width: 300px;
    text-align: left;
    margin-right: 20px;
}

.banner-image-wrapper {
    flex: 1;
    min-width: 00px;
    text-align: center;
    margin-left: -80px;
    margin-top: 150px;
}

.left-image-right-content-banner .banner-image-wrapper img {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 800px;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .left-image-right-content-banner .banner-image-wrapper img {
        max-width:3%;
        margin-top: -350px;
        margin-bottom: -150px;
    }
}

.banner-image-meta-ads {
    flex: 1;
    min-width: 00px;
    text-align: center;
    margin-left: -80px;
    margin-top: 150px;
}

.banner-content-meta-ads {
    flex: 100px;
    min-width: 300px;
    text-align: left;
    margin-right: 20px;
}

.left-image-right-content-banner .banner-image-meta-ads img {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 800px;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .left-image-right-content-banner .banner-image-meta-ads img {
        max-width: 103%;
        margin-top: -1030px;
    }

    .banner-content-meta-ads {
        margin-top: 500px;
        margin-bottom: -210px;
        text-align: center;
    }
}

.banner-image-google {
    flex: 1;
    min-width: 00px;
    text-align: center;
    margin-left: -80px;
    margin-top: 150px;
}

.banner-content-google {
    flex: 100px;
    min-width: 300px;
    text-align: left;
    margin-right: 20px;
}

.left-image-right-content-banner .banner-image-google img {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 800px;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .left-image-right-content-banner .banner-image-google img {
        max-width: 100%;
        margin-top: -980px;
    }

    .banner-content-google {
        margin-top: 400px;
        text-align: center;
        margin-bottom: -250px;
    }
}

.banner-image-youtube {
    flex: 1;
    min-width: 00px;
    text-align: center;
    margin-left: -80px;
    margin-top: 150px;
}

.banner-content-youtube {
    flex: 100px;
    min-width: 300px;
    text-align: left;
    margin-right: 20px;
}

.left-image-right-content-banner .banner-image-youtube img {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 800px;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .left-image-right-content-banner .banner-image-youtube img {
        max-width: 103%;
        margin-top: -1150px;
    }

    .banner-content-youtube {
        margin-top: 480px;
        text-align: center;
        margin-bottom: -180px;
    }
}


.banner-image-tiktok {
    flex: 1;
    min-width: 00px;
    text-align: center;
    margin-left: -130px;
    margin-top: 150px;
}

.banner-content-tiktok {
    flex: 100px;
    min-width: 300px;
    text-align: left;
    margin-right: 20px;
}

.banner-content-tiktok p,
.banner-content-tiktok h2,
.banner-button {
    margin-left: 40px;
}

.left-image-right-content-banner .banner-image-tiktok img {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 800px;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .left-image-right-content-banner .banner-image-tiktok img {
        max-width: 108%;
        margin-top: -300px;
        justify-self: center;
        align-self: center;
    }

    .banner-content-tiktok {
        text-align: center;
        margin-top: -90px;
    }
}

.banner-content-linkedin {
    flex: 100px;
    min-width: 300px;
    text-align: left;
    margin-right: 20px;
}

.banner-image-linkedin {
    flex: 1;
    min-width: 00px;
    text-align: center;
    margin-left: -80px;
    margin-top: 150px;
}

.left-image-right-content-banner .banner-image-linkedin img {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 800px;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .left-image-right-content-banner .banner-image-linkedin img {
        max-width: 103%;
        margin-top: -220px;
    }

    .banner-content-linkedin {
        text-align: center;
        margin-top: -80px;
    }
}

.left-image-right-content-banner h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000000;
}

.left-image-right-content-banner p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #000000;
}

.banner-content-wrapper .banner-button {
    margin-left: 0;
    margin-right: auto;
}

.banner-content-meta-ads .banner-button {
    margin-left: 0;
    margin-right: auto;
}

.banner-content-google .banner-button {
    margin-left: 0;
    margin-right: auto;
}

.banner-content-youtube .banner-button {
    margin-left: 0;
    margin-right: auto;
}

.left-image-right-content-banner .banner-button {
    display: inline-block;
    background-color: #fdbf21;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.left-image-right-content-banner .banner-button:hover {
    background-color: #e0a01a;
    transform: translateY(-2px);
}

/* Media queries para o banner de imagem e texto */
@media (max-width: 768px) {
    .left-image-right-content-banner {
        flex-direction: column;
        /* Empilha em telas menores */
        padding: 3rem 1.5rem;
        gap: 2rem;
    }


    .left-image-right-content-banner .banner-content-wrapper {
        text-align: center;
        /* Centraliza o texto em mobile */
    }

    .left-image-right-content-banner h2 {
        font-size: 2rem;
    }

    .left-image-right-content-banner p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .left-image-right-content-banner h2 {
        font-size: 1.6rem;
    }
}


.faceads-section {
    background-color: #5f0675;

    padding: 3rem 2rem;
    display: flex;
    justify-content: center;

    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.faceads-text-content {
    max-width: 45%;
    color: white;
}

.faceads-text-content h2 {
    font-size: 2.8rem;
    color: #FDBF21;
    /* Cor do título alterada para amarelo */
    margin-bottom: 1.5rem;
}

.faceads-text-content h2 span {
    color: #FDBF21;
}

.faceads-text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faceads-accordion-container {
    max-width: 315%;
    /* Largura máxima do acordeão reduzida */
    width: 50%;
}

.accordion-item {
    margin-bottom: 15px;
    /* Espaço entre os itens do acordeão reduzido */
}

.accordion-header {
    background-color: #ffffff;
    /* Cor de fundo branca */
    color: rgb(0, 0, 0);
    /* Cor do texto preta */
    padding: 1.5rem 2rem;
    cursor: pointer;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #ffa500;
    /* Mantida a cor roxa mais escura no hover */
}

.accordion-header.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .arrow-icon {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: white;
    color: #333;
    padding: 1.5rem 2rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: -1px;
}

.accordion-content-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accordion-content-body ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-content-body ul li {
    margin-bottom: 0.5rem;
}

.accordion-content-body strong {
    color: #5f0675;
}

/* Responsividade para a seção Face Ads */
@media (max-width: 992px) {
    .faceads-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .faceads-text-content {
        max-width: 100%;
        min-width: unset;
        text-align: center;
    }

    .faceads-text-content h2 {
        font-size: 2rem;
    }

    .faceads-accordion-container {
        min-width: unset;
        width: 100%;
    }

    .accordion-header {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .accordion-content-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faceads-text-content h2 {
        font-size: 1.6rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .accordion-content-body {
        font-size: 0.9em;
        padding: 1rem;
    }
}

.left-image-right-content-banner.reverse-layout {
    flex-direction: row-reverse;
    /* Inverte a ordem dos itens para imagem à direita */
}

.left-image-right-content-banner.reverse-layout .banner-image-wrapper {
    margin-right: 0;
    margin-left: 1rem;
    max-width: 600px;
    /* Defina a largura máxima desejada (ex: 400px, 30%, etc.) */
    width: auto;
    /* Para manter a proporção da imagem */
}

/* Responsividade para a nova seção (vai se comportar como a anterior em telas pequenas) */
@media (max-width: 992px) {
    .left-image-right-content-banner.reverse-layout {
        flex-direction: column;
        /* Em telas pequenas, volta a ser coluna para ambas as seções */
    }

    .left-image-right-content-banner.reverse-layout .banner-image-wrapper {
        margin-left: 0;
        /* Remove margem extra em mobile */
        margin-bottom: 2rem;
        /* Adiciona espaço abaixo da imagem em mobile */
    }
}

.how-publinet-works-section {
    background-color: #fffbf7;
    /* Fundo claro para combinar com a imagem */
    padding: 5rem 2rem;
    text-align: center;
    /* Centraliza o texto e o fluxo */
    color: #333;
}

.how-publinet-works-section h2 {
    font-size: 2.5rem;
    color: #5f0675;
    /* Cor azul para o título */
    margin-bottom: 2rem;
}

.how-publinet-works-section p {
    max-width: 900px;
    /* Limita a largura do parágrafo */
    margin: 0 auto 1.5rem auto;
    /* Centraliza e adiciona margem inferior */
    line-height: 1.7;
    font-size: 1.1rem;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Permite quebrar linha em telas menores */
    margin-top: 3rem;
    gap: 1.5rem;
    /* Espaçamento entre os itens e as setas */
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.step-number {
    background-color: #5f0675;
    /* Cor azul para o círculo do número */
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-text {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    /* Remove margem padrão do parágrafo */
}

.arrow-separator {
    font-size: 1.5rem;
    color: #5f0675;
    /* Cor da seta */
    margin: 0 1rem;
    /* Espaçamento da seta */
}

/* Responsividade para a seção de processo */
@media (max-width: 768px) {
    .how-publinet-works-section h2 {
        font-size: 2rem;
    }

    .how-publinet-works-section p {
        font-size: 1rem;
    }

    .process-flow {
        flex-direction: column;
        /* Em telas menores, os itens ficam em coluna */
        gap: 1rem;
        /* Espaçamento menor entre os itens */
    }

    .arrow-separator {
        transform: rotate(90deg);
        /* Gira a seta para baixo em mobile */
        margin: 0.5rem 0;
        /* Ajusta a margem para a seta vertical */
    }
}

@media (max-width: 480px) {
    .how-publinet-works-section h2 {
        font-size: 1.8rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-text {
        font-size: 0.9rem;
    }
}


/* --- ESTILOS DO CONTÊINER DO FORMULÁRIO (NOVO ESTILO) --- */
.formulario-container {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- ESTILOS DOS CAMPOS DO FORMULÁRIO (NOVO ESTILO) --- */
.form-grupo {
    margin-bottom: 20px;
}

.form-campo {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-campo:focus {
    border-color: #f2c73f;
    outline: none;
}

textarea.form-campo {
    min-height: 120px;
    resize: vertical;
}

/* --- ESTILOS DO BOTÃO (NOVO ESTILO) --- */
.botao-enviar {
    width: 100%;
    padding: 15px 20px;
    background-color: #f2c73f;
    color: #3b3b3b;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botao-enviar:hover {
    background-color: #ffda5a;
}

/* Estilos da Seção Principal */
.servicos-detalhados-section {
    padding: 60px 20px;
    /* Espaçamento interno */
    text-align: center;
    /* Centraliza o grid */
    background-color: #f8f8f8;
    /* Fundo da seção, igual ao corpo */
}

/* Estilos da Grade (Grid) dos Cards */
.servicos-detalhados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* 3 colunas em telas maiores, ajusta para menores */
    gap: 20px;
    /* Espaçamento entre os cards, ajustado para o print */
    max-width: 1000px;
    /* Largura máxima da grade, ajustado para o print */
    margin: 0 auto;
    /* Centraliza a grade */
}

/* Estilos de Cada Card de Serviço */
.servico-card {
    background-color: #fff;
    /* Fundo branco para o card */
    border-radius: 8px;
    /* Cantos arredondados, como no print */
    padding: 25px;
    /* Padding interno do card, ajustado para o print */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    /* Sombra suave e mais discreta, como no print */
    text-align: left;
    /* Alinhamento do texto */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Estilos do Ícone no Card */
.servico-icon-container {
    width: 50px;
    /* Tamanho do container do ícone */
    height: 50px;
    border-radius: 6px;
    /* Cantos levemente arredondados, como no print */
    background-color: #fdbf21;
    /* Cor amarela do container dos ícones, como no print */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    /* Espaço abaixo do ícone */
}

.servico-icon-container svg {
    width: 28px;
    /* Tamanho do SVG dentro do container */
    height: 28px;
    fill: #7c4c9f;
    /* Cor do ícone (roxo, como no print) */
}

.servico-card h3 {
    font-size: 1.3em;
    /* Tamanho do título do card, ajustado para o print */
    color: #7c4c9f;
    /* Cor roxa do título, como no print */
    margin: 0 0 10px 0;
    /* Margem abaixo do título */
    font-weight: 600;
    /* Negrito médio */
}

.servico-card p {
    font-size: 0.95em;
    /* Tamanho do texto de descrição */
    color: #666;
    /* Cor do texto de descrição, um pouco mais escuro que o padrão */
    margin: 0;
    /* Remove margem padrão do parágrafo */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .servicos-detalhados-grid {
        grid-template-columns: 1fr;
        /* Uma coluna em telas menores */
        padding: 0 15px;
    }

    .servico-card {
        padding: 20px;
    }
}

/* Estilos para o contêiner do banner */
.banner-section {
    position: relative;
    /* Essencial para posicionar o conteúdo filho */
    display: flex;
    /* Usamos flexbox para centralizar o conteúdo */
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    color: #000000;
    /* Cor do texto (branco) */
    text-align: center;
    /* Alinha o texto e o botão dentro do contêiner */
    /* A altura e o background-image já estão no HTML inline, mas você pode movê-los para cá se preferir */
    /* height: 650px; */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-image: url('./imagens/ads.png'); */
}

/* Estilos para o conteúdo de texto e botão */
.banner-content {
    max-width: 900px;
    /* Limita a largura do texto para melhor legibilidade */
    padding: 20px;
    /* Espaçamento interno */
}

.banner-title {
    font-size: 3.5rem;
    /* Tamanho do título principal (ajuste conforme necessário) */
    font-weight: 700;
    /* Negrito */
    margin-bottom: 20px;
    /* Espaço abaixo do título */
    line-height: 1.2;
    /* Espaçamento entre as linhas do título */
}

.banner-subtitle {
    font-size: 1.0rem;
    /* Tamanho do subtítulo (ajuste conforme necessário) */
    font-weight: 400;
    /* Peso da fonte normal */
    line-height: 1.5;
    /* Espaçamento entre as linhas do subtítulo */
    margin-bottom: 30px;
    /* Espaço abaixo do subtítulo para o botão */
}

/* Estilos para o contêiner do banner (inalterado) */
.banner-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    /* height: 650px; etc. */
}

/* Estilos para o conteúdo de texto e botão (inalterado) */
.banner-content {
    max-width: 900px;
    padding: 20px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    /* Remova a margin-bottom daqui se estiver presente, para o margin-top do botão controlar o espaçamento */
    /* margin-bottom: Xpx; */
}

/* Estilos GERAIS para qualquer botão com a classe .banner-button */
.banner-button {
    display: inline-block;
    background-color: #5f0675;
    /* Usei o amarelo padrão dos seus exemplos. Se quiser o roxo, mude para #5f0675; */
    color: #F7B500;
    /* Cor do texto do botão (azul escuro). Se for roxo, use #fdbf21; */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    /* REMOVA o margin-top daqui, se estiver presente */
    /* margin-top: Xpx; <-- REMOVA ISSO */
}

.banner-button:hover {
    background-color: #E0A400;
    /* Cor de fundo do botão no hover (se for amarelo) */
    /* Se for roxo, pode ser um roxo mais claro ou escuro no hover, ex: #7a0a99; */
}

.banner-responsivo-hero {
    background-image: url('/imagens/ads.png');
    height: 650px;
}

/* Regras para Mobile (Telas com até 768px) */
@media (max-width: 768px) {
    .banner-responsivo-hero {
        background-image: url('/imagens/adsmob.png');
        height: 800px !important;
        background-position: center;
    }

    .banner-button-alavancar {
        margin-top: -150px !important;
        /* <--- Adicione ou ajuste ESTA linha para o espaçamento desejado */
    }
}

/* NOVA CLASSE: Estilos APENAS para o botão "Quero alavancar" */
.banner-button-alavancar {
    margin-top: 380px;
    /* <--- Adicione ou ajuste ESTA linha para o espaçamento desejado */
}

/* Media Queries para Responsividade (inalterado, mas verifique se os tamanhos ainda fazem sentido) */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 2.8rem;
    }

    .banner-subtitle {
        font-size: 1.5rem;
    }

    .banner-button {
        /* Aplica-se a todos os .banner-button, incluindo o .banner-button-alavancar */
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
        /* margin-bottom: 20px; <--- Ajuste se necessário após remover do .banner-subtitle geral */
    }

    .banner-section {
        height: 500px;
    }

    .banner-button {
        /* Aplica-se a todos os .banner-button, incluindo o .banner-button-alavancar */
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-content {
        padding: 15px;
    }

    .banner-section {
        height: 400px;
    }
}

.py-16.px-6.bg-white {
    background-color: #fffbf7;
}

#contato-section {
    background-color: #fffbf7;
}