/* Seção John's Club */
.johns-club-section {
    margin-top: 200px;
    position: relative;
    width: 100%;
    height: auto;
    background: #b86b3a; /* Cor de fundo do print */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.johns-club-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.johns-club-texto {
    position: absolute;
    left: 8%;
    z-index: 2;
}

.johns-club-texto h2 {
    font-size: 50px;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.johns-club-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(184, 106, 58, 0.808);
    z-index: 1;
}

.johns-club-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 0;
}

/* Seção Porque devo assinar o John's Club */
.johns-club-benefits {
    width: 100%;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    background: #fff;
}

.johns-club-benefits .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

/* Estilização do lado esquerdo */
.left-content {
    width: 40%;
}

.left-content h2 {
    font-size: 42px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #000;
    line-height: 1.2;
}

.left-content h2 span {
    background: #b86b3a;
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
    margin-top: 5px;
}

/* Estilização do lado direito */
.right-content {
    width: 55%;
    text-align: left;
}

.right-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.right-content p em {
    font-style: italic;
    font-weight: bold;
}

/* Botão de call-to-action */
.cta-button {
    background: #000;
    color: #fff;
    font-size: 21px;
    padding: 10px 18px;
    display: inline-block;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.3s;
    margin-bottom: 30px;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

/* Seção Hero John's Club */
.johns-club-hero {
    width: 100%;
    height: 400px; /* Ajuste conforme necessário */
    background: url('../media/homem-terno.webp') no-repeat center;
    background-size: fill;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Efeito de overlay */
.johns-club-hero .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Leve escurecimento para realce do texto */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilização do texto */
.johns-club-hero .content h1 {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    font-family: 'Playfair Display', serif;
    text-align: center;
    text-transform: uppercase;
}

/* Estilização da palavra CLUB */
.johns-club-hero .content h1 span {
    color: #b86b3a;
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

/* Seção Benefícios John's Club */
.beneficios-club {
    width: 100%;
    padding: 60px 10%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.beneficios-club .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

/* Título estilizado */
.beneficios-club .title {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #1a1a1a;
    text-transform: uppercase;
}

.beneficios-club .title h2 {
    font-size: 40px;
    margin-bottom: 13px;
}

.beneficios-club .title h3 {
    font-size: 36px;
    background: #b86b3a;
    padding: 5px 10px;
    color: #1a1a1a;
    display: inline-block;
    margin-top: -10px;
}

/* Lista de benefícios */
.benefits-list {
    flex: 1;
    margin-left: 50px;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* Seção Planos */
.planos-clube {
    width: 100%;
    padding: 80px 10%;
    background: #ffffff;
    text-align: center;
}

/* Título */
.planos-clube h2 {
    font-size: 38px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* Container dos planos */
.planos-clube .container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Card do plano */
.plano {
    background: #0d0d0d;
    color: white;
    padding: 40px;
    border-radius: 8px;
    width: 300px;
    height: 600px;
    max-height: 600px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    border: 2px solid #b86b3a;
}

.plano:hover {
    transform: scale(1.05);
}

/* Título do plano */
.plano h3 {
    font-size: 24px;
    font-weight: bold;
    color: #b86b3a;
    text-transform: uppercase;
}

/* Preço */
.plano .preco {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 15px 0;
}

.plano .preco span {
    font-size: 40px;
    color: #b86b3a;
}

/* Lista de benefícios */
.plano ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.plano ul li {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

/* Botão */
.plano a {
    background-color: #b86b3a;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.plano a:hover {
    background-color: #8d4f29;
}

/* Seção FAQ */
.faq {
    width: 100%;
    padding: 80px 10%;
    background: #ffffff;
    text-align: center;
}

/* Título */
.faq h2 {
    font-size: 38px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* Container das perguntas */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Pergunta */
.faq-item {
    border-bottom: 1px solid #b86b3a;
    padding: 15px 0;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: 0.3s;
}


/* Título da pergunta */
.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Resposta (Oculta por padrão) */
.faq-answer {
    font-size: 16px;
    color: #444;
    padding: 10px;
    display: none;
}

/* Ícone de seta */
.faq-question::after {
    content: ">";
    font-size: 18px;
    font-weight: bold;
    color: #b86b3a;
    transition: transform 0.3s ease-in-out;
}

/* Quando ativa, seta gira */
.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

/* Quando ativa, resposta aparece */
.faq-item.active .faq-answer {
    display: block;
}


/* Hover apenas no Desktop */
@media (min-width: 768px) {
    .faq-item:hover {
        background: rgba(184, 107, 58, 0.1);
    }
    
    .faq-item:hover .faq-answer {
        display: block;
    }

    .faq-item:hover .faq-question::after {
        transform: rotate(90deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .johns-club-texto h2 {
        font-size: 36px;
    }

    .johns-club-texto {
        left: 5%;
    }
    
    .johns-club-benefits .container {
        flex-direction: column;
        text-align: center;
    }

    .left-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .right-content {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .johns-club-hero {
        height: 300px;
    }

    .johns-club-hero .content h1 {
        font-size: 40px;
    }

    .johns-club-hero .content h1 span {
        font-size: 16px;
    }

    .beneficios-club .container {
        flex-direction: column;
        text-align: center;
    }

    .beneficios-club .title h2 {
        font-size: 32px;
    }

    .beneficios-club .title h3 {
        font-size: 28px;
    }

    .benefits-list {
        margin-left: 0;
        margin-top: 20px;
    }

    .planos-clube .container {
        flex-direction: column;
        align-items: center;
    }

    .plano {
        width: 100%;
        max-width: 350px;
    }
}
