:root {
    --primary-color: #000000;
    --secondary-color: #e01b85;
    --text-color: #333333;
    --background-color: #ffffff;
    --accent-color: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img {
    margin-right: 10px;
    width: 90px;
    height: auto;
}

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

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('imgs/fundo\ header.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    letter-spacing: 2px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

/* Players Section */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
}

.player-card:hover {
    transform: translateY(-10px);
}

/* Shop Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 8px 24px;
    transition: all 0.3s ease;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 1.5rem;
    background: #f8f8f8;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.4;
}

.price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.shop-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-size: 0.9rem;
}

.shop-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 27, 133, 0.2);
    background-color: #c9156f;
}

/* Sponsors Section */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    margin-right: 0.5rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
}

/* Seção de Troféus */
.trofeus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.trofeu-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
                rgba(17, 17, 26, 0.1) 0px 16px 56px,
                rgba(17, 17, 26, 0.1) 0px 24px 80px;
    transition: all 0.3s ease;
    height: 620px;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trofeu-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
                rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.trofeu-imagem {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.trofeu-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.trofeu-card:hover .trofeu-imagem img {
    transform: scale(1.1);
}

.trofeu-content {
    padding: 1.5rem;
    height: calc(100% - 450px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trofeu-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trofeu-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: bold;
}

.data {
    color: var(--text-color);
}

.colocacao {
    color: var(--secondary-color);
}

.descricao {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Seção de Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Seção Quem Somos */
.about-section {
    background-color: #f8f8f8;
}

.about-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    padding: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .section {
        padding: 4rem 1rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trofeus-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .trofeu-card {
        height: 640px;
        max-width: 280px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-card {
        max-width: 100%;
    }

    .product-info {
        padding: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1; /* Coloca a imagem primeiro em dispositivos móveis */
    }
    
    .about-image img {
        max-height: 300px;
    }
    
    .about-text p {
        font-size: 1rem;
    }

    .hero-content p {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-content p::after {
        content: "\A";
        white-space: pre;
    }

    .mobile-break {
        display: inline;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .product-card {
        margin: 0 auto;
        width: 100%;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .shop-button {
        padding: 0.8rem 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
} 