/*
Theme Name: Eu Mãe Theme
Description: Tema personalizado para blog de maternidade - Eu Mãe
Version: 1.0
Author: Vitoria Caroline
*/

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.site-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* Navegação */
.main-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Seções de conteúdo */
.content-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Cards de produtos/serviços */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p, .footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Estilos para posts individuais */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.single-post .entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.single-post .entry-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.single-post .entry-meta span {
    margin-right: 1.5rem;
    color: #666;
}

.single-post .entry-meta i {
    margin-right: 0.5rem;
    color: #667eea;
}

.single-post .post-thumbnail {
    margin-bottom: 2rem;
}

.single-post .post-thumbnail img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.single-post .entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin: 2rem 0 1rem;
    color: #333;
}

.single-post .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.single-post .tags-links {
    margin-bottom: 2rem;
}

.single-post .tags-links a {
    display: inline-block;
    background: #f8f9fa;
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.single-post .tags-links a:hover {
    background: #667eea;
    color: white;
}

.single-post .post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.single-post .post-navigation a {
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.single-post .post-navigation a:hover {
    background: #667eea;
    color: white;
}

/* Estilos para páginas */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-content .entry-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.page-content .page-thumbnail {
    margin-bottom: 2rem;
}

.page-content .page-thumbnail img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Estilos para formulário de pesquisa */
.search-form {
    margin: 2rem 0;
}

.search-wrapper {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px 0 0 50px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    border-color: #667eea;
}

.search-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-submit:hover {
    transform: translateY(-2px);
}

/* Estilos para página 404 */
.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-icon {
    font-size: 5rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.error-404 .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.search-suggestions {
    margin: 3rem 0;
    text-align: left;
}

.search-suggestions h3 {
    margin-bottom: 1rem;
    color: #333;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 0.5rem 0;
    color: #666;
}

.search-suggestions li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
}

.recent-posts {
    margin: 3rem 0;
    text-align: left;
}

.recent-posts h3 {
    margin-bottom: 1rem;
    color: #333;
}

.recent-posts ul {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.recent-posts a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: #764ba2;
}

/* Estilos para resultados de pesquisa */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header .page-title {
    font-size: 2.5rem;
    color: #333;
}

.page-header .page-title span {
    color: #667eea;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.no-results p {
    color: #666;
    margin-bottom: 2rem;
}

.search-suggestions,
.search-again {
    margin: 2rem 0;
    text-align: left;
}

.search-again h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Estilos para paginação */
.navigation.pagination {
    margin: 3rem 0;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.nav-links a,
.nav-links span {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-links a:hover,
.nav-links .current {
    background: #667eea;
    color: white;
}

/* Estilos para comentários */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comment-respond {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment-reply-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #667eea;
}

.comment-form .submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.comment-form .submit:hover {
    transform: translateY(-2px);
} 