/* ============================================
   MDV Gharciaz & Ushuaia - Estilo Principal
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

/* Variáveis CSS */
:root {
    --primary-dark: #0a0a1a;
    --primary-medium: #141432;
    --primary-light: #1e1e4a;
    --accent-gold: #c9a84c;
    --accent-gold-light: #e8d48b;
    --accent-purple: #7b2d8e;
    --accent-purple-light: #a855c7;
    --accent-blue: #2d5f8e;
    --accent-blue-light: #4a90d9;
    --text-light: #e8e8f0;
    --text-muted: #a0a0b8;
    --text-white: #ffffff;
    --gradient-mystical: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2a1a3e 100%);
    --gradient-gold: linear-gradient(135deg, #c9a84c, #e8d48b);
    --gradient-card: linear-gradient(145deg, rgba(30,30,74,0.8), rgba(20,20,50,0.9));
    --shadow-glow: 0 0 20px rgba(201, 168, 76, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-subtle: 1px solid rgba(201, 168, 76, 0.2);
    --transition-smooth: all 0.3s ease;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: var(--gradient-mystical);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background animado com partículas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(201,168,76,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(123,45,142,0.2), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(74,144,217,0.2), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(201,168,76,0.15), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(168,85,199,0.2), transparent),
        radial-gradient(1px 1px at 90% 10%, rgba(201,168,76,0.2), transparent);
    pointer-events: none;
    z-index: 0;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold-light);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0.8rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand .brand-symbol {
    font-size: 1.6rem;
    margin-right: 8px;
    color: var(--accent-purple-light);
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: var(--text-light) !important;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-link .bi {
    font-size: 1.1rem;
    margin-right: 0 !important;
    margin-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

.navbar .dropdown-menu {
    background: rgba(10, 10, 26, 0.98) !important;
    border: 1px solid rgba(201, 168, 76, 0.2) !important;
    padding: 0.5rem 0;
}

.navbar .dropdown-divider {
    border-color: rgba(201, 168, 76, 0.2) !important;
}

.navbar .dropdown-item {
    color: #e8e8f0 !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item-header {
    color: #c9a84c !important;
    font-weight: 600;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.navbar .dropdown-item-header:hover,
.navbar .dropdown-item-header:focus {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.navbar-toggler {
    border-color: var(--accent-gold);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 76, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(123,45,142,0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-divider {
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1.5rem auto;
    animation: expandWidth 1s ease 0.5s both;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.6s both;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
.section-padding {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* ============================================
   CARDS
   ============================================ */
.freq-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.freq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.freq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(201, 168, 76, 0.4);
}

.freq-card:hover::before {
    opacity: 1;
}

.freq-card .freq-hz {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.freq-card .freq-name {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple-light);
    margin-bottom: 1rem;
}

.freq-card .freq-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.freq-card .chakra-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Cores dos Chakras */
.chakra-raiz { background: rgba(255,0,0,0.2); color: #ff6666; border: 1px solid rgba(255,0,0,0.3); }
.chakra-sacral { background: rgba(255,140,0,0.2); color: #ffa64d; border: 1px solid rgba(255,140,0,0.3); }
.chakra-plexo { background: rgba(255,255,0,0.2); color: #ffff66; border: 1px solid rgba(255,255,0,0.3); }
.chakra-cardiaco { background: rgba(0,200,0,0.2); color: #66cc66; border: 1px solid rgba(0,200,0,0.3); }
.chakra-laringeo { background: rgba(0,150,255,0.2); color: #66b3ff; border: 1px solid rgba(0,150,255,0.3); }
.chakra-frontal { background: rgba(75,0,130,0.2); color: #9966cc; border: 1px solid rgba(75,0,130,0.3); }
.chakra-coronario { background: rgba(148,0,211,0.2); color: #cc66ff; border: 1px solid rgba(148,0,211,0.3); }
.chakra-sub-raiz { background: rgba(139,69,19,0.2); color: #cd853f; border: 1px solid rgba(139,69,19,0.3); }
.chakra-angelico { background: rgba(255,215,0,0.2); color: #ffd700; border: 1px solid rgba(255,215,0,0.3); }
.chakra-especial { background: rgba(0,206,209,0.2); color: #48d1cc; border: 1px solid rgba(0,206,209,0.3); }

/* ============================================
   CALCULADORA NUMEROLÓGICA
   ============================================ */
.calculator-section {
    background: linear-gradient(145deg, rgba(20,20,50,0.9), rgba(30,20,60,0.9));
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.calculator-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-control-custom {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--text-light);
    padding: 12px 18px;
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background: rgba(10, 10, 26, 0.95);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
    color: var(--text-white);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.btn-mystical {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-mystical:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--primary-dark);
}

.btn-mystical:active {
    transform: translateY(0);
}

.result-card {
    background: rgba(10, 10, 26, 0.7);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    display: none;
}

.result-card.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.result-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
    text-align: center;
}

.result-freq {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-purple-light);
    text-align: center;
    margin-top: 0.5rem;
}

.result-details {
    margin-top: 1.5rem;
}

.result-details h5 {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}

.result-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   PÁGINA DE FREQUÊNCIA INDIVIDUAL
   ============================================ */
.freq-detail-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.freq-detail-header .freq-big {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
    line-height: 1;
}

.freq-detail-header .freq-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-purple-light);
    margin-top: 0.5rem;
}

.benefit-box {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.benefit-box:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: var(--shadow-glow);
}

.benefit-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.benefit-box .icon {
    font-size: 1.5rem;
}

.benefit-box ul {
    list-style: none;
    padding: 0;
}

.benefit-box ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text-light);
}

.benefit-box ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.7rem;
    top: 8px;
}

.critical-note {
    background: rgba(123, 45, 142, 0.1);
    border-left: 3px solid var(--accent-purple);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-top: 1rem;
}

.critical-note p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   BIOGRAFIA
   ============================================ */
.bio-section {
    position: relative;
}

.bio-text {
    font-size: 1.05rem;
    line-height: 2;
    text-align: justify;
}

.bio-highlight {
    background: rgba(201, 168, 76, 0.1);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.bio-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.bio-stat-item {
    text-align: center;
}

.bio-stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.bio-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ============================================
   CONTATO
   ============================================ */
.contact-form {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 3rem;
}

.contact-info-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: var(--shadow-glow);
}

.contact-info-card .icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(5, 5, 15, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    display: block;
    padding: 3px 0;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* ============================================
   TABELA SOLFEGGIO
   ============================================ */
.table-solfeggio {
    background: transparent;
    color: var(--text-light);
}

.table-solfeggio thead th {
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    border-color: rgba(201, 168, 76, 0.2);
    padding: 12px 15px;
    font-size: 0.9rem;
}

.table-solfeggio tbody td {
    border-color: rgba(201, 168, 76, 0.1);
    padding: 12px 15px;
    vertical-align: middle;
}

.table-solfeggio tbody tr:hover {
    background: rgba(201, 168, 76, 0.05);
}

/* ============================================
   PÁGINA EM CONSTRUÇÃO
   ============================================ */
.coming-soon {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 200px; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.2); }
    50% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.5); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .freq-detail-header .freq-big { font-size: 4rem; }
    .bio-stats { gap: 2rem; }
    .calculator-section { padding: 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .section-padding { padding: 50px 0; }
    .freq-detail-header .freq-big { font-size: 3rem; }
    .navbar-brand { font-size: 1.1rem; }
    .bio-stats { gap: 1.5rem; }
    .calculator-section { padding: 1.5rem; }
    .result-number { font-size: 3rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.6rem; }
    .freq-card .freq-hz { font-size: 2rem; }
    .freq-detail-header .freq-big { font-size: 2.5rem; }
    .bio-stat-number { font-size: 2rem; }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--accent-gold);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
    content: "›";
}

/* ============================================
   WAVE ANIMATION (decorativa)
   ============================================ */
.wave-divider {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* ============================================
   ENCOMENDA
   ============================================ */
.order-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.order-feature-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.order-feature-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.order-feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Label form */
.form-label-custom {
    color: var(--accent-gold);
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Accordion custom */
.accordion-custom .accordion-item {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 10px !important;
    margin-bottom: 0.5rem;
}

.accordion-custom .accordion-button {
    background: transparent;
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-weight: 500;
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
}

.accordion-custom .accordion-button::after {
    filter: invert(1);
}

.accordion-custom .accordion-body {
    color: var(--text-light);
}
