/* style.css */
:root {
    --primary-color: #3A5A40; /* Calming green */
    --secondary-color: #A3B18A; /* Lighter green */
    --accent-color: #DAD7CD; /* Neutral beige */
    --text-color: #343a40; /* Dark grey for text */
    --light-text: #f8f9fa; /* Light text for dark backgrounds */
    --cta-color: #588157; /* Slightly brighter green for CTAs */
    --cta-hover-color: #3A5A40; /* Darker green for CTA hover */
    --font-family: 'Raleway', sans-serif; /* Updated to Raleway */
    --heading-font: 'Playfair Display', serif; /* Updated to Playfair Display */
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fdfdfd; /* Very light off-white */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.6em; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.1); /* 90% transparent */
    box-shadow: none;
    padding: 1rem 0;
    position: fixed; /* Fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--light-text);
    font-family: var(--heading-font);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--light-text);
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

nav ul li a:hover,
nav ul li a.active { /* Add 'active' class with JS later */
    color: var(--light-text);
    border-bottom: 2px solid var(--light-text);
}

/* Call to Action Buttons */
.cta-button, .cta-button-main, .cta-button-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.cta-button { /* Header CTA */
    background-color: var(--cta-color);
    color: var(--light-text);
    margin-left: 1.5rem;
}

.cta-button-main { /* Main section CTAs */
    background-color: var(--cta-color);
    color: var(--light-text);
    font-size: 1.1em;
    padding: 1rem 2rem;
}

.cta-button-secondary { /* Secondary CTAs */
    background-color: transparent;
    color: var(--cta-color);
    border: 2px solid var(--cta-color);
}

/* Special styling for the test button in hero section */
#hero .cta-button-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: bold;
    text-shadow: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#hero .cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--light-text);
}

.cta-button:hover, .cta-button-main:hover {
    background-color: var(--cta-hover-color);
    transform: translateY(-2px);
}

.cta-button-secondary:hover {
    background-color: var(--cta-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

/* Sections */
main {
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--accent-color);
}

section:first-of-type {
    padding-top: 0; /* Remove padding from first section (hero) */
}

#sobre, #servicos, #cursos, #blog-preview, #contato, #agendar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh; /* 100% of viewport height */
    min-height: 100vh; /* Ensure full viewport height */
    width: 100%; /* 100% width */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('images/20250326_2309_Interconnected Harmony_simple_compose_01jqans9q0e0cr1sf7x5aeqg7s.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    margin: 0; /* Remove margin */
    color: var(--light-text);
    padding: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    border-radius: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

#hero h1 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 3.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p {
    font-size: 1.4em;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#hero .cta-button-main {
    font-size: 1.2em;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Sobre Section */
#sobre .sobre-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#sobre .profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 35%; /* Adjust vertical position */
    border: 5px solid var(--secondary-color);
}

/* Serviços Section */
#servicos .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servico-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.servico-item h3 {
    margin-bottom: 1rem;
}

.servico-item p {
    margin-bottom: 1.5rem;
}

/* Cursos Section */
#cursos {
    background-color: var(--secondary-color); /* Light green background */
    color: var(--text-color);
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
}

#cursos h2 {
    color: var(--primary-color);
}

#cursos p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.curso-item-placeholder {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem auto;
    max-width: 500px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.curso-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.curso-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.curso-text {
    flex: 1;
}

.curso-item-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.curso-item-placeholder button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    margin-top: 1rem;
}

/* Blog Preview */
#blog-preview {
    text-align: center;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-preview-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.blog-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.blog-preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-preview-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4em;
}

.blog-preview-item p {
    margin-bottom: 1.5rem;
}

/* Contato & Agendar */
#contato, #agendar {
    text-align: center;
}

#contato p, #agendar p {
    font-size: 1.1em;
    margin-bottom: 1.5rem;
}

#agendar .cta-button-main {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9em;
}

/* Blog Page Specific Styles */
#blog-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/20250326_2309_Interconnected Harmony_simple_compose_01jqans9q0e0cr1sf7x5aeqg7s.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light-text);
    margin-top: 0px; /* Space for fixed header */
}

.blog-hero-content {
    max-width: 800px;
    padding: 2rem;
}

#blog-hero h1 {
    color: var(--light-text);
    font-size: 3em;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#blog-hero p {
    font-size: 1.2em;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 2rem;
}

.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.blog-main {
    flex: 1;
}

/* Search Box */
.search-box {
    display: flex;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    outline: none;
    font-family: var(--font-family);
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: var(--cta-hover-color);
}

/* Categories & Recent Posts */
.categories, .recent-posts {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.categories h3, .recent-posts h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.categories ul, .recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories ul li, .recent-posts ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.categories ul li:last-child, .recent-posts ul li:last-child {
    border-bottom: none;
}

.categories ul li a, .recent-posts ul li a {
    display: block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.categories ul li a:hover, .recent-posts ul li a:hover {
    transform: translateX(5px);
    color: var(--cta-color);
}

/* Blog Cards */
.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
}

.blog-card-content {
    padding: 1.5rem 2rem 2rem;
}

.post-meta {
    font-size: 0.9em;
    color: #6c757d;
    margin-bottom: 0.8rem;
}

.blog-card-content h2 {
    font-size: 1.6em;
    margin: 0.5rem 0 1rem;
    text-align: left;
}

.blog-card-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--cta-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--cta-hover-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 0.3rem;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
}

.pagination a.next {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 20px;
}

.pagination a:hover:not(.active) {
    background-color: var(--secondary-color);
    color: white;
}

/* Newsletter Section */
#newsletter {
    background-color: var(--accent-color);
    padding: 4rem 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.newsletter-container h2 {
    margin-bottom: 1rem;
}

.newsletter-container p {
    margin-bottom: 2rem;
    font-size: 1.1em;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
    font-family: var(--font-family);
}

.newsletter-form button {
    border-radius: 0 25px 25px 0;
    padding: 1rem 1.5rem;
}

/* Enhanced Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.footer-logo h3 {
    color: var(--light-text);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5em;
}

.footer-logo p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-links, .footer-contact {
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--light-text);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--light-text);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9em;
}

.footer-bottom p {
    margin: 0.3rem 0;
}

.footer-bottom i {
    color: #e25555;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    #blog-container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        width: 100%;
        order: 2;
    }
    
    .blog-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
        display: none; /* Hide by default on mobile */
    }

    nav ul.active {
        display: flex; /* Show when active class is added */
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }

    nav .cta-button {
        margin-top: 1rem;
        margin-left: 0;
        width: 100%;
        box-sizing: border-box;
        display: none; /* Hide by default on mobile */
    }

    nav .cta-button.active {
        display: block; /* Show when active class is added */
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 1rem;
    }

    #blog-hero {
        height: 30vh;
        min-height: 250px;
    }

    .blog-card-image {
        height: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 25px;
        margin-bottom: 1rem;
    }

    .newsletter-form button {
        border-radius: 25px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Blog Post Page Styles */
.post-content {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 2rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header .post-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 1rem;
}

.post-header h1 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta {
    color: #6c757d;
    font-size: 0.9em;
}

.post-meta span {
    margin: 0 0.5rem;
}

.post-featured-image {
    margin: 2rem -2rem;
    height: 400px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body {
    font-size: 1.1em;
    line-height: 1.8;
}

.post-body h2 {
    font-size: 1.8em;
    margin: 2rem 0 1rem;
    text-align: left;
}

.post-body h3 {
    font-size: 1.4em;
    margin: 1.5rem 0 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body ul, .post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body strong {
    color: var(--primary-color);
}

.post-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
}

.post-comments h3 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .post-content {
        padding: 1rem;
    }

    .post-featured-image {
        margin: 1.5rem -1rem;
        height: 300px;
    }

    .post-header h1 {
        font-size: 2em;
    }

    .post-body {
        font-size: 1em;
    }
}

/* --- Styling for New Sections --- */

/* Como Posso Ajudar Section */
#como-ajudar {
    padding: 4rem 2rem;
    text-align: center;
}

#como-ajudar h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.ajuda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ajuda-item {
    background-color: #fff; /* White background for contrast */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ajuda-item:hover {
    transform: translateY(-5px);
}

.ajuda-item i {
    font-size: 2.5rem; /* Adjust icon size */
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ajuda-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Depoimentos Section */
#depoimentos {
  background: #f7f8fa;
  padding: 60px 0 40px 0;
}
#depoimentos .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
#depoimentos h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #333;
}
#depoimentos p {
  text-align: center;
  color: #666;
}
.depoimento-slider.redesigned {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}
.depoimento-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 28px 22px 20px 22px;
  max-width: 320px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}
.depoimento-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.depoimento-text {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.6;
}
.depoimento-author {
  font-size: 1rem;
  color: #1a6a7b;
  text-align: right;
  font-weight: bold;
}
@media (max-width: 900px) {
  .depoimento-slider.redesigned {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .depoimento-item {
    max-width: 95vw;
    min-width: 0;
  }
}

/* Processo Section */
#processo {
    padding: 4rem 2rem;
    text-align: center;
}

#processo h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.processo-item {
    position: relative;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.processo-item span {
    position: absolute;
    top: -1.5rem; /* Position number above */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.processo-item h3 {
    margin-top: 1rem; /* Space below number */
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Ebook CTA Section */
#ebook-cta {
    background-color: var(--secondary-color);
    color: var(--text-color-dark-bg, #fff); /* Use specific variable or fallback */
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 800px; /* Limit width */
}

#ebook-cta h2 {
    color: var(--primary-color); /* Or keep white if preferred */
    margin-bottom: 1rem;
}

#ebook-cta p {
    margin-bottom: 1.5rem;
}

#ebook-cta form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

#ebook-cta input[type="email"] {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 20px;
    min-width: 250px;
    flex-grow: 1;
}

#ebook-cta button {
    /* Use cta-button-main styles if defined, or define here */
    padding: 0.8rem 1.5rem; /* Match input padding */
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#ebook-cta button:hover {
    background-color: darken(var(--primary-color), 10%);
}

#ebook-cta small {
    font-size: 0.8rem;
}

/* FAQ Section */
#faq {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

#faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    cursor: pointer; /* Indicate interactivity for JS accordion */
}

.faq-item p { /* Style for answer, hidden by default with JS */
    /* display: none; */
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid #eee;
}

/* Contato Final Section */
#contato-final {
    padding: 4rem 2rem;
    background-color: var(--light-accent-color);
    text-align: center;
}

#contato-final h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

#contato-final form {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

#contato-final form input[type="text"],
#contato-final form input[type="email"],
#contato-final form textarea {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

#contato-final form textarea {
    resize: vertical;
    min-height: 100px;
}

#contato-final form label {
    display: flex; /* Align checkbox and text */
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

#contato-final form input[type="checkbox"] {
    margin-right: 0.5rem;
}

#contato-final form button {
    /* Use cta-button-main styles */
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#contato-final form button:hover {
    background-color: darken(var(--primary-color), 10%);
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Updated Footer */
footer {
    background-color: var(--dark-background, #333); /* Use variable or fallback */
    color: var(--footer-text-color, #ccc); /* Use variable or fallback */
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Space between footer elements */
}

.footer-info,
.footer-links {
    margin-bottom: 0.5rem;
}

.footer-info p {
    margin: 0.2rem 0;
}

.footer-links a {
    color: var(--footer-link-color, #fff); /* Use variable or fallback */
    text-decoration: none;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

footer p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

/* --- End of Styling for New Sections --- */