:root {
    --orion-dark: #0c0b09;
    --orion-gold: #d4a574;
    --orion-gold-light: #e5c39e;
    --orion-gold-dark: #b88652;
    --orion-card-bg: #14120e;
    --orion-border: rgba(212, 165, 116, 0.25);
    --orion-text-dark: #0c0b09;
    --orion-text-light: #f8f9fa;
    --orion-text-muted: #a0988e;
    --orion-bg-light: #fbf9f6;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--orion-bg-light);
    color: #2b2b2b;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Tamanho mínimo de fonte: 16px */
small, .small, .text-muted {
    font-size: 16px !important;
}

/* Glassmorphism & Header */
.navbar-orion {
    background: rgba(12, 11, 9, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--orion-border);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-orion .navbar-brand img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-orion .nav-link {
    color: #e2d9cf !important;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.navbar-orion .nav-link:hover,
.navbar-orion .nav-link.active {
    color: var(--orion-gold) !important;
}

/* Botões Personalizados */
.btn-orion-gold {
    background: linear-gradient(135deg, var(--orion-gold) 0%, var(--orion-gold-dark) 100%);
    color: #0c0b09 !important;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.25);
    transition: all 0.3s ease;
}

.btn-orion-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, var(--orion-gold-light) 0%, var(--orion-gold) 100%);
}

.btn-orion-outline {
    background: transparent;
    color: var(--orion-gold) !important;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--orion-border);
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

.btn-orion-outline:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--orion-gold);
    color: var(--orion-gold-light) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: radial-gradient(circle at 50% 20%, #1e1b15 0%, #0c0b09 100%);
    color: var(--orion-text-light);
    padding: 100px 0 90px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.badge-orion {
    background: rgba(212, 165, 116, 0.12);
    color: var(--orion-gold);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Cards de Salas e Pacotes */
.card-orion {
    background: #ffffff;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.card-orion:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(12, 11, 9, 0.08);
    border-color: var(--orion-gold);
}

.card-orion-dark {
    background: var(--orion-card-bg);
    border: 1px solid var(--orion-border);
    color: #c4bcae !important;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-orion-dark p,
.card-orion-dark span,
.card-orion-dark li,
.card-orion-dark small {
    color: #c4bcae;
}

.card-orion-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--orion-gold);
}

/* Badges e Destaques */
.icon-box-gold {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 165, 116, 0.12);
    color: var(--orion-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Seção de Pacotes/Preços alinhada */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--orion-gold) !important;
    background: linear-gradient(180deg, #181510 0%, #0c0b09 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--orion-gold);
    color: #0c0b09;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Accordion FAQ */
.accordion-orion .accordion-item {
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #ffffff;
}

.accordion-orion .accordion-button {
    font-weight: 600;
    color: var(--orion-dark);
    background: #ffffff;
    padding: 1.25rem 1.5rem;
}

.accordion-orion .accordion-button:not(.collapsed) {
    color: var(--orion-gold-dark);
    background: rgba(212, 165, 116, 0.05);
    box-shadow: none;
}

/* Rodapé */
.footer-orion {
    background: #060504;
    color: #c4bcae;
    border-top: 1px solid var(--orion-border);
    padding: 70px 0 30px;
}

.footer-orion h5 {
    color: var(--orion-gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-orion a {
    color: #c4bcae;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-orion a:hover {
    color: var(--orion-gold);
}

.footer-orion p,
.footer-orion span,
.footer-orion small,
.footer-orion li {
    color: #c4bcae;
}


/* WhatsApp Flutuante */
.btn-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.btn-whatsapp-float:hover,
.btn-whatsapp-float:focus,
.btn-whatsapp-float:active {
    text-decoration: none !important;
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}