/* ==================== PASTOREAR - IDENTIDADE VISUAL AMARELA ==================== */

:root {
    /* Cores principais - Amarelo Escuro e Laranja */
    --primary-color: #ffb300;
    --primary-dark: #ff8c00;
    --primary-light: #ffc947;
    --secondary-color: #f35e00;
    --accent-color: #ff6b00;
    
    /* Cores de apoio */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Backgrounds */
    --light-bg: #fffef7;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.95);
    
    /* Textos */
    --text-color: #2c2c2c;
    --text-muted: #6b6b6b;
    --text-light: #f8f9fa;
    
    /* Bordas e sombras */
    --border-color: #f5f5dc;
    --shadow: 0 10px 25px rgba(255, 179, 0, 0.15);
    --shadow-lg: 0 20px 50px rgba(255, 179, 0, 0.2);
    --shadow-hover: 0 15px 35px rgba(255, 179, 0, 0.25);
    
    /* Gradientes - Amarelo com Laranja */
    --gradient-primary: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    --gradient-light: linear-gradient(135deg, #ffc947 0%, #ffb300 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 179, 0, 0.9) 0%, rgba(255, 140, 0, 0.9) 100%);
}

/* ==================== ESTILOS GLOBAIS ==================== */

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==================== BOTÕES ==================== */

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    will-change: transform;
}

.btn-primary:hover {
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.2);
    background: linear-gradient(135deg, #ffb300 0%, #e67e00 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 24px;
    transition: all 0.15s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.2);
}

/* ==================== CARDS E CONTAINERS ==================== */

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.1);
    backdrop-filter: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.card:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.15);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    margin-bottom: 0;
    transition: none;
}

/* ===== CARD BODY - MELHOR ESPAÇAMENTO ===== */
.card-body {
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
}

/* ===== ESPAÇAMENTO ENTRE HEADER E BODY ===== */
.card .card-header + .card-body {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 179, 0, 0.1);
}

/* ===== CARD FOOTER ===== */
.card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 179, 0, 0.1);
    background: rgba(255, 179, 0, 0.02);
}

/* ==================== NAVBAR ==================== */

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 800;
    transition: transform 0.15s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ==================== FORMULÁRIOS ==================== */

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    background: white;
}

/* ==================== ALERTS ==================== */

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning-color);
    color: var(--warning-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-primary {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-dark);
}

/* ==================== BACKGROUNDS ANIMADOS ==================== */

.bg-animated {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.bg-animated::before {
    display: none;
}

/* ==================== ELEMENTOS FLUTUANTES ==================== */

.floating-elements {
    display: none;
}

/* ==================== RESPONSIVIDADE ==================== */

@media (max-width: 768px) {
    .card {
        margin: 10px;
        border-radius: 12px;
        transition: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn-primary,
    .btn-outline-primary {
        width: 100%;
        margin-bottom: 10px;
        transition: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* ==================== UTILITÁRIOS ==================== */

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background: var(--gradient-primary) !important;
    color: white;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow) !important;
}

.shadow-hover-custom {
    transition: all 0.3s ease;
}

.shadow-hover-custom:hover {
    box-shadow: var(--shadow-hover) !important;
    transform: translateY(-3px);
} 