/*!************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/global.css ***!
  \************************************************************************************************************************************************************************************************************************************************************/
/* Design System Variáveis */
:root {
    --bg-color: #FDFDF9; /* Warm Ivory */
    --surface-color: #FFFFFF;
    --text-primary: #2C363F; /* Slate Dark */
    --text-secondary: #5D6D7E;
    
    /* Vibe Colors */
    --brand-primary: #7A907C; /* Sage Green */
    --brand-hover: #677b69;
    --accent-peach: #FFA686; /* Peach */
    --accent-yellow: #FFD166; /* Sunny Yellow */
    --accent-blue: #5C8281; /* Muted Teal */

    /* Shapes & Shadows */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-soft: 0 10px 30px rgba(44, 54, 63, 0.05);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-color);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-primary);
}

.search-bar {
    display: flex;
    background: var(--surface-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    width: 200px;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    gap: 4rem;
}

.hero-content {
    flex: 1 1;
}

.hero-tag {
    display: inline-block;
    background-color: #E8EDE9; /* Light Sage */
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image {
    flex: 1 1;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 450px;
}

/* BUTTONS */
.btn-primary {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(122, 144, 124, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    text-decoration: none;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.btn-secondary:hover {
    color: var(--accent-peach);
}

/* MAIN GRID */
.container {
    padding: 4rem 5%;
}

.section-heading {
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 2.5rem;
    gap: 2.5rem;
}

/* EXPERIMENTAL CARD DESIGN */
.card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 54, 63, 0.08);
}

.card-image {
    position: relative;
    height: 240px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag-kitchen { background: var(--accent-peach); color: white; }
.tag-tech { background: var(--accent-blue); color: white; }
.tag-work { background: var(--accent-yellow); color: #8A6D3B; }

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E8EDE9;
    padding-top: 1rem;
}

.read-time {
    font-size: 0.85rem;
    color: #95A5A6;
    font-weight: 500;
}

/* NEWSLETTER */
.newsletter {
    padding: 4rem 5%;
}

.newsletter-box {
    background-color: var(--brand-primary);
    color: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.newsletter-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.newsletter-form input {
    width: 300px;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form .btn-primary {
    background-color: var(--accent-peach); /* Punchy button */
    box-shadow: none;
}

.newsletter-form .btn-primary:hover {
    background-color: #e59579;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 3rem 5%;
    color: var(--text-secondary);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

