/*
Theme Name: Terra do Gigante
Theme URI: https://terradogigante.com.br
Author: Agencia TDG
Description: Tema personalizado para a agência de turismo receptivo Terra do Gigante em Joanópolis.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Text Domain: terra-do-gigante
*/

:root {
    --bg-dark: #0f0f0f;
    --card-bg: #181818;
    --accent-yellow: #fabb13;
    --text-white: #ffffff;
    --text-muted: #a1a1aa;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

/* Header & Nav */
header.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}

header .logo a {
    color: var(--text-white);
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent-yellow);
}

/* Grids e Cartões */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.badge {
    background-color: var(--accent-yellow);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-yellow);
    margin-top: 10px;
}

/* Botões */
.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Conteúdo dinâmico da Home */
.home-page-content {
    padding: 40px 0;
}

.home-page-content h1, .home-page-content h2 {
    color: var(--text-white);
}
