/*
=================================================================
 STYLE.CSS - Libra's Club
=================================================================

 TABLE OF CONTENTS
 -----------------
 1.0  SETUP & GLOBALS
      1.1  - Font Imports & Variables
      1.2  - Global Reset
      1.3  - Keyframe Animations

 2.0  BASE & TYPOGRAPHY
      2.1  - Body Styles
      2.2  - Headings & Links

 3.0  LAYOUT STRUCTURE
      3.1  - Main Header & Navigation
      3.2  - Main Footer
      3.3  - Generic Page Containers

 4.0  COMPONENTS
      4.1  - Buttons (CTA, Language)
      4.2  - Cards (Event, Team, Partner, Rule)
      4.3  - Forms (Inputs, Selects, Radio/Checkbox)
      4.4  - Modal (Team Profile)
      4.5  - Lightbox (Gallery)

 5.0  PAGE-SPECIFIC SECTIONS
      5.1  - Home: Hero Section
      5.2  - Home: Schedule Section
      5.3  - Home: Join Team Section
      5.4  - Events Page
      5.5  - Gallery Page
      5.6  - Team Page
      5.7  - Menu Page
      5.8  - Rules Page
      5.9  - Partners Page

 6.0  UTILITIES & RESPONSIVE
      6.1  - Focus Mode
      6.2  - Responsive Media Queries
=================================================================
*/


/*
=================================================================
 1.0 SETUP & GLOBALS
=================================================================
*/

/* 1.1 - Font Imports & Variables
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Share+Tech+Mono&display=swap');

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --thirdary-color: #ff2d2d;
    --text-color: #f0f0f0;
    --background-color: #0d0d0d;
    --container-bg: #1a1a1a;
    --border-color: #00ffff;
    --label-color: #a0a0a0;
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Share Tech Mono', monospace;
}

/* 1.2 - Global Reset
-------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 1.3 - Keyframe Animations
-------------------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes glitch {
    0%   { text-shadow: 0.05em 0 0 #00ffff, -0.05em 0 0 #ff00ff; }
    14%  { text-shadow: 0.05em 0 0 #00ffff, -0.05em 0 0 #ff00ff; }
    15%  { text-shadow: -0.05em -0.025em 0 #00ffff, 0.025em 0.025em 0 #ff00ff; }
    49%  { text-shadow: -0.05em -0.025em 0 #00ffff, 0.025em 0.025em 0 #ff00ff; }
    50%  { text-shadow: 0.025em 0.05em 0 #00ffff, 0.05em 0 0 #ff00ff; }
    99%  { text-shadow: 0.025em 0.05em 0 #00ffff, 0.05em 0 0 #ff00ff; }
    100% { text-shadow: -0.025em 0 0 #00ffff, -0.025em -0.05em 0 #ff00ff; }
}


/*
=================================================================
 2.0 BASE & TYPOGRAPHY
=================================================================
*/

/* 2.1 - Body Styles
-------------------------------------------------------------- */
body {
    background-color: var(--background-color);
    background-image:
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0iIzBkMGQwZCI+PC9yZWN0Pgo8cmVjdCB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9IiMxNzE3MTciPjwvcmVjdD4KPC9zdmc+');
    font-family: var(--font-body);
    color: var(--text-color);
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 2.2 - Headings & Links
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

a, button {
    font-family: var(--font-body);
    cursor: pointer;
    color: var(--text-color);
}


/*
=================================================================
 3.0 LAYOUT STRUCTURE
=================================================================
*/

/* 3.1 - Main Header & Navigation
-------------------------------------------------------------- */
.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 10;
}

.page-body .main-header {
    background-color: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
}

.header-logo {
    width: 70px;
    height: auto;
    transition: transform 0.3s ease;
}
.header-logo:hover {
    transform: scale(1.1);
}

nav {
    display: flex;
    gap: 30px;
}
.nav-link {
    text-decoration: none;
    font-size: 1.2em;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* 3.2 - Main Footer
-------------------------------------------------------------- */
footer {
    width: 100%;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: auto;
    border-top: 1px solid #222;
}

.social-links {
    margin-bottom: 20px;
}
.social-links a {
    color: var(--label-color);
    font-size: 1.8em;
    margin: 0 15px;
    transition: all 0.3s ease;
}
.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--primary-color);
}

/* 3.3 - Generic Page Containers
-------------------------------------------------------------- */
.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    animation: fadeIn 1s ease-out;
}

.page-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
}

.content-section {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--container-bg);
}
.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.content-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.8;
}


/*
=================================================================
 4.0 COMPONENTS
=================================================================
*/

/* 4.1 - Buttons (CTA, Language)
-------------------------------------------------------------- */
.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    margin-top: 40px;
    font-size: 1.3em;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--primary-color), inset 0 0 8px var(--primary-color);
}
.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 0 15px var(--primary-color), inset 0 0 15px var(--primary-color);
    text-shadow: none;
}

.language-switcher button {
    background-color: transparent;
    border: 1px solid var(--label-color);
    color: var(--label-color);
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.language-switcher button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* 4.2 - Cards (Event, Team, Partner, Rule)
-------------------------------------------------------------- */
.event-card {
    display: flex;
    background-color: var(--container-bg);
    border: 1px solid #222;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.event-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.team-card {
    background-color: var(--container-bg);
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.partner-card {
    background-color: var(--container-bg);
    border: 1px solid #333;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.rule-card {
    background-color: var(--container-bg);
    border: 1px solid #333;
    border-left: 5px solid var(--thirdary-color);
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.rule-card:hover {
    border-color: var(--thirdary-color);
    box-shadow: 0 0 15px rgba(255, 45, 45, 0.3);
}

/* 4.3 - Forms (Inputs, Selects, Radio/Checkbox)
-------------------------------------------------------------- */
.application-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.application-form label {
    font-family: var(--font-body);
    color: var(--label-color);
    font-size: 1.1em;
    text-align: left;
}
.application-form input,
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 12px;
    background-color: var(--container-bg);
    border: 1px solid #333;
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1em;
    transition: all 0.3s ease;
}
.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}
.application-form button {
    margin-top: 20px;
    padding: 15px;
    font-size: 1.2em;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.application-form button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.radio-group, .checkbox-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
}
.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    display: none;
}
.radio-group label,
.checkbox-group label {
    flex-grow: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--label-color);
    border-radius: 5px;
    color: var(--label-color);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.radio-group label:hover,
.checkbox-group label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.radio-group input[type="radio"]:checked + label,
.checkbox-group input[type="checkbox"]:checked + label {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    text-shadow: 0 0 5px var(--background-color);
    box-shadow: 0 0 15px var(--primary-color);
}

/* 4.4 - Modal (Team Profile)
-------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--container-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}
.modal-overlay.open .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5em;
    color: var(--label-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: var(--primary-color);
}

/* 4.5 - Lightbox (Gallery)
-------------------------------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
}
.lightbox:target {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox span {
    display: block;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


/*
=================================================================
 5.0 PAGE-SPECIFIC SECTIONS
=================================================================
*/

/* 5.1 - Home: Hero Section
-------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -117px; /* Adjust for header height */
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0.4) 0%, #0d0d0d 70%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section .main-header {
    z-index: 3;
}
.main-title {
    font-size: 5em;
    font-weight: 700;
    text-shadow: 0 0 5px var(--primary-color), 0 0 15px var(--primary-color), 0 0 30px var(--primary-color), 0 0 50px var(--secondary-color);
}
.main-title:hover {
    animation: glitch 0.25s infinite;
}
.tagline {
    font-size: 1.5em;
    margin-top: 10px;
    letter-spacing: 3px;
    color: var(--text-color);
}

/* 5.2 - Home: Schedule Section
-------------------------------------------------------------- */
.schedule-container {
    text-align: center;
    padding: 20px 40px;
    margin: -40px auto 40px auto;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    max-width: 500px;
    background-color: var(--container-bg);
    position: relative;
    z-index: 5;
}
.schedule-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}
.schedule-days {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.schedule-times ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.schedule-times li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* 5.3 - Home: Join Team Section
-------------------------------------------------------------- */
.join-team-section {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--background-color);
    border-top: 1px solid #222;
}
.join-team-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.join-team-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--label-color);
}

/* 5.4 - Events Page
-------------------------------------------------------------- */
.events-section + .events-section {
    margin-top: 80px;
}
.event-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.event-date {
    background-color: #222;
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
    border-radius: 5px 0 0 5px;
    font-family: var(--font-title);
}
.event-date .month {
    display: block;
    font-size: 1em;
}
.event-date .day {
    display: block;
    font-size: 2.5em;
    line-height: 1;
}
.event-details {
    padding: 20px;
    text-align: left;
}
.event-title {
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: none;
}
.event-time {
    color: var(--label-color);
    margin-bottom: 15px;
}
.event-description {
    line-height: 1.6;
}
.event-card-past {
    opacity: 0.6;
    border-left-color: var(--label-color);
    transition: opacity 0.3s ease;
}
.event-card-past:hover {
    opacity: 1;
}
.event-card-past .event-date {
    color: var(--label-color);
}

/* 5.5 - Gallery Page
-------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    display: block;
    border: 2px solid #333;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-selector-wrapper {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-selector-wrapper label {
    font-size: 1.2em;
    color: var(--label-color);
    margin-right: 15px;
}
#gallery-selector {
    background-color: var(--container-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 1.2em;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    cursor: pointer;
}
#gallery-selector:focus {
    outline: none;
}

/* 5.6 - Team Page
-------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
}
.team-name {
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 5px;
    text-shadow: none;
}
.team-role {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}
.team-bio {
    font-size: 0.9em;
    line-height: 1.6;
    color: var(--label-color);
}
.team-subtitle {
    font-size: 2.5em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    box-shadow: 0 5px 15px -15px var(--border-color);
}
.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.profile-name {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: var(--text-color);
    text-shadow: none;
}
.profile-role {
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 0 8px var(--secondary-color);
}
.profile-bio {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--label-color);
    text-align: left;
}


/* --- ESTILOS DO MODAL DA EQUIPA (ADICIONAIS) --- */
.member-special-drink-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #444;
}

.member-special-drink-section h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

#modal-special-drink {
    font-size: 1.4em;
    color: var(--text-color);
    font-family: var(--font-title);
    margin-bottom: 20px;
}

.member-spotify-section {
    margin-top: 20px;
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    background-color: #1DB954; /* Cor verde do Spotify */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
}

.spotify-link i {
    margin-right: 10px;
    font-size: 1.3em;
}

.spotify-link:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
}


/* 5.7 - Menu Page
-------------------------------------------------------------- */
.menu-container {
    max-width: 900px;
    margin: 40px auto;
    background: var(--container-bg);
    border: 2px solid var(--border-color);
    padding: 30px 50px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    border-radius: 5px;
}
.category-title {
    font-size: 2.2em;
    text-align: center;
    padding-bottom: 15px;
    margin: 50px 0 30px;
    position: relative;
}
.category-title:first-child {
    margin-top: 0;
}
.category-title::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}
.drink-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    padding: 20px;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}
.drink-item:last-child {
    border-bottom: none;
}
.drink-item:hover {
    background-color: rgba(0, 255, 255, 0.05);
}
.drink-name {
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 15px;
    text-shadow: none;
}

/* Estilos para o menu suspenso (Dropdown) */
.menu-selector-wrapper {
    text-align: center;
    margin-bottom: 40px;
}
.menu-selector-wrapper label {
    font-size: 1.2em;
    color: var(--label-color);
    margin-right: 15px;
}
#menu-selector {
    background-color: var(--container-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 1.2em;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    cursor: pointer;
}
#menu-selector:focus {
    outline: none;
}

/* Estilos para as abas (Tabs) */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background-color: transparent;
    border: 2px solid var(--label-color);
    color: var(--label-color);
    padding: 12px 25px;
    font-family: var(--font-title);
    font-size: 1.2em;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    text-shadow: none;
}

/* 5.8 - Rules Page
-------------------------------------------------------------- */
.rules-container {
    max-width: 900px;
    margin: 0 auto;
}
.rule-title {
    font-size: 1.8em;
    color: var(--text-color);
    text-shadow: none;
    margin-bottom: 15px;
}
.rule-card p {
    color: var(--label-color);
    line-height: 1.8;
    margin-bottom: 10px;
}
.rule-card p:last-child {
    margin-bottom: 0;
}

/* 5.9 - Partners Page
-------------------------------------------------------------- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background-color: var(--container-bg);
    border: 1px solid #333;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.partner-logo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #333;
}

.partner-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Faz esta área crescer para preencher o espaço */
}

.partner-name {
    font-size: 1.5em;
    color: var(--text-color);
    text-shadow: none;
    margin-bottom: 10px;
}

.partner-description {
    font-size: 1em;
    color: var(--label-color);
    line-height: 1.6;
}

/*
=================================================================
 6.0 UTILITIES & RESPONSIVE
=================================================================
*/

/* 6.1 - Focus Mode
-------------------------------------------------------------- */
.focus-mode-toggle-container {
    text-align: right;
    margin-top: -50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 20;
}
#focus-mode-button {
    background: transparent;
    border: 2px solid var(--label-color);
    color: var(--label-color);
    font-size: 1.2em;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#focus-mode-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
body.focus-mode .main-header,
body.focus-mode footer {
    display: none;
}

/* 6.2 - Responsive Media Queries
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .nav-link {
        margin: 0;
    }
    .main-title {
        font-size: 3em;
    }
    .content-container {
        padding: 20px;
    }
    .event-card {
        flex-direction: column;
    }
    .event-date {
        border-radius: 5px 5px 0 0;
        border-right: none;
        border-bottom: 5px solid var(--primary-color);
    }
}