/*
Theme Name: Meu Corpo em Harmonia
Theme URI: https://meucorpoemharmonia.com
Author: Meu Corpo em Harmonia
Author URI: https://meucorpoemharmonia.com
Description: Um tema WordPress personalizado para o blog Meu Corpo em Harmonia, focado em fitness, bem-estar e autoconhecimento feminino.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meu-corpo-em-harmonia
Tags: fitness, bem-estar, feminino, saúde, equilíbrio
*/

:root {
    --roxo-profundo: #6C4AB6;
    --rosa-queimado: #C76BAF;
    --branco-gelo: #F7F7F7;
    --cinza-grafite: #3A3A3A;
    --fonte-principal: 'Montserrat', sans-serif;
    --fonte-secundaria: 'Playfair Display', serif;
}

body {
    font-family: var(--fonte-principal);
    background-color: var(--branco-gelo);
    color: var(--cinza-grafite);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-secundaria);
    font-weight: 700;
    color: var(--roxo-profundo);
}

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

a:hover {
    color: var(--rosa-queimado);
}

.btn-primary {
    background-color: var(--roxo-profundo);
    color: var(--branco-gelo);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--rosa-queimado);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(199, 107, 175, 0.3);
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    background-color: var(--branco-gelo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
}

.site-title {
    font-size: 2.5rem;
    margin: 0;
    font-family: var(--fonte-secundaria);
    color: var(--roxo-profundo);
}

.site-description {
    font-size: 1.2rem;
    margin: 5px 0 0;
    font-family: var(--fonte-principal);
    font-style: italic;
    color: var(--rosa-queimado);
}

.main-navigation {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(108, 74, 182, 0.1);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-navigation li {
    margin: 0 15px;
    position: relative;
}

.main-navigation a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 10px 0;
    display: block;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rosa-queimado);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-color: var(--roxo-profundo);
    color: var(--branco-gelo);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 74, 182, 0.9) 0%, rgba(199, 107, 175, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--branco-gelo);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--rosa-queimado);
}

.post-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
    height: 220px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-category {
    display: inline-block;
    background-color: var(--roxo-profundo);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-title {
    font-size: 1.5rem;
    margin: 10px 0;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #999;
}

/* Footer Styles */
.site-footer {
    background-color: var(--cinza-grafite);
    color: var(--branco-gelo);
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget-title {
    color: var(--rosa-queimado);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: var(--branco-gelo);
    opacity: 0.8;
}

.footer-widget a:hover {
    opacity: 1;
    color: var(--rosa-queimado);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: var(--branco-gelo);
    font-size: 1.2rem;
    margin: 0 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--rosa-queimado);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-top: 0;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--roxo-profundo) 0%, var(--rosa-queimado) 100%);
    color: var(--branco-gelo);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--branco-gelo);
}

.newsletter-form {
    display: flex;
    margin-top: 30px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--cinza-grafite);
    color: var(--branco-gelo);
    border: none;
    padding: 0 25px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .site-description {
        font-size: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 5px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        padding: 15px 25px;
    }
}