/* RESET & BASE */
:root {
    --red: #e60000;
    --red-dark: #990000;
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --glass-bg: rgba(15, 15, 15, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* BACKGROUNDS */
.main-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    /* COLOQUE A IMAGEM DE FUNDO AQUI */
    /* Exemplo: background: url('../img/background-festa.jpg') center/cover; */
    background: radial-gradient(circle at center, #2a0000 0%, #000000 100%);
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png'); /* noise texture opcional */
    background-color: rgba(0,0,0,0.7);
    z-index: -1;
}

.text-red { color: var(--red) !important; }
.bg-red { background-color: var(--red) !important; }

/* CONTENT WRAPPER */
.content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TOP TEXT */
.top-badge {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 10px;
}

/* TITLE */
.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    text-align: center;
    /* Efeito de brilho vermelho sutil */
    text-shadow: 0 0 30px rgba(230, 0, 0, 0.4);
}

.sub-title {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #fff;
    margin-top: -30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    transform: rotate(-5deg);
}

@media (max-width: 768px) {
    .main-title { font-size: 3.5rem; }
    .sub-title { font-size: 3.5rem; margin-top: -15px; }
}

/* INFO ROW */
.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon-box i {
    font-size: 2rem;
}

.info-item .text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item .val {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.info-item .desc {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.2;
}

.info-item .desc span {
    font-size: 0.65rem;
    color: #888;
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* CARDS GLASSMORPHISM */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
}

.card-header-title {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}
.card-header-title i {
    margin-right: 8px;
}

/* TIMERS */
.timer-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.t-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-box span {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.t-box small {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 1px;
    margin-top: 5px;
}

.progress-container {
    width: 80%;
    margin: 0 auto;
    height: 3px;
    background: #333;
    position: relative;
    border-radius: 3px;
}

.progress-bar-glow {
    position: absolute;
    top: 0; left: 0; height: 100%;
    width: 50%; /* Dinamico via JS se quiser */
    background: var(--red);
    box-shadow: 0 0 15px var(--red);
    border-radius: 3px;
}

.deadline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.msg-info {
    font-size: 0.8rem;
}

/* DIVIDER ATRAÇÕES */
.section-divider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red));
}
.section-divider::after {
    background: linear-gradient(270deg, transparent, var(--red));
}

.section-divider span {
    padding: 0 20px;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #fff;
}

/* ATTRACTION CARD */
.attraction-card {
    background: var(--glass-bg);
    border: 1px solid var(--red);
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(230,0,0,0.1), inset 0 0 20px rgba(230,0,0,0.05);
    overflow: hidden;
}

/* SE TIVER IMAGEM DA BANDA NO FUNDO */
.band-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.band-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.band-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
    margin-bottom: 15px;
}
.band-title span {
    color: #fff;
}

/* Fake audio wave animada */
.audio-wave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    height: 25px;
}
.audio-wave span {
    display: block;
    width: 3px;
    background: #666;
    animation: wave 1s infinite alternate;
}
.audio-wave span:nth-child(even) { animation-delay: 0.2s; background: var(--red); }
.audio-wave span:nth-child(3n) { animation-delay: 0.5s; }

@keyframes wave {
    0% { height: 5px; }
    100% { height: 25px; }
}

/* RSVP CARD */
.rsvp-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.rsvp-icon {
    width: 50px; height: 50px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

.rsvp-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.rsvp-subtitle {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
}

/* Form inputs */
.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.custom-input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 15px 15px 15px 50px;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(230,0,0,0.2);
}

.btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--red-dark);
}

.secure-msg {
    font-size: 0.75rem;
    color: #666;
}

/* FOOTER */
.footer-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #aaa;
}

.footer-script {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--red);
    margin-top: -10px;
}

.footer-heart {
    font-size: 1.5rem;
}
