/**
 * CidadeTur BR - Estilos Base
 * Reset, variáveis CSS e estrutura global
 */

/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */

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

html {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

:root {
    /* Cores principais */
    --primary-blue: #326698;
    --dark-blue: #1E3A5F;
    --light-blue: #9db4cd;
    --gray-bg: #B8B8B8;
    --red-accent: #E53935;
    --yellow-accent: #fde55d;
    --white: #FFFFFF;
    --text-light: #CCCCCC;
    --text-yellow: #fde55d;

    /* Cores para o Index 2 */
    --light-green: #aad4aa;
    
    /* Tamanhos */
    --sidebar-width: 430px;
    --sidebar-collapsed: 0px;
    --sidebar-background: #e4e4e4;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--gray-bg);
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */

.container {
    display: flex;
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: visible;
    /* O container precisa ter altura suficiente para o scroll funcionar */
}
