/* Variáveis de Cores e Fontes */
:root {
    --bg-color: #E6E8E6;
    --text-dark: #2d2d2d;
    --text-light: #5a5a5a;
    --primary-color: #d8342e; /* Tom de marrom/dourado suave */
    --primary-hover: #bb241e;
    --font-heading: "Roboto Slab", serif;
    --font-body: "Roboto", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Tipografia */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: var(--primary-hover);
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Seção Hero */
.hero {
    text-align: center;
    padding: 100px 5% 80px;
    background-color: #f4f1eb;
}

.hero h1 {
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Seção Sobre / Frustrados */
.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 400px;
    max-height: 500px;
    aspect-ratio: 6 / 4;
    border-radius: 8px;
    overflow: hidden;
}

.profile-pic {
    object-fit: contain;
    border-radius: 8px;
}

/* Jornadas / Módulos */
.jornadas-section {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.jornadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.jornada-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
}

.jornada-img {
    width: 100%;
    height: 150px;
    background-color: #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.jornada-card h3 {
    font-size: 18px;
}

.jornada-card ul {
    list-style: none;
    font-size: 13px;
    color: var(--text-light);
}

.jornada-card ul li {
    margin-bottom: 5px;
}

/* Book Club */
.book-club {
    padding: 80px 5%;
    background-color: #f4f1eb;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    padding: 20px;
}

.feature-item h3 {
    font-size: 18px;
}

/* Planos de Preços */
.pricing-section {
    padding: 80px 5%;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    width: 350px;
    text-align: left;
    position: relative;
}

.pricing-card.destaque {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 24px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-family: var(--font-heading);
    text-align: center;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Autora / Sobre */
.author-section {
    padding: 80px 5%;
    background-color: #f4f1eb;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* FAQ */
.faq-section {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Rodapé */
footer {
    background-color: #2d2d2d;
    color: #fff;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer h2 {
    color: #fff;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    width: 400px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #25d366;
}

/* Responsivo */
@media(max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 28px;
    }
}