/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background-color: #000;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* AdSense Banners */
.ad-banner-top {
    display: none; /* Ocultar banner do topo para eliminar faixa branca */
}

.ad-banner-section,
.ad-banner-footer {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ad-banner-section {
    margin: 40px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
}

/* Editorial Sections */
.editorial-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.editorial-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.editorial-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.editorial-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.detailed-article {
    padding: 60px 0;
    background: #fff;
}

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

.article-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.article-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ff0000;
    margin: 2rem 0 1rem;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* História Section */
.historia {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ff0000;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #ff0000;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #ff0000;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-year {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 10px;
}

/* Legado Section */
.legado {
    padding: 80px 0;
    background: #fff;
}

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

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

.achievement-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 10px;
}

.quote-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #ff0000;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-section cite {
    font-weight: 600;
    color: #ff0000;
}

/* Inovação Section */
.inovacao {
    padding: 80px 0;
    background: #f8f9fa;
}

.bikes-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.bike-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.bike-image {
    height: 300px;
    overflow: hidden;
}

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

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

.bike-info {
    padding: 30px;
}

.bike-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 15px;
}

.bike-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bike-features {
    list-style: none;
}

.bike-features li {
    padding: 5px 0;
    color: #333;
    font-weight: 500;
}

.bike-features li::before {
    content: '✓';
    color: #ff0000;
    font-weight: bold;
    margin-right: 10px;
}

/* Campeões Section */
.campeoes {
    padding: 80px 0;
    background: #fff;
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.champion-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.champion-avatar {
    width: 80px;
    height: 80px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.champion-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 5px;
}

.champion-card h4 {
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 20px;
}

.champion-achievements {
    list-style: none;
    text-align: left;
}

.champion-achievements li {
    padding: 5px 0;
    color: #333;
    border-bottom: 1px solid #eee;
}

.champion-achievements li:last-child {
    border-bottom: none;
}

/* Artigos Section */
.artigos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.article-preview {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-preview:hover {
    transform: translateY(-5px);
}

.article-preview h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
}

.article-preview p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.category {
    background: #ff0000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #ff0000;
}

.post-date {
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-post h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ff0000;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.official-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.official-link:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 70px;
        text-align: left;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .bikes-showcase {
        grid-template-columns: 1fr;
    }
    
    .champions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}


/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Article Meta Info */
.article-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    font-size: 0.9rem;
    color: #666;
}

.article-meta-info span {
    display: flex;
    align-items: center;
}

.article-meta-info .author::before {
    content: "👤";
    margin-right: 5px;
}

.article-meta-info .date::before {
    content: "📅";
    margin-right: 5px;
}

.article-meta-info .read-time::before {
    content: "⏱️";
    margin-right: 5px;
}

/* Enhanced Blog Posts */
.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    margin-bottom: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #ff0000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-date {
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
}

/* Enhanced Article Previews */
.article-preview {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ff0000;
}

.article-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.article-preview h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-preview p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-time {
    font-weight: 500;
}

.category {
    background: #ff0000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Typography */
.detailed-article h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #ff0000;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    padding-left: 20px;
}

.detailed-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #ff0000;
    border-radius: 2px;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .blog-post h3 {
        font-size: 1.5rem;
    }
    
    .article-preview {
        padding: 25px;
    }
    
    .detailed-article h3 {
        font-size: 1.4rem;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .blog-post h3 {
        font-size: 1.3rem;
    }
    
    .article-preview {
        padding: 20px;
    }
}

