:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff8c00; /* Laranja escuro/vibrante */
    --accent-hover: #e07b00;
    --input-bg: #1a1a1a;
    --input-border: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at top left, rgba(255, 140, 0, 0.35) 0%, transparent 45%),
        radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.25) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 3rem;
    /* Caso o logo seja preto, podemos precisar de um filtro ou background, 
       mas assumindo que o logo funcione em fundo preto ou tenha transparência */
}

h1 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

p {
    margin-bottom: 2rem;
    color: #ccc;
}

.input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

input[type="text"] {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid var(--input-border);
    background-color: var(--input-bg);
    color: var(--text-color);
    width: 70%;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: var(--accent-color);
}

button, .btn-link {
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    background-color: var(--accent-color);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover, .btn-link:hover {
    background-color: var(--accent-hover);
    color: white;
}

.hidden {
    display: none;
}

#error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Estilos da Proposta */
#proposal-section {
    text-align: left;
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    border-top: 3px solid var(--accent-color);
}

.text-btn {
    background: none;
    color: var(--accent-color);
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-decoration: underline;
}

.text-btn:hover {
    background: none;
    color: var(--accent-hover);
}

.proposal-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.details p {
    margin-bottom: 0.8rem;
    color: #ddd;
}

.status {
    background-color: var(--accent-color);
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.details ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    color: #ddd;
}

.details li {
    margin-bottom: 0.5rem;
}

/* Estilos CS ALL STARS */
body.scrollable-page {
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.wide-container {
    max-width: 1100px;
}

.hero-header {
    margin-bottom: 4rem;
    position: relative;
}

.hero-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.small-logo {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.intro-section {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.intro-section h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 4rem;
}

.card {
    background-color: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Estilos da Estrutura Geral */
.structure-section {
    margin-bottom: 4rem;
}

.structure-section h2, .format-options-section h2, .highlight-section h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.schedule-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.95));
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.schedule-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
}

.day-header {
    background-color: var(--accent-color);
    color: black;
    font-weight: 800;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.schedule-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.duration {
    display: block;
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.schedule-card ul {
    list-style-type: none;
    margin-left: 0;
}

.schedule-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #ddd;
}

.schedule-card li::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Estilos das Opções de Formato */
.format-options-section {
    margin-bottom: 4rem;
}

.options-grid {
    display: flex;
    justify-content: center;
}

.highlight-option {
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.1), rgba(0,0,0,0.8));
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
}

.highlight-option h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.highlight-option p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
}

.highlight-section {
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid #333;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    text-align: center;
}

.highlight-section h2 {
    justify-content: center;
    border-left: none;
    padding-left: 0;
}

.captains {
    margin-top: 2rem;
}

.tags-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.captain-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: black;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.captain-tag:hover {
    transform: scale(1.05);
    background-color: #fff;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Animações */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

.glitch-effect {
    position: relative;
}

.glitch-effect:hover {
    text-shadow: 2px 2px 0px #ff0000, -2px -2px 0px #0000ff;
    transition: text-shadow 0.1s;
}