/*
Theme Name: Globo Famosos Online
Description: Tema baseado no site Hora da Fama para Globo Famosos Online
Version: 1.0
Author: Manus AI
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #8B4A9C 0%, #E91E63 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: rgba(0,0,0,0.2);
    padding: 10px 0;
}

.header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sbt-logo {
    height: 40px;
}

.live-btn {
    background: #ff0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s ease;
}

.live-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    height: 60px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon,
.search-icon {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover,
.search-icon:hover {
    color: #FFD700;
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Section Titles */
.section-title {
    color: #E91E63;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #E91E63;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #8B4A9C;
}

/* Featured Posts */
.featured-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.featured-post.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-post.large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-post.medium {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-post.medium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E91E63;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.category {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category.beleza {
    background: #4CAF50;
    color: white;
}

.category.famosos {
    background: #9C27B0;
    color: white;
}

.category.moda {
    background: #FF9800;
    color: white;
}

.category.saude {
    background: #2196F3;
    color: white;
}

.category.noticias {
    background: #F44336;
    color: white;
}

.category.cultura {
    background: #795548;
    color: white;
}

.date {
    color: #666;
    font-size: 12px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.post-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63, #8B4A9C);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Category Sections */
.category-section {
    margin-bottom: 40px;
}

.category-posts {
    display: grid;
    gap: 20px;
}

.category-post {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-post.large {
    grid-template-columns: 1fr;
}

.category-post.large .post-image img {
    height: 300px;
}

.category-post .post-image img {
    height: 150px;
}

/* Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ad-banner {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.ad-banner img {
    width: 100%;
    height: auto;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.widget-title {
    color: #E91E63;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E91E63;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateX(5px);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #E4405F, #833AB4);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn i {
    font-size: 16px;
}

.social-btn .count {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post .post-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post .post-number {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 5px;
    right: 5px;
}

.recent-post .post-title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.recent-post .post-meta {
    gap: 10px;
}

.recent-post .category {
    font-size: 9px;
    padding: 2px 8px;
}

.recent-post .date {
    font-size: 10px;
}

/* Footer */
.footer {
    background: #2D1B3D;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-schedule {
    font-weight: bold;
    color: #E91E63;
}

.footer-title {
    color: #E91E63;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-post {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
}

.footer-post img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}

.footer-post h4 {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.footer-post .date {
    font-size: 10px;
    color: #999;
}

.footer-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
    font-size: 13px;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #E91E63;
}

.category-link span {
    background: #E91E63;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    color: #ccc;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #E91E63;
    transform: scale(1.2);
}

.copyright {
    font-size: 12px;
    color: #999;
}

/* Newsletter Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #E91E63;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-form button {
    background: linear-gradient(135deg, #E91E63, #8B4A9C);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.privacy-note {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.privacy-note a {
    color: #E91E63;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-posts {
        grid-template-columns: 1fr;
    }
    
    .featured-post.large {
        grid-template-columns: 1fr;
    }
    
    .category-post {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .post-title {
        font-size: 16px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

