/*
Theme Name: Club 4 Travel
Theme URI: https://club4travel.com
Author: Club 4 Travel Team
Author URI: https://club4travel.com
Description: Tema minimalista para Club 4 Travel API
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: club4travel
*/

/* Cores da marca */
:root {
    --club-gold: #C5A572;
    --club-gold-light: #D4B896;
    --club-gold-dark: #B08D5A;
    --club-gray: #323E48;
    --club-gray-light: #4A5A68;
    --club-gray-dark: #1A2530;
}

/* Reset básico */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Container básico */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navegação */
nav {
    background-color: var(--club-gray-dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--club-gold);
}

/* Botões */
.btn, button {
    display: inline-block;
    background-color: var(--club-gold);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn:hover, button:hover {
    background-color: var(--club-gold-dark);
    transform: translateY(-1px);
}

/* Formulários */
input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--club-gold);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Mensagens */
.message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Loading */
.loading {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

/* Utilitários */
.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.hidden { display: none !important; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
.p-4 { padding: 1rem; }

/* Responsividade básica */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    nav {
        padding: 0.5rem 0;
    }
    
    table {
        font-size: 0.875rem;
    }
} 