/*
Theme Name: Blog do Gato Theme
Author: Antigravity AI
Description: Tema sob medida focado em velocidade e design minimalista (creme). Layout nativo focado no Blog do Gato.
Version: 1.0
*/

body {
    background-color: #f8f5f0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2c2926;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.gato-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Navbar */
.header-nav {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #1a1918;
    white-space: nowrap;
}
.header-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.header-links a {
    text-decoration: none;
    color: #2c2926;
    font-weight: 600;
    font-size: 0.95rem;
}
.header-links a:hover {
    color: #000000;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 1rem;
    }
    .header-links {
        justify-content: center;
    }
}

/* Hero Section */
.gato-hero {
    text-align: center;
    padding: 5rem 1rem;
    border-bottom: 2px solid #e5dfd5;
}
.gato-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1918;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.gato-hero p.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 0;
}
.gato-hero p.small-detail {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Base Sections */
.gato-section {
    padding: 4rem 0;
    border-bottom: 2px solid #e5dfd5;
}
.gato-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.gato-text-box {
    font-size: 1.2rem;
    max-width: 700px;
}

/* Cards Grid */
.gato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.gato-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5dfd5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}
.gato-card:hover {
    transform: translateY(-5px);
}
.gato-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.gato-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
.gato-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* Buttons */
.gato-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c2926;
    color: #f8f5f0 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.gato-btn:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Post Normal */
.post-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-size: 1.2rem;
}
.post-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin: 3rem 0 2rem 0;
    color: #1a1918;
    line-height: 1.1;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
