/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #120B7D;
    --white: #FFFFFF;
    --light-blue: #1a14a3;
    --dark-blue: #0d0855;
    --shadow: rgba(18, 11, 125, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-blue);
    margin: 20px auto;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

/* Header com Logo */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 11, 125, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    position: relative;
}

/* Menu Toggle (Hambúrguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    gap: 3px;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-item.dropdown .nav-link::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 11, 125, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
    padding: 10px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
    padding-left: 25px;
}

.logo {
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: var(--white);
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    margin-top: -90px;
    padding-top: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeIn 1s ease-out;
    padding-bottom: 100px;
    width: 100%;
}

.hero-logo {
    max-width: 200px;
    width: auto;
    height: auto;
    margin: 0 auto 30px;
    display: inline-block;
    background: var(--white);
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out 0.2s both;
    vertical-align: middle;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
    animation: slideInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-motto {
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 2px;
    margin-top: 30px;
    margin-bottom: 60px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* História Section */
.historia {
    background: var(--white);
}

.historia-content {
    max-width: 900px;
    margin: 0 auto;
}

.historia-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.historia-text p {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.historia-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.historia-text em {
    color: var(--primary-blue);
    font-style: italic;
}

/* Identidade Section */
.identidade {
    background: linear-gradient(180deg, var(--white) 0%, #f8f8f8 100%);
    position: relative;
    z-index: 1;
}

.identidade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.identidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.identidade-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.identidade-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-blue);
}

.identidade-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.identidade-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.identidade-card ul {
    list-style: none;
    padding: 0;
}

.identidade-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.identidade-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.identidade-description {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 2;
}

.identidade-description p {
    margin-bottom: 20px;
}

.identidade-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    background: transparent;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper:hover {
    transform: scale(1.05);
    z-index: 10;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
    object-position: center;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

/* Força da Torcida Section */
.forca-torcida {
    background: var(--primary-blue);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.forca-torcida .container {
    position: relative;
    z-index: 2;
}

.forca-torcida .section-title {
    color: var(--white);
}

.forca-torcida .section-title::after {
    background: var(--white);
}

.forca-content {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.forca-content .lead {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 50px;
}

.forca-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, opacity 0.8s ease-out, box-shadow 0.3s ease;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 500;
}

.feature-item:hover p {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.forca-conclusion {
    margin-top: 50px;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
}

.torcida-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 11;
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100%;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 20;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
    transition: transform 0.5s ease;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery-item img[src=""],
.gallery-item img:not([src]) {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img[src=""]::after,
.gallery-item img:not([src])::after {
    content: 'Imagem';
    color: white;
    font-size: 14px;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

/* Projeto Section */
.projeto {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.projeto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.projeto-content {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.projeto-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.projeto-text p {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.projeto-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.projeto-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 20px var(--shadow);
}

.projeto-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.projeto-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 11;
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100%;
    height: 400px;
}

.projeto-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 20;
}

.projeto-image img {
    width: 100%;
    height: 100%;
    display: block !important;
    transition: transform 0.5s ease;
    object-fit: cover;
    object-position: center;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.projeto-image:hover img {
    transform: scale(1.1);
}

/* Patrocinadores Section */
.patrocinadores {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.patrocinadores-content {
    max-width: 1200px;
    margin: 0 auto;
}

.patrocinadores-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.patrocinadores-intro h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.patrocinadores-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.patrocinadores-intro strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.patrocinadores-conclusion {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 20px var(--shadow);
}

.patrocinadores-conclusion strong {
    color: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.plano-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.plano-bronze {
    border-color: #cd7f32;
}

.plano-prata {
    border-color: #c0c0c0;
}

.plano-ouro {
    border-color: #ffd700;
}

.plano-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.plano-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plano-preco {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.plano-preco span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.plano-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.plano-descricao {
    margin-bottom: 25px;
    text-align: center;
}

.plano-descricao p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.plano-beneficios {
    flex-grow: 1;
    margin-bottom: 30px;
}

.plano-beneficios h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.plano-beneficios ul {
    list-style: none;
    padding: 0;
}

.plano-beneficios ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.plano-beneficios ul li:last-child {
    border-bottom: none;
}

.plano-beneficios ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.plano-btn {
    display: block;
    text-align: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.btn-bronze:hover {
    background: linear-gradient(135deg, #b87333 0%, #cd7f32 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.4);
}

.btn-prata {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.btn-prata:hover {
    background: linear-gradient(135deg, #a8a8a8 0%, #c0c0c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}

.btn-ouro {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-ouro:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Recursos Section */
.recursos {
    background: linear-gradient(180deg, var(--white) 0%, #f8f8f8 100%);
    position: relative;
    z-index: 1;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.recurso-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.recurso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.recurso-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.recurso-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.recurso-card:hover .recurso-icon {
    transform: scale(1.1) rotate(5deg);
}

.spotify-card .recurso-icon {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: var(--white);
}

.loja-card .recurso-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
}

.instagram-card .recurso-icon {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
    color: var(--white);
}

.whatsapp-card .recurso-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.recurso-icon svg {
    width: 40px;
    height: 40px;
}

.recurso-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recurso-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.recurso-stats,
.recurso-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.recurso-stats span,
.recurso-features span {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.recurso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.spotify-btn {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.spotify-btn:hover {
    background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

.loja-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.loja-btn:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #FCAF45 0%, #F77737 50%, #E4405F 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.recurso-btn svg {
    width: 20px;
    height: 20px;
}

/* Filiais Section */
.filiais {
    background: linear-gradient(180deg, #f8f8f8 0%, var(--white) 100%);
    position: relative;
    z-index: 1;
}

.filiais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.filiais-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.filiais-content .lead {
    text-align: center;
    margin-bottom: 50px;
}

.filiais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.filial-item {
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.8s ease-out;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.filial-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--light-blue);
    box-shadow: 0 8px 20px var(--shadow);
}

.filiais-conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-top: 50px;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    display: inline-block;
    background: var(--white);
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    vertical-align: middle;
}

.footer-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 1.2rem;
    margin: 10px 0;
    opacity: 0.9;
}

.footer-motto {
    font-style: italic;
    font-size: 1.4rem;
    margin: 20px 0;
}

.footer-year {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 30px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

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

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .main-header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(18, 11, 125, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
    }

    .nav-item.dropdown .nav-link::after {
        float: right;
        margin-top: 5px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        width: calc(100% - 20px);
    }

    .dropdown-menu a {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--white);
        padding-left: 20px;
    }

    /* Overlay quando menu está aberto */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .logo {
        max-height: 50px;
    }

    .hero {
        margin-top: -80px;
        padding-top: 80px;
    }

    .hero-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .identidade-grid {
        grid-template-columns: 1fr;
    }

    .forca-features {
        grid-template-columns: 1fr;
    }

    .torcida-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .filiais-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .projeto-gallery {
        grid-template-columns: 1fr;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .patrocinadores-intro h3 {
        font-size: 2rem;
    }

    .recursos-grid {
        grid-template-columns: 1fr;
    }

    .recurso-card {
        padding: 30px 20px;
    }

    .image-wrapper {
        height: 350px;
    }

    .gallery-item {
        height: 280px;
    }

    .projeto-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
    }

    .identidade-images {
        grid-template-columns: 1fr;
    }

    .image-wrapper {
        height: 300px;
    }

    .gallery-item {
        height: 250px;
    }

    .projeto-image {
        height: 300px;
    }
}

