/* ============================================
   CSS CONSOLIDADO - LoveFlix
   Todos os estilos em um único arquivo
   ============================================ */

/* ========== RESET E GLOBAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* ========== NAVBAR (Comum a todas as páginas) ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 1000;
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(20, 20, 20, 0.98) !important;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #e50914;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-icon,
.profile-icon {
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-icon:hover,
.profile-icon:hover {
    transform: scale(1.1);
}

/* ========== PÁGINA INICIAL (index.html) ========== */
body.index-page {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff1744 50%, #ff4081 100%);
    overflow: hidden;
    position: relative;
}

.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    animation: fall linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(255, 20, 147, 0.4);
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 1s ease-in;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-size: 2.5em;
    color: #ff1744;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 23, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.subtitle {
    font-size: 1.2em;
    color: #ff4081;
    margin-bottom: 30px;
    font-weight: 300;
}

.hint-box {
    background: linear-gradient(135deg, #ffe0e6 0%, #ffb3d1 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #ff4081;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.2);
}

.hint {
    color: #c2185b;
    font-size: 1em;
    line-height: 1.6;
    font-weight: 500;
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-direction: column;
}

#codeInput {
    padding: 15px 20px;
    font-size: 1.2em;
    border: 3px solid #ff4081;
    border-radius: 15px;
    outline: none;
    text-align: center;
    letter-spacing: 5px;
    font-weight: bold;
    color: #ff1744;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

#codeInput:focus {
    border-color: #ff1744;
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
    transform: scale(1.02);
}

#codeInput::placeholder {
    color: #ffb3d1;
    letter-spacing: 2px;
}

#submitBtn {
    padding: 15px 40px;
    font-size: 1.1em;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 100%);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 23, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5);
    background: linear-gradient(135deg, #ff4081 0%, #ff1744 100%);
}

#submitBtn:active {
    transform: translateY(0);
}

.error-message {
    color: #ff1744;
    font-size: 0.9em;
    min-height: 20px;
    margin-top: 10px;
    font-weight: 500;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-message.success {
    color: #4caf50;
    animation: none;
}

/* Botão de controle de música */
.music-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 23, 68, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    touch-action: manipulation;
}

.music-toggle-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.4);
}

.music-toggle-btn:active {
    transform: scale(0.95);
}

.music-toggle-btn.muted {
    background: rgba(255, 23, 68, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.music-toggle-btn.muted #musicIcon {
    opacity: 0.6;
}

/* ========== PÁGINA PRINCIPAL (main.html) ========== */
body.main-page {
    background-color: #141414;
    color: #ffffff;
    overflow-x: hidden;
}

body.main-page .navbar {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.7) 50%, transparent 100%);
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 50%, #ff6b9d 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 100;
    max-width: 600px;
    color: #ffffff;
    pointer-events: auto;
}

.hero-title {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.btn-play,
.btn-info {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 102;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.btn-play {
    background-color: #ffffff;
    color: #000000;
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.btn-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: #ffffff;
}

.btn-info:hover {
    background-color: rgba(109, 109, 110, 0.9);
    transform: scale(1.05);
}

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

.content-wrapper {
    padding: 40px 60px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.content-row {
    margin-bottom: 50px;
}

.row-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e5e5e5;
}

.row-container {
    position: relative;
}

.row-content {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.row-content::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.card {
    position: relative;
    min-width: 300px;
    height: 170px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card:hover {
    transform: scale(1.1);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: #ffffff;
    transition: all 0.3s;
    z-index: 2;
}

.card:hover .card-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
}

.card-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== QUIZ (quiz.html) ========== */
body.quiz-page {
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 50%, #141414 100%);
    color: #ffffff;
    min-height: 100vh;
}

body.quiz-page .navbar {
    background: rgba(20, 20, 20, 0.95);
}

.quiz-container {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.screen {
    display: none;
    width: 100%;
    max-width: 800px;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

.start-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 64, 129, 0.3);
    backdrop-filter: blur(10px);
}

.quiz-title {
    font-size: 3em;
    color: #ff4081;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(255, 64, 129, 0.5);
}

.quiz-subtitle {
    font-size: 1.3em;
    color: #e5e5e5;
    margin-bottom: 40px;
}

.quiz-info {
    background: rgba(255, 64, 129, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ffffff;
}

.quiz-info p:last-child {
    margin-bottom: 0;
}

.btn-start {
    padding: 18px 50px;
    font-size: 1.2em;
    font-weight: 600;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 64, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 64, 129, 0.6);
}

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

.quiz-header {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff1744 0%, #ff4081 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-counter {
    text-align: right;
    color: #e5e5e5;
    font-size: 0.9em;
}

.question-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 64, 129, 0.3);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.question-text {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.4;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-btn {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 64, 129, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    position: relative;
}

.answer-btn:hover {
    background: rgba(255, 64, 129, 0.2);
    border-color: #ff4081;
    transform: translateX(10px);
}

.answer-btn.selected {
    background: rgba(255, 64, 129, 0.3);
    border-color: #ff4081;
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.4);
}

.answer-btn.correct {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4caf50;
}

.answer-btn.incorrect {
    background: rgba(244, 67, 54, 0.3);
    border-color: #f44336;
}

.answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.quiz-footer {
    text-align: center;
}

.btn-next {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 600;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 64, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 64, 129, 0.6);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.result-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 64, 129, 0.3);
    backdrop-filter: blur(10px);
}

.result-icon {
    font-size: 5em;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.result-title {
    font-size: 2.5em;
    color: #ff4081;
    margin-bottom: 30px;
}

.score-display {
    font-size: 4em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

.score-number {
    color: #ff4081;
}

.score-total {
    font-size: 0.5em;
    color: #e5e5e5;
}

.result-message {
    font-size: 1.2em;
    color: #e5e5e5;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-restart {
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 64, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-restart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 64, 129, 0.6);
}

/* ========== TIMELINE (timeline.html) ========== */
body.timeline-page {
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

body.timeline-page .navbar {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
}

body.timeline-page .nav-links a {
    color: #ffffff;
}

body.timeline-page .nav-links a:hover {
    color: #ff1744;
}

.timeline-section {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.timeline-title {
    text-align: center;
    font-size: 3em;
    color: #ff1744;
    margin-bottom: 80px;
    text-shadow: 2px 2px 8px rgba(255, 23, 68, 0.5);
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 150px;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff1744 0%, #ff4081 100%);
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.timeline-events {
    position: relative;
    z-index: 2;
}

.timeline-event {
    display: flex;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-event.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-event.left {
    justify-content: flex-start;
}

.timeline-event.right {
    justify-content: flex-end;
}

.event-content {
    width: 45%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid #ff1744;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.timeline-event.left .event-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #ff1744;
}

.timeline-event.right .event-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #ff1744;
}

.event-number {
    font-size: 2em;
    margin-bottom: 10px;
}

.event-date {
    font-size: 0.9em;
    color: #ff1744;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.5em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-text {
    font-size: 1.1em;
    color: #ffffff;
    line-height: 1.6;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff1744;
    border: 4px solid #000000;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.8);
}

.proposal-section {
    padding: 100px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.proposal-section.visible {
    opacity: 1;
}

.proposal-content {
    text-align: center;
    max-width: 600px;
}

.proposal-question {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(255, 23, 68, 0.5);
}

.proposal-buttons {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 80px;
}

.btn-yes,
.btn-maybe {
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-yes {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 100%);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 23, 68, 0.6);
}

.btn-maybe {
    position: fixed;
    background: rgba(20, 20, 20, 0.9);
    color: #ff1744;
    border: 2px solid #ff1744;
    cursor: default;
    transition: transform 0.1s ease-out, left 0.1s ease-out, top 0.1s ease-out;
    z-index: 5;
    pointer-events: auto;
}

.animation-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    z-index: 2000;
}

.animation-section.visible {
    opacity: 1;
    pointer-events: all;
}

.animation-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.path-line {
    position: absolute;
    bottom: 40%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 23, 68, 0.5);
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.characters {
    position: absolute;
    bottom: 40%;
    left: 10%;
    display: flex;
    gap: 30px;
    transform: translateY(-50%);
    z-index: 2;
}

.character {
    position: relative;
    width: 60px;
    height: 80px;
}

.char-head {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 5px;
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.5);
}

.char-body {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.5);
}

.characters.walking {
    animation: walk 4s ease-in-out forwards;
}

@keyframes walk {
    0% {
        left: 10%;
    }
    100% {
        left: 80%;
    }
}

.final-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    z-index: 3000;
}

.final-section.visible {
    opacity: 1;
    pointer-events: all;
}

.final-content {
    text-align: center;
    color: #ffffff;
}

.final-title {
    font-size: 3.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.final-subtitle {
    font-size: 2em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 23, 68, 0.5);
    }
    to {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 23, 68, 0.8);
    }
}

/* ========== FAQ (faq.html) ========== */
body.faq-page {
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
}

body.faq-page .navbar {
    background: rgba(20, 20, 20, 0.95);
}

.faq-container {
    padding-top: 100px;
    padding: 120px 60px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.5em;
    color: #ff4081;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(255, 64, 129, 0.5);
    line-height: 1.3;
}

.page-subtitle {
    font-size: 1.2em;
    color: #e5e5e5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 64, 129, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: #ff4081;
    box-shadow: 0 5px 20px rgba(255, 64, 129, 0.2);
}

.faq-item.active {
    border-color: #ff4081;
    box-shadow: 0 8px 30px rgba(255, 64, 129, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 64, 129, 0.1);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-number {
    font-size: 1.5em;
    color: #ff4081;
    font-weight: bold;
    min-width: 40px;
}

.faq-question-text {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5em;
    color: #ff4081;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer-content {
    color: #e5e5e5;
    font-size: 1.05em;
    line-height: 1.8;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 64, 129, 0.2);
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* ========== TEXTOS (textos.html) ========== */
body.textos-page {
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
}

body.textos-page .navbar {
    background: rgba(20, 20, 20, 0.95);
}

.textos-container {
    padding-top: 100px;
    padding: 120px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.texto-full {
    max-width: 800px;
    margin: 0 auto;
}

.texto-full-title {
    font-size: 2.5em;
    color: #ff4081;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.texto-full-content {
    color: #e5e5e5;
    line-height: 2;
    font-size: 1.15em;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 64, 129, 0.3);
    white-space: pre-line;
}

.textos-header {
    text-align: center;
    margin-bottom: 50px;
}

.textos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.texto-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 64, 129, 0.3);
    border-radius: 15px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.texto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff1744 0%, #ff4081 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.texto-card:hover {
    transform: translateY(-5px);
    border-color: #ff4081;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
}

.texto-card:hover::before {
    transform: scaleX(1);
}

.texto-card.expanded {
    grid-column: 1 / -1;
}

.texto-title {
    font-size: 1.5em;
    color: #ff4081;
    margin-bottom: 15px;
    font-weight: 600;
}

.texto-content {
    color: #e5e5e5;
    line-height: 1.8;
    font-size: 1.05em;
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.texto-card.expanded .texto-content {
    max-height: none;
}

.texto-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(20, 20, 20, 0.9));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.texto-card.expanded .texto-content::after {
    opacity: 0;
}

.texto-read-more {
    margin-top: 15px;
    color: #ff4081;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: color 0.3s;
}

.texto-read-more:hover {
    color: #ff1744;
}

.texto-card.expanded .texto-read-more {
    display: none;
}

/* ========== EVOLUÇÃO INDIVIDUAL/RELACIONAMENTO ========== */
body.evolucao-page {
    background-color: #141414;
    color: #ffffff;
    min-height: 100vh;
    padding-top: 80px;
}

body.evolucao-page .navbar {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
}

body.evolucao-page .nav-links a {
    color: #ffffff;
}

body.evolucao-page .nav-links a:hover {
    color: #ff1744;
}

.evolucao-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.evolucao-section .main-title {
    text-align: center;
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.4;
}

.evolucao-section .subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #e5e5e5;
    margin-bottom: 60px;
    font-weight: 300;
    font-style: italic;
}

.columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.column-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.intro-text {
    font-size: 1em;
    color: #e5e5e5;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
}

.block:hover {
    border-color: rgba(255, 23, 68, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.block-title {
    font-size: 1.3em;
    color: #ff1744;
    margin-bottom: 15px;
    font-weight: 500;
}

.block-text {
    font-size: 1em;
    color: #e5e5e5;
    line-height: 1.8;
    font-weight: 300;
    white-space: pre-line;
}

.block-question {
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.textarea-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.3);
    border-radius: 6px;
    padding: 15px;
    color: #ffffff;
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s;
}

.textarea-field:focus {
    outline: none;
    border-color: #ff1744;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.2);
}

.textarea-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-save {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 500;
    background: rgba(255, 23, 68, 0.2);
    color: #ffffff;
    border: 2px solid #ff1744;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    align-self: flex-start;
}

.btn-save:hover {
    background: rgba(255, 23, 68, 0.4);
    border-color: #ff1744;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3);
}

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

.btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mensagem {
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255, 23, 68, 0.2);
    border: 1px solid rgba(255, 23, 68, 0.4);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mensagem.visible {
    opacity: 1;
}

.buttons-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-edit {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 500;
    background: rgba(255, 23, 68, 0.2);
    color: #ffffff;
    border: 2px solid #ff1744;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
}

.btn-edit:hover {
    background: rgba(255, 23, 68, 0.4);
    border-color: #ff1744;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3);
}

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

.btn-delete {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 500;
    background: rgba(255, 23, 68, 0.1);
    color: #ff6b6b;
    border: 2px solid rgba(255, 107, 107, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
}

.btn-delete:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

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

.btn-delete:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== PRESENTE 1 ANO (presente-1-ano.html) ========== */
body.presente-page {
    background: #f5f5f0;
    color: #2c2c2c;
    min-height: 100vh;
    padding-top: 80px;
}

body.presente-page .navbar {
    background: rgba(245, 245, 240, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.presente-page .nav-links a {
    color: #2c2c2c;
}

body.presente-page .nav-links a:hover {
    color: #e50914;
}

.presente-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.presente-section .main-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.countdown-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.countdown-label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-number {
    font-size: 3em;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1;
}

.countdown-number.completed {
    color: #2c2c2c;
    font-size: 2.5em;
}

.presente-section .subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 80px;
    font-weight: 300;
}

.trilha-container {
    position: relative;
    padding: 60px 20px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.trilha-line {
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    border-top: 2px dashed #d0d0d0;
    z-index: 1;
}

.trilha-line.completed {
    border-color: #2c2c2c;
    animation: lineGlow 1s ease;
}

@keyframes lineGlow {
    0% { border-color: #d0d0d0; }
    50% { border-color: #2c2c2c; }
    100% { border-color: #2c2c2c; }
}

.checkpoint {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    z-index: 2;
    margin: 0 10px;
}

.checkpoint-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8e8e8;
    border: 3px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.checkpoint-circle.locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.checkpoint-circle.unlocked {
    background: #ffffff;
    border-color: #2c2c2c;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkpoint-circle.unlocked:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.checkpoint-circle.completed {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: #ffffff;
    animation: checkpointComplete 0.6s ease;
}

@keyframes checkpointComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.checkpoint-number {
    font-size: 1.2em;
    font-weight: 500;
    color: #666;
}

.checkpoint-circle.completed .checkpoint-number {
    color: #ffffff;
}

.checkpoint-content {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.checkpoint-title {
    font-size: 1.1em;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.checkpoint-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-unlock {
    padding: 10px 24px;
    font-size: 0.9em;
    font-weight: 500;
    background: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-unlock:hover:not(:disabled) {
    background: #2c2c2c;
    color: #ffffff;
}

.btn-unlock:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    display: none !important;
    opacity: 0;
}

.modal:not(.hidden) {
    opacity: 1;
    display: flex;
}

/* Modal de código específico - menor, sem fundo e sem bloquear interações */
#codeModal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

#codeModal .modal-content {
    pointer-events: auto;
    max-width: 500px;
    min-width: 380px;
}

/* Modal de vídeo mantém fundo escuro e bloqueia interações */
#videoModal,
#introVideoModal,
#heroVideoModal,
#modal1Ano {
    background: rgba(0, 0, 0, 0.9);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

/* Modal de resposta - mais largo, menos alto, fundo embaçado */
#respostaModal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

#respostaModal .modal-content {
    pointer-events: auto;
    max-width: 750px;
    min-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px 30px;
}

/* Reduzir espaçamentos dentro do modal de resposta */
#respostaModal .form-group {
    margin-bottom: 15px;
}

#respostaModal .form-group label {
    margin-bottom: 6px;
    font-size: 0.95em;
}

#respostaModal .form-textarea {
    padding: 10px 14px;
    font-size: 0.95em;
    min-height: 70px;
    max-height: 120px;
}

#respostaModal .form-select {
    padding: 10px 14px;
    font-size: 0.95em;
}

#respostaModal .modal-title {
    font-size: 1.3em;
    margin-bottom: 20px;
}

#respostaModal .btn-register {
    margin-top: 15px;
    padding: 12px 24px;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: auto;
    min-width: 320px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    font-weight: bold;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #000000;
}

.modal-title {
    font-size: 1.5em;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.modal-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.code-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    border: 2px solid #ff1744;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.code-input:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-verify {
    width: 100%;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 500;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-verify:hover {
    background: #1a1a1a;
}

.code-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9em;
    text-align: center;
    transition: all 0.3s;
}

.code-message.error {
    background: #ffe0e0;
    color: #c33;
    border: 1px solid #ffcccc;
}

.code-message.success {
    background: #e0f0e0;
    color: #3c3;
    border: 1px solid #ccffcc;
}

.modal-video {
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-texto {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 40px;
    position: relative;
}



#modal1Ano .modal-content {
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

#modal1Ano .modal-texto {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0;
    box-sizing: border-box;
}

#modal1Ano .modal-close {
    top: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
}

.texto-1-ano {
    color: #2c2c2c;
}

.texto-1-ano-titulo-principal {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 15px;
    padding-top: 0;
    text-align: center;
}

.texto-1-ano-titulo {
    font-size: 1.8em;
    font-weight: 500;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.texto-1-ano-conteudo {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.texto-1-ano-conteudo p {
    margin-bottom: 20px;
}

.texto-1-ano-conteudo p:last-of-type {
    margin-bottom: 0;
}

.texto-1-ano-final {
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 30px;
    margin-bottom: 0;
}

#introVideoModal .modal-video {
    max-width: 600px;
    padding: 30px;
}

.video-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

#introVideoModal .video-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.video-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
}

#introVideoModal .video-player {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

.btn-continue {
    width: 100%;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 500;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-continue:hover {
    background: #1a1a1a;
}

.final-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.final-screen:not(.hidden) {
    opacity: 1;
}

.final-screen .final-content {
    text-align: center;
    color: #ffffff;
    max-width: 600px;
    padding: 40px;
    animation: fadeInUp 1s ease;
}

.final-message {
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.4;
}

.final-screen .final-subtitle {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-restart {
    padding: 15px 40px;
    font-size: 1em;
    font-weight: 500;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-restart:hover {
    background: #ffffff;
    color: #2c2c2c;
}

/* ========== PLAYLISTS (playlists.html) ========== */
body.playlists-page {
    background-color: #121212;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
}

.spotify-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: 240px;
    background: #000000;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-header {
    margin-bottom: 24px;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sidebar .logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 24px;
    font-weight: bold;
    color: #e50914;
    letter-spacing: 1px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: #b3b3b3;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-playlists {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.create-playlist-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #b3b3b3;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.create-playlist-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.plus-icon {
    font-size: 24px;
    width: 24px;
    text-align: center;
    background: #b3b3b3;
    color: #000000;
    border-radius: 2px;
    line-height: 1;
}

.liked-songs {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    margin-top: 8px;
    color: #b3b3b3;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.liked-songs:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.heart-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 100%);
    border-radius: 2px;
    padding: 2px;
}

.playlists-list {
    margin-top: 16px;
    max-height: calc(100vh - 400px);
    overflow-y: auto;
}

.playlist-item {
    padding: 8px 16px;
    color: #b3b3b3;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
}

.content-header {
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.3);
}

.back-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

.playlists-page .page-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 32px;
    margin-top: 100px;
}

.content-section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff !important;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.playlist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.playlist-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.playlist-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    background: linear-gradient(135deg, #ff1744 0%, #ff4081 50%, #ff6b9d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.playlist-image.large {
    aspect-ratio: 16/9;
}

.playlist-image::before {
    content: '♪';
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
}

.playlist-image .spotify-icon {
    font-size: 48px;
    color: #1db954;
    z-index: 2;
    position: relative;
}

.playlist-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-description {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar::-webkit-scrollbar,
.content-wrapper::-webkit-scrollbar,
.playlists-list::-webkit-scrollbar {
    width: 12px;
}

.sidebar::-webkit-scrollbar-track,
.content-wrapper::-webkit-scrollbar-track,
.playlists-list::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb,
.content-wrapper::-webkit-scrollbar-thumb,
.playlists-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.content-wrapper::-webkit-scrollbar-thumb:hover,
.playlists-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ========== UTILITÁRIOS ========== */
.hidden {
    display: none;
}

.btn-back {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 64, 129, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: rgba(255, 64, 129, 0.2);
    border-color: #ff4081;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 968px) {
    .columns-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trilha-line {
        display: none;
    }
    
    .trilha-container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .checkpoint {
        align-items: center !important;
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .checkpoint-content {
        text-align: center !important;
        max-width: 100%;
    }
}

/* Botão de voltar para mobile */
.btn-back-mobile {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 10px;
    text-decoration: none;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.btn-back-mobile:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Ajustes específicos para páginas com fundo claro */
body.central-ajustes-page .btn-back-mobile,
body.presente-page .btn-back-mobile {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: #2c2c2c;
}

body.central-ajustes-page .btn-back-mobile:hover,
body.presente-page .btn-back-mobile:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .music-toggle-btn {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
    }

    .nav-links {
        display: none;
    }
    
    .btn-back-mobile {
        display: flex;
    }
    
    .nav-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-banner {
        height: 60vh;
        min-height: 400px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        z-index: 101;
        position: relative;
    }

    .btn-play,
    .btn-info {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
        z-index: 102;
        pointer-events: auto;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .card {
        min-width: 250px;
        height: 140px;
    }

    .card-title {
        font-size: 1.1em;
    }

    .quiz-container {
        padding-top: 80px;
    }

    .quiz-title {
        font-size: 2em;
    }

    .question-text {
        font-size: 1.4em;
    }

    .start-content,
    .question-container,
    .result-content {
        padding: 40px 25px;
    }

    .result-actions {
        flex-direction: column;
    }

    .btn-restart,
    .btn-back {
        width: 100%;
    }

    .timeline-container {
        padding: 0 20px;
    }

    .timeline-title {
        font-size: 2em;
        margin-bottom: 50px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-event {
        margin-bottom: 60px;
    }

    .timeline-event.left,
    .timeline-event.right {
        justify-content: flex-start;
    }

    .event-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-event.left .event-content::before,
    .timeline-event.right .event-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid #ff1744;
        border-left: none;
    }

    .timeline-marker {
        left: 30px;
    }

    .proposal-question {
        font-size: 1.8em;
    }

    .btn-yes,
    .btn-maybe {
        padding: 15px 30px;
        font-size: 1em;
    }

    .final-title {
        font-size: 2.5em;
    }

    .final-subtitle {
        font-size: 1.5em;
    }

    .faq-container {
        padding: 100px 20px 40px;
    }

    .page-title {
        font-size: 1.8em;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 1.1em;
    }

    .faq-number {
        font-size: 1.3em;
        min-width: 35px;
    }

    .faq-answer-content {
        font-size: 1em;
    }

    .textos-container {
        padding: 100px 20px 40px;
    }

    .textos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .texto-card {
        padding: 20px;
    }

    .evolucao-section {
        padding: 40px 20px;
    }

    .evolucao-section .main-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .block {
        padding: 20px;
    }

    .block-title {
        font-size: 1.1em;
    }

    .btn-save {
        width: 100%;
        align-self: stretch;
    }

    .buttons-container {
        flex-direction: column;
    }

    .btn-edit,
    .btn-delete {
        width: 100%;
    }

    .presente-section {
        padding: 40px 20px;
    }

    .presente-section .main-title {
        font-size: 1.8em;
    }

    .presente-section .subtitle {
        font-size: 1em;
        margin-bottom: 60px;
    }

    .presente-section {
        padding: 40px 20px;
    }
    
    .presente-section .main-title {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .presente-section .subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    
    .trilha-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
        gap: 35px;
        margin: 20px 0;
    }
    
    .checkpoint {
        width: 100%;
        max-width: 280px;
        margin: 0;
        flex: none;
    }
    
    .checkpoint-circle {
        width: 50px;
        height: 50px;
    }
    
    .checkpoint-content {
        margin-top: 15px;
    }
    
    .checkpoint-title {
        font-size: 1em;
    }
    
    .checkpoint-description {
        font-size: 0.85em;
        margin-bottom: 12px;
    }
    
    .btn-unlock {
        padding: 8px 20px;
        font-size: 0.85em;
    }
    
    .countdown-box {
        padding: 20px 30px;
    }
    
    .countdown-number {
        font-size: 2.5em;
    }

    .final-message {
        font-size: 2em;
    }

    .final-screen .final-subtitle {
        font-size: 1em;
    }

    .sidebar {
        width: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .playlists-page {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
        min-height: 100vh;
        padding-top: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .spotify-layout {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
        flex-direction: column;
    }
    
    .sidebar {
        display: none;
    }
    
    .main-content {
        width: 100% !important;
        overflow-y: visible !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        flex: 1;
    }
    
    .content-wrapper {
        overflow: visible !important;
        padding: 24px 20px;
        padding-top: 100px;
    }
    
    .content-header {
        padding: 12px 20px;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(18, 18, 18, 0.95);
        margin: 0;
    }
    
    .back-btn {
        font-size: 16px;
        padding: 8px 16px;
        color: #ffffff !important;
    }
    
    
    .playlists-page .page-title {
        font-size: 1.8em;
        margin-bottom: 20px;
        margin-top: 0;
        color: #ffffff;
    }
    
    .section-title {
        font-size: 1.3em;
        margin-bottom: 12px;
        color: #ffffff !important;
    }
    
    .playlists-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    
    .playlist-card {
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .playlist-title {
        font-size: 15px;
        color: #ffffff !important;
        margin-bottom: 6px;
    }
    
    .playlist-description {
        font-size: 13px;
        color: #b3b3b3 !important;
    }
    
    .content-section {
        margin-bottom: 28px;
    }
}

/* ========== MOMENTOS (momentos.html) ========== */
body.momentos-page {
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
}

body.momentos-page .navbar {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
}

body.momentos-page .nav-links a {
    color: #ffffff;
}

body.momentos-page .nav-links a:hover {
    color: #ff1744;
}

.momentos-container {
    padding: 120px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.momentos-header {
    text-align: center;
    margin-bottom: 50px;
}

.momentos-title {
    font-size: 3em;
    color: #ff1744;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(255, 23, 68, 0.5);
}

.momentos-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
}

.momentos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.media-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1a1a1a;
}

.media-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
    z-index: 10;
}

.media-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3em;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Modal para visualização em tela cheia */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.media-modal.hidden {
    display: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 2.5em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ========== CENTRAL DE AJUSTES (central-ajustes.html) ========== */
body.central-ajustes-page {
    background: #f5f5f5;
    color: #2c2c2c;
    min-height: 100vh;
}

body.central-ajustes-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.central-ajustes-page .nav-links a {
    color: #2c2c2c;
}

body.central-ajustes-page .nav-links a:hover {
    color: #ff1744;
}

.central-ajustes-section {
    padding: 120px 60px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.central-ajustes-container {
    width: 100%;
}

.main-title {
    font-size: 2.5em;
    color: #2c2c2c;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

/* Card de Regras */
.rules-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rules-title {
    font-size: 1.5em;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff1744;
    font-weight: bold;
    font-size: 1.2em;
}

/* Formulário */
.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5em;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: #ffffff;
    color: #2c2c2c;
    cursor: pointer;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-select:focus {
    outline: none;
    border-color: #ff1744;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-textarea:focus {
    outline: none;
    border-color: #ff1744;
}

.btn-register {
    width: 100%;
    padding: 14px 24px;
    font-size: 1em;
    font-weight: 500;
    background: #ff1744;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-register:hover {
    background: #d0123a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.3);
}

/* Seção de Ajustes */
.ajustes-section {
    margin-bottom: 40px;
}

.ajustes-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 700;
}

.ajustes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.no-ajustes {
    text-align: center;
    color: #999;
    padding: 40px;
    font-style: italic;
}

/* Card de Ajuste */
.ajuste-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.ajuste-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ajuste-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.ajuste-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ajuste-reclamante {
    font-size: 1em;
    color: #2c2c2c;
}

.ajuste-data {
    font-size: 0.9em;
    color: #999;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

.status-aberto {
    background: #e0e0e0;
    color: #666;
}

.status-respondido {
    background: #fff3cd;
    color: #856404;
}

.status-resolvido {
    background: #d4edda;
    color: #155724;
}

.ajuste-content {
    margin-bottom: 20px;
}

.ajuste-item {
    margin-bottom: 20px;
}

.ajuste-item strong {
    display: block;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1em;
}

.ajuste-item p {
    color: #555;
    line-height: 1.6;
    white-space: pre-line;
}

/* Seção de Resposta */
.resposta-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.resposta-header {
    margin-bottom: 15px;
    color: #2c2c2c;
    font-size: 1.1em;
}

.resposta-content {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.resposta-item {
    margin-bottom: 15px;
}

.resposta-item:last-child {
    margin-bottom: 0;
}

.resposta-item strong {
    display: block;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.resposta-item p {
    color: #555;
    line-height: 1.6;
    white-space: pre-line;
}

/* Ações do Ajuste */
.ajuste-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-responder,
.btn-resolver,
.btn-excluir {
    padding: 10px 20px;
    font-size: 0.95em;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-responder {
    background: #ff1744;
    color: #ffffff;
}

.btn-responder:hover {
    background: #d0123a;
}

.btn-resolver {
    background: #28a745;
    color: #ffffff;
}

.btn-resolver:hover {
    background: #218838;
}

.btn-excluir {
    background: #dc3545;
    color: #ffffff;
}

.btn-excluir:hover {
    background: #c82333;
}

/* Mensagem */
.mensagem-ajuste {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2c2c2c;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mensagem-ajuste.visible {
    opacity: 1;
    transform: translateY(0);
}

.mensagem-ajuste.hidden {
    display: none;
}

@media (max-width: 600px) {
    .content {
        padding: 30px 25px;
    }
    
    .title {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .hint {
        font-size: 0.9em;
    }
    
    .momentos-container {
        padding: 100px 20px 40px;
    }
    
    .momentos-title {
        font-size: 2em;
    }
    
    .momentos-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .central-ajustes-section {
        padding: 100px 20px 40px;
    }
    
    .main-title {
        font-size: 2em;
    }
    
    .ajuste-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
