/* === Base === */
/* Ajustes para o corpo */
body {
    font-family: sans-serif;
    margin: 0;
    padding-top: 135px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.metade-esquerda,
.metade-direita {
    flex: 1;
    padding: 20px;
}

/* === Swiper (Carrossel) === */
.swiper {
    width: 100%;
    padding: 40px 0;
}

.swiper-slide {
    background: #d8ecff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    max-width: 370px;
    padding: 30px;
    box-sizing: border-box;
}

/* === Cabeçalho === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.wh6-logo img {
    width: 314px;
    height: 115px;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.main-nav a:hover {
    background-color: #f0f0f0;
}

/* === Slideshow (Antigo, se ainda estiver em uso) === */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: auto;
	border-radius: 15px;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: .4 }
    to { opacity: 1 }
}

.banner-loja-virtual {
    /* Define a imagem de fundo e garante a repetição */
    background-image: url("https://wh6.com.br/imagens/crie-sua-loja-virtual.jpg");
    background-repeat: repeat-x;

    /* Define a altura do banner para que a imagem seja visível */
    height: 100px; /* Ajuste este valor conforme necessário */

    /* Garante que o banner ocupe a largura total */
    width: 100%;

    /* Aplica a animação de rolagem */
    animation: scroll-banner 30s linear infinite; /* Animação: nome, duração, tipo, repetição */
}

/* Define a animação da rolagem */
@keyframes scroll-banner {
    from {
        background-position: 0% 0; /* Posição inicial: 0% horizontalmente */
    }
    to {
        background-position: 100% 0; /* Posição final: 100% horizontalmente */
    }
}
/* === Seções Principais === */
.planos-section,
.recursos-section,
.criar-loja-section,
.ecommerce-de-sucesso-section,
.historia-section {
    padding: 50px 20px;
    text-align: justify;
    border-bottom: 1px solid #ccc;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* === Planos === */
.planos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plano {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    max-width: 300px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plano:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.plano h3 {
    text-align: center;
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.plano ul {
    list-style: none;
    padding: 0;
}

.plano li {
    padding-left: 20px;
    position: relative;
    text-align: justify;
}

.plano li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}

.plano .aviso {
    font-size: 0.7em;
    color: #000;
    margin-top: 20px;
    text-align: justify;
}

/* === Depoimentos === */
.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    text-align: justify;
}

/* === Botão WhatsApp === */
.whatsapp-contato {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1em;
}

.whatsapp-contato img.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* === Rodapé === */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.copyright {
    text-align: center;
    color: #fff;
    font-size: 0.9em;
}

.copyright strong {
    font-size: 22px;
    font-weight: bold;
}

/* === Responsividade === */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .planos-container,
    .depoimentos-container {
        flex-direction: column;
        align-items: center;
    }

    .plano {
        max-width: 90%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }
}

      body {
        font-family: sans-serif;
        background-color: #f9f9f9;
      }
    
      h2 {
        text-align: center;
        color: #002e42;
      }
    
      .swiper {
        width: 100%;
        padding: 40px 0;
      }
 /////   

    
      .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: 20px;
      }
    
      .testimonial-author img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 10px;
      }
    
      .author-name {
        font-weight: bold;
        color: #1f77d5;
      }
    
      .author-role {
        font-size: 14px;
        color: #555;
      }
/* Estilo geral da seção */
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #333;
    font-size: 2.5em;
}

.faq-header p {
    color: #666;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

/* Estilo para cada item do FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #007bff; /* Cor de destaque ao passar o mouse */
}

.faq-icon {
    font-size: 1.5em;
    transition: transform 0.3s;
}

/* Esconde a resposta por padrão */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Estilo para quando a resposta está ativa (com a classe 'active') */
.faq-item.active .faq-question {
    color: #007bff; /* Muda a cor do título quando ativo */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Gira o ícone de + para X */
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Aumenta a altura para exibir o conteúdo */
    transition: max-height 0.4s ease-in;
}/* Estilos para a seção principal (Hero Section) */
.hero-section {
    background-color: #09176e; /* Fundo azul sutil */
    color: #fff;
    display: flex; /* Permite alinhar o conteúdo lado a lado */
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px; /* Espaço entre os dois lados */
}

.content-left {
    flex: 1; /* Faz com que esta div ocupe o espaço disponível */
    max-width: 600px; /* Limita a largura para não ficar muito grande */
}

.content-left h1 {
    font-size: 3em;
    color: #00ff00; /* Cor verde para o título */
    margin: 0 0 20px 0;
}

.content-left p {
    font-size: 1.2em;
    color: #ccc; /* Cor cinza claro para o parágrafo */
    line-height: 1.5;
    margin: 0 0 30px 0;
}

.cta-form {
    display: flex;
    gap: 15px; /* Espaço entre o botão e o campo de texto */
    align-items: center;
}

.btn-primary {
    background-color: #00ff00; /* Cor verde para o botão */
    color: #000;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #00cc00; /* Escurece um pouco no hover */
}

.cta-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

/* Estilo para o placeholder */
.cta-form input::placeholder {
    color: #ccc; /* Cor cinza claro para o placeholder */
}

.content-right {
    flex: 1; /* Faz com que esta div ocupe o espaço disponível */
    display: flex;
    justify-content: center;
}

.content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Borda arredondada na imagem */
}

/* Para telas menores */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column; /* Empilha os elementos em telas menores */
        text-align: center;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-form input,
    .btn-primary {
        width: 100%;
    }
}
/* Importação da fonte (se o seu site ainda não a tiver) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Reset básico para melhor consistência */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Estilos da Seção Principal */
.section-features {
    background-color: #f7f7f7; /* Cor de fundo cinza claro */
    padding: 80px 20px;
}

.container-wh6 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.title-features {
    color: #333;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle-features {
    color: #666;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

/* Estilos dos Cards */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card-feature {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.icon-container {
    background-color: #00c853;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.icon-feature {
    color: #fff;
    font-size: 2.5em;
}

.card-title {
    color: #333;
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Media Query para Responsividade em telas menores */
@media (max-width: 768px) {
    .section-features {
        padding: 50px 15px;
    }

    .title-features {
        font-size: 2em;
    }

    .subtitle-features {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .card-feature {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* --- Estilos da Seção de Preços --- */
.pricing-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
}

.title-pricing {
    color: #333;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.subtitle-pricing {
    color: #666;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
    text-align: center;
}

.plans-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.plan-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Necessário para posicionar o badge */
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.plan-header {
    margin-bottom: 20px;
}

.plan-title {
    color: #333;
    font-size: 1.5em;
    font-weight: 700;
}

.plan-description {
    color: #666;
    font-size: 1em;
    margin-top: 5px;
}

.plan-price {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.plan-price .price {
    font-size: 35px;
    font-weight: 700;
    color: #333;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    color: #666;
    font-size: 1em;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    margin-right: 10px;
}

.fa-check {
    color: #00c853; /* Cor verde para ícones de 'check' */
}

.fa-xmark {
    color: #dc3545; /* Cor vermelha para ícones de 'x' */
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #00c853;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #00a042;
}

/* --- Destaque para o plano Mais Popular --- */
.featured-plan {
    background-color: #00c853;
    color: #fff;
    transform: scale(1.05); /* Aumenta o tamanho do card */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1; /* Garante que o card fique por cima dos outros */
}

.featured-plan:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-plan .plan-title,
.featured-plan .plan-price .price,
.featured-plan .plan-features li,
.featured-plan .plan-features i {
    color: #fff;
}

.featured-plan .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-featured {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #00c853;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary-featured:hover {
    background-color: #e0e0e0;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #ffc107;
    color: #333;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 0.8em;
}

/* --- Media Queries para Responsividade --- */
@media (max-width: 768px) {
    .plans-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .plan-card, .featured-plan {
        max-width: 100%;
        transform: scale(1);
    }
    .plan-card:hover {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .featured-plan:hover {
        transform: scale(1) translateY(0);
    }
}

.depoimentos-section .texto-centralizado {
    color: #666;
    font-size: 1.1em;
    max-width: 700px; /* Limita a largura do texto para ele não ficar tão longo */
    margin: 0 auto 80px; /* Aumentei o espaço de baixo para 80px */
    line-height: 1.5;
    text-align: center;
}

/* Estilos para o subtítulo */
.subtitle-depoimentos {
    color: #666; /* Cor do texto */
    font-size: 1.1em; /* Tamanho do texto */
    max-width: 700px; /* Largura máxima para centralizar melhor */
    margin: 0 auto 50px; /* Espaço de 50px abaixo */
    line-height: 1.5; /* Espaçamento entre as linhas */
    text-align: center; /* Centraliza o texto */
}

/* --- Estilos do Swiper (Carrossel) --- */
.depoimentos-section .swiper {
    width: 78%; /* Ajuste para preencher a largura total do contêiner */
    height: auto;
}

.depoimentos-section .swiper-slide {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimentos-section .swiper-slide p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px; /* Reduz o espaço abaixo do texto, já que as estrelas têm margem */
    text-align: center; /* Centraliza o texto do depoimento */
}

.depoimentos-section .swiper-slide strong {
    color: #00c853; /* Cor verde para o nome "WH6 ecommerce" */
}

/* --- Estilos da Avaliação (Estrelas) --- */
.testimonial-rating {
    color: #ffc107; /* Cor amarela/dourada para as estrelas, mais vibrante */
    font-size: 1.5em; /* Tamanho das estrelas */
    margin-bottom: 20px; /* Espaço abaixo das estrelas */
    text-align: center; /* Centraliza as estrelas */
}

.testimonial-rating i {
    margin: 0 2px; /* Espaço entre as estrelas */
}

/* --- Estilos do Autor do Depoimento (VERSÃO CORRIGIDA) --- */
.testimonial-author {
    display: flex;
    flex-direction: column; /* Alinha a imagem e o texto verticalmente */
    align-items: center; /* Centraliza os itens horizontalmente */
    text-align: center;
    margin-top: auto; /* Empurra a div para o final do card */
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Deixa a imagem redonda */
    object-fit: cover;
    border: 3px solid #00c853; /* Borda verde */
    margin-bottom: 10px; /* Espaço entre a imagem e o texto do autor */
}

.author-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
}

.author-role {
    font-size: 0.9em;
    color: #999;
}

/* --- Estilos para o Rodapé (Nova Estrutura) --- */

.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
}

/* --- Topo do Rodapé --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-company {
    flex: 1;
    min-width: 300px;
}

.footer-company h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-company p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    background-color: #333;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #555;
}

.footer-links,
.footer-legal {
    flex: 0.8;
    min-width: 150px;
}

.footer-links h3,
.footer-legal h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 8px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: #ccc;
}

/* --- Bottom do Rodapé --- */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom-section {
    flex: 1;
    min-width: 280px;
}

.footer-bottom-section .bottom-title {
    font-size: 1em;
    color: #70fa8b; /* Cor verde dos títulos */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-bottom-section p {
    font-size: 0.85em;
    line-height: 1.7;
}

.footer-bottom-section strong {
    font-weight: bold;
}

/* --- Media Query para telas menores --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-company {
        width: 100%;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-links,
    .footer-legal {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-bottom-section {
        width: 100%;
        margin-bottom: 20px;
        text-align: left; /* Ou center, dependendo do desejado */
    }
}
	.footer-line {
    background-color: #0a0a0a;
		color: #888;
		text-align: center;
		padding: 15px 20px;
		font-size: 0.8em;
}
/* Estilos para a seção 'Criar Loja Virtual' */
.criar-loja-section {
    padding-top: 60px; /* Adiciona espaço no topo para evitar sobreposição */
    padding-bottom: 60px;
    background-color: #f4f7f6;
}

.criar-loja-section .header-guia {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.criar-loja-section .header-guia h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 700;
}

.criar-loja-section .header-guia p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

/* Layout dos cards */
#guia-ecommerce-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Estilo dos cards */
#guia-ecommerce-cards .card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

#guia-ecommerce-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Estilo da numeração */
#guia-ecommerce-cards .card-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

#guia-ecommerce-cards .icon {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 15px;
}

#guia-ecommerce-cards .card h3 {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-top: 0;
    font-weight: 700;
}

#guia-ecommerce-cards .card p {
    font-size: 1em;
    color: #666;
    flex-grow: 1; 
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    #guia-ecommerce-cards {
        grid-template-columns: 1fr;
    }
}