<?php
/*
 * ARQUIVO 1: style.css
 * Colocar em: /wp-content/themes/twentytwentyfour-child/style.css
 */
?>

/*
Theme Name: Twenty Twenty Four Child - WeeklyCross
Description: Child theme of Twenty Twenty Four customized for WeeklyCross with extracted Hub Template styles
Template: twentytwentyfour
Version: 1.0.0
Author: WeeklyCross Team
*/

/* Import parent theme styles */
@import url("../twentytwentyfour/style.css");

/* ==========================================================================
   EXTRACTED STYLES FROM HUB TEMPLATE PLUGIN
   ========================================================================== */

/* Hub Container */
.wc-hub-container {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.wc-hub-container * {
    box-sizing: border-box;
}

/* Header */
.wc-hub-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.wc-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.wc-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.wc-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
}

.wc-main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.wc-nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.wc-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Banner Principal */
.wc-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin: 0;
}

.wc-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wc-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wc-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wc-hero-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wc-hero-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wc-hero-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Theme Navigation */
.wc-theme-intro {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.wc-theme-intro-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.wc-theme-intro-header {
    text-align: center;
    margin-bottom: 50px;
}

.wc-theme-intro-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wc-theme-intro-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.wc-theme-chapters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.wc-chapter-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.wc-chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.wc-chapter-card.current {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
}

.wc-chapter-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.wc-chapter-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.wc-chapter-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.wc-current-badge {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.wc-coming-soon {
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Breadcrumb */
.wc-breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
}

.wc-breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.wc-breadcrumb a {
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.wc-breadcrumb a:hover {
    color: #5a6fd8;
}

/* Content Area */
.wc-content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.wc-shortcode-section {
    margin: 40px 0;
    position: relative;
}

.wc-banner-image {
    text-align: center;
    margin: 40px 0;
}

.wc-banner-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer */
.wc-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 60px;
}

.wc-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.wc-footer-section h4 {
    color: #ecf0f1;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-footer-section h4 i {
    color: #3498db;
    font-size: 1.3rem;
}

.wc-footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.wc-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.wc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wc-social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.wc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-footer-links li {
    margin-bottom: 15px;
}

.wc-footer-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.wc-footer-link:hover {
    color: #3498db;
    transform: translateX(8px);
}

.wc-footer-link i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.wc-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.wc-footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wc-footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

.wc-footer-copyright strong {
    color: #ecf0f1;
}

.wc-footer-version {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #95a5a6;
}

.wc-version-badge {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wc-hero-title {
        font-size: 2.5rem;
    }
    
    .wc-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .wc-hero-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .wc-main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .wc-nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .wc-theme-chapters {
        grid-template-columns: 1fr;
    }
    
    .wc-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
    }
    
    .wc-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .wc-footer-social {
        justify-content: center;
    }
}

/* WordPress Core Overrides */
.wp-block-post-content {
    max-width: none !important;
}

.wp-site-blocks {
    padding: 0 !important;
}

body {
    margin: 0 !important;
}