/* Configuração Geral - Open Sans */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Variáveis e Utilitários de Cores */
:root {
    --blue: #0D088F;
    --red: #FF0000;
}

.color-blue { color: var(--blue); }
.text-red { color: var(--red); }
.bg-blue { background-color: var(--blue); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* Navbar */
.navbar {
    padding: 25px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--blue) !important;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
}

/* Botões */
.btn-red {
    background-color: var(--red);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
}

.btn-red:hover {
    background-color: white;
    color: var(--red);
}

.btn-outline-blue {
    border: 2px solid var(--blue);
    color: var(--blue);
    font-weight: 700;
    border-radius: 0;
}

.btn-outline-blue:hover {
    background-color: var(--blue);
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(13, 8, 143, 0.7), transparent);
    display: flex;
    align-items: center;
    z-index: -1;
}

/* Elementos Visuais */
.underline-red {
    width: 60px;
    height: 4px;
    background-color: var(--red);
    margin-top: 15px;
}

/* Cards Destinos */
.card-destination {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-zoom {
    overflow: hidden;
    height: 400px;
}

.img-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card-destination:hover img {
    transform: scale(1.1);
}

/* Planos */
.plan-card {
    background: white;
    border: 1px solid #eee;
    transition: 0.4s;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
}

.plan-card h3 { font-size: 3.5rem; }

/* Flipbook */
#flipbook {
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.page { background-size: cover; }

/* Badge de Estado sobre a imagem */
.badge-estado {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--red);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
}

.card-info small {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.3s;
}

.card-info:hover small {
    letter-spacing: 2px;
}