/* ==========================================================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS (Estilo Rock 'n' Roll Elegante)
   ========================================================================== */
:root {
    --bg-dark: #0d0d0d;
    --bg-card: #181818;
    --bg-input: #222222;
    --text-white: #ffffff;
    --text-muted: #b3b3b3;
    --accent-red: #d32f2f;
    --accent-red-glow: rgba(211, 47, 47, 0.5);
    --accent-gold: #d4af37;
    --accent-gold-hover: #b89327;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-red: rgba(211, 47, 47, 0.3);
    --font-heading: 'Grenze Gotisch', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center { text-align: center; }
.text-red { color: var(--accent-red); }
.text-gold { color: var(--accent-gold); }
.accent-text {
    font-family: var(--font-heading);
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red-glow);
}

/* ==========================================================================
   COMPONENTES DE LAYOUT E CONTAINER
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.container-narrow {
    max-width: 760px;
}

/* Títulos de Seção */
.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-weight: 300;
}

/* Botões Estilizados */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b89327);
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e5be49, var(--accent-gold));
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #333333;
    color: var(--text-white);
    border: 1px solid #444444;
}

.btn-secondary:hover {
    background: #444444;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   NAVBAR (Menu Flutuante Glassmorphism)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   SEÇÃO HERO (Save the Date Rocker)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 6px;
    color: var(--accent-red);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 12px var(--accent-red-glow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero-date {
    font-size: 1.4rem;
    letter-spacing: 4px;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.hero-subtext {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Contador Regressivo Estilo Rack */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.countdown-box {
    background: rgba(24, 24, 24, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    min-width: 90px;
    padding: 15px 10px;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.countdown-box:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.countdown-time {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   SEÇÃO NOSSA HISTÓRIA (Setlist do Amor)
   ========================================================================== */
.story-section {
    background-color: #080808;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--accent-red), var(--accent-gold));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    top: 15px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-gold-glow);
    transition: var(--transition-smooth);
}

.timeline-item.right .timeline-dot {
    left: -20px;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-red);
    color: var(--text-white);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.timeline-card {
    padding: 25px;
    background: var(--bg-card);
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.15);
}

.timeline-track {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

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

/* ==========================================================================
   SEÇÃO O SHOW (Detalhes e Informações)
   ========================================================================== */
.show-section {
    background: radial-gradient(circle at top, #141414 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.show-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 20px;
}

.info-card {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}

/* Estilo de Ingresso de Show */
.ticket-style {
    border: 1px dashed var(--accent-gold);
}

.ticket-style::before, .ticket-style::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #0d0d0d;
    border: 1.5px dashed var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.ticket-style::before {
    left: -16px;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.ticket-style::after {
    right: -16px;
    border-bottom-color: transparent;
    border-right-color: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--border-gold);
    padding-bottom: 15px;
}

.ticket-badge {
    background: var(--accent-red);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 2px;
    box-shadow: 0 0 8px var(--accent-red-glow);
}

.ticket-header h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.schedule-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.schedule-time {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    min-width: 70px;
}

.schedule-details h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.ticket-divider {
    height: 1px;
    border-bottom: 1px dashed var(--border-gold);
    margin: 30px 0;
}

.location-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Estilo do Card de Regras e Dress Code */
.rules-style {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-color: var(--border-red);
}

.rules-style:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--accent-red-glow);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dress-code-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.dress-code-title strong {
    color: var(--accent-gold);
}

.dress-code-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.card-tips {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.tip-item i {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-top: 3px;
}

.tip-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.tip-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO GUESTLIST (RSVP)
   ========================================================================== */
.rsvp-section {
    background-color: #060606;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.rsvp-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: var(--bg-input);
    border: 1px solid #333333;
    border-radius: 4px;
    color: var(--text-white);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

.form-group select option {
    background-color: var(--bg-card);
}

/* Estado de Sucesso RSVP */
.success-message {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.8s ease;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 15px var(--accent-gold-glow);
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* Área Administrativa trigger link */
.admin-link-wrapper {
    margin-top: 30px;
}

.admin-trigger-btn {
    background: none;
    border: none;
    color: #444444;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-trigger-btn:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   SEÇÃO LISTA DE PRESENTES (Tour Merchandise)
   ========================================================================== */
.gifts-section {
    background: #0d0d0d;
}

.gifts-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    flex: 1.5;
    max-width: 450px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
}

.search-box input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--text-white);
    padding: 12px 15px 12px 45px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.2);
}

.filter-box {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.filter-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    pointer-events: none;
}

.filter-box select {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--text-white);
    padding: 12px 15px 12px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-smooth);
}

.filter-box select:focus {
    outline: none;
    border-color: var(--accent-red);
}

/* Grid de Presentes */
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gift-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.gift-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.15);
}

.gift-card-img-wrapper {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #151515;
}

.gift-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gift-card:hover .gift-card-img {
    transform: scale(1.08);
}

.gift-card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13,13,13,0.85);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gift-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gift-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gift-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gift-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222222;
    padding-top: 15px;
}

.gift-card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.gift-card.acquired {
    opacity: 0.7;
    border-color: #222222;
}

.gift-card.acquired:hover {
    transform: none;
    box-shadow: none;
    border-color: #222222;
}

.gift-card-acquired-label {
    background: #222222;
    color: #666666;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* ==========================================================================
   MODAIS (Efeito Overlay Glassmorphism)
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-large {
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-red);
}

.modal-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #222222;
    padding-bottom: 15px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 5px;
}

.modal-body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.modal-gift-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.modal-gift-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
}

#modal-gift-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.modal-divider {
    height: 1px;
    background: #222222;
    margin: 25px 0;
}

/* Área do PIX simulada */
.pix-area {
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.pix-instructions {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.qr-code-placeholder {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

/* Simulador de QR Code com CSS */
.fake-qr-code {
    width: 160px;
    height: 160px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.qr-block {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 8px solid #000000;
    background: transparent;
}

.qr-block.top-left { top: 15px; left: 15px; }
.qr-block.top-right { top: 15px; right: 15px; }
.qr-block.bottom-left { bottom: 15px; left: 15px; }

.qr-inner-dots {
    width: 70px;
    height: 70px;
    background-image: 
        radial-gradient(circle, #000000 35%, transparent 40%),
        radial-gradient(circle, #000000 35%, transparent 40%);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
}

.pix-key-box {
    background: var(--bg-input);
    border: 1px solid #333333;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.pix-key-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.pix-key-input-wrapper {
    display: flex;
    gap: 10px;
}

.pix-key-input-wrapper input {
    flex-grow: 1;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 4px;
    color: var(--text-white);
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.copy-toast {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--accent-gold);
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-toast.show {
    opacity: 1;
}

.gift-success-msg {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.8s ease;
}

.gift-success-msg h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.gift-success-msg p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   PAINEL ADMINISTRATIVO (Área dos Noivos)
   ========================================================================== */
#admin-login-section {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

#admin-login-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

#admin-login-section p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.error-text {
    color: var(--accent-red);
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(211, 47, 47, 0.1);
}

.admin-header-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222222;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.admin-header-dashboard h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.admin-actions {
    display: flex;
    gap: 15px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    background: var(--bg-input);
    border: 1px solid #222222;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.5);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.table-responsive {
    overflow-x: auto;
    border: 1px solid #222222;
    border-radius: 6px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.admin-table th, .admin-table td {
    padding: 15px;
    border-bottom: 1px solid #222222;
}

.admin-table th {
    background: #111111;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
}

.status-badge.yes {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.status-badge.no {
    background: rgba(211, 47, 47, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.admin-song-text {
    font-style: italic;
    color: var(--text-muted);
}

/* ==========================================================================
   RODAPÉ (Footer)
   ========================================================================== */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 50px 20px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.footer-names {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-quote {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #444444;
    letter-spacing: 1px;
}

/* ==========================================================================
   ANIMAÇÕES E RESPONSIVIDADE
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Media Queries para Tablets e Dispositivos Mobile */
@media screen and (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .show-grid {
        grid-template-columns: 1fr;
    }
    .timeline::after {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none; /* Seria ativado via JS */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.95);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-title { font-size: 3.2rem; }
    .hero-subtext { font-size: 1.4rem; }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-box {
        min-width: 70px;
        padding: 10px 5px;
    }
    
    .countdown-time {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        padding: 0 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rsvp-box {
        padding: 25px;
    }
    
    .gifts-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box, .filter-box {
        max-width: 100%;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .modal-gift-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}
