/* Variáveis de Cores */
:root {
    --ar-red: #981e32;
    --ar-dark: #121212;
    --ar-gray: #2a2a2a;
    --ar-light-gray: #e0e0e0;
    --ar-white: #ffffff;
    --ar-yellow: #ffcc00;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    background-color: var(--ar-dark);
    color: var(--ar-light-gray);
    line-height: 1.6;
}

/* Header */
.ar-header {
    background-color: var(--ar-white);
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ar-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ar-logo {
    width: 50px;
    height: auto;
}

.ar-titles h1 {
    color: var(--ar-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ar-nav {
    display: flex;
    gap: 20px;
}

.ar-nav a {
    color: var(--ar-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ar-nav a:hover {
    color: var(--ar-red);
}

.ar-nav a.selected {
    background-color: var(--ar-red);
    color: var(--ar-white);
}

/* Main Container */
.ar-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.ar-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.ar-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.ar-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 20px;
}

.ar-hero h1 {
    color: var(--ar-white);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.ar-hero p {
    color: var(--ar-light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Navigation */
.ar-quick-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ar-quick-link {
    background-color: var(--ar-gray);
    color: var(--ar-white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ar-quick-link:hover {
    background-color: var(--ar-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(152, 30, 50, 0.3);
}

/* Section Titles */
.ar-section-title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.8rem;
    color: var(--ar-white);
}

.ar-section-title span {
    position: relative;
    padding: 0 20px;
    background-color: var(--ar-dark);
    z-index: 2;
}

.ar-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--ar-red);
    z-index: 1;
}

.ar-section-subtitle {
    text-align: center;
    color: var(--ar-light-gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Generation Grid */
.ar-generation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ar-generation-card {
    background-color: var(--ar-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ar-generation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ar-generation-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Proporção 4:3 */
    overflow: hidden;
}

.ar-generation-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ar-generation-card:hover .ar-generation-image {
    transform: scale(1.05);
}

.ar-generation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ar-generation-card:hover .ar-generation-overlay {
    opacity: 1;
}

.ar-generation-grid:has(> .ar-generation-card:only-child) {
    display: grid;
    max-width: 675px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}


.ar-view-button {
    background-color: var(--ar-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ar-view-button:hover {
    background-color: var(--ar-white);
    color: var(--ar-red);
    transform: scale(1.05);
}

.ar-generation-info {
    padding: 20px;
}

.ar-generation-info h3 {
    color: var(--ar-white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.ar-generation-info p {
    color: var(--ar-light-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.ar-generation-spec {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
}

.ar-generation-spec span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--ar-light-gray);
}

/* Versions Section */
.ar-versions {
    background-color: var(--ar-gray);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.ar-back-button {
    background-color: transparent;
    color: var(--ar-light-gray);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.ar-back-button:hover {
    color: var(--ar-red);
}

/* Lista de Versões */
.ar-version-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.ar-version-item {
    background-color: #981e32;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--ar-red);
}

.ar-version-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.ar-version-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    text-decoration: none;
    color: #333;
}

.ar-version-name {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
}

.ar-version-specs {
    display: flex;
    gap: 20px;
}

.ar-version-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--ar-light-gray);
}

.ar-version-spec i {
    color: #e0e0e0;
}

/* Ficha Técnica */
.ar-specs {
    background-color: var(--ar-gray);
    border-radius: 10px;
    margin: 40px 0;
}

.ar-specs-container {
    padding: 30px;
}

.ar-specs-header {
    text-align: center;
    margin-bottom: 30px;
}

.ar-specs-header h1 {
    color: var(--ar-white);
    font-size: 2rem;
    margin-bottom: 5px;
}

.ar-specs-header h2 {
    color: var(--ar-red);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ar-specs-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ar-highlight-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.ar-highlight-item:hover {
    transform: translateY(-5px);
    background-color: var(--ar-red);
}

.ar-highlight-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--ar-white);
}

.ar-highlight-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ar-white);
}

.ar-highlight-item small {
    display: block;
    font-size: 0.8rem;
    color: var(--ar-light-gray);
    text-transform: uppercase;
    margin-top: 5px;
}

.ar-specs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 3fr));
    gap: 30px;
    margin-top: 40px;
}

.ar-specs-column {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.ar-specs-group {
    margin-bottom: 30px;
}

.ar-specs-group h3 {
    color: var(--ar-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ar-red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ar-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.ar-spec-item span {
    color: var(--ar-light-gray);
    font-size: 0.9rem;
}

.ar-spec-item strong {
    color: var(--ar-white);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

/* Galeria */
.ar-gallery {
    margin: 60px 0;
}

.ar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 4fr));
    gap: 20px;
    margin-top: 30px;
}

.ar-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-bottom: 75%; /* 3/4 = 0.75 (para proporção 4:3) */
    height: 0;
    transition: all 0.3s ease;
}

.ar-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ar-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.ar-gallery-item:hover img {
    transform: scale(1.1);
}

/* Links */
.ar-video-container {
    margin-top: 15px;
}

.ar-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--ar-red);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.ar-video-link:hover {
    background-color: #7a1728;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(152, 30, 50, 0.4);
}

/* Footer */
.ar-footer {
    background-color: #1a1a1a;
    padding: 50px 0 0;
    margin-top: 60px;
}

.ar-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ar-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ar-footer-logo span {
    color: var(--ar-white);
    font-weight: 700;
    font-size: 1.2rem;
}

.ar-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.ar-footer-column h3 {
    color: var(--ar-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ar-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--ar-red);
}

.ar-footer-column a {
    display: block;
    color: var(--ar-light-gray);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ar-footer-column a:hover {
    color: var(--ar-red);
}

.ar-social-icons {
    display: flex;
    gap: 15px;
}

.ar-social-icons a {
    color: var(--ar-light-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ar-social-icons a:hover {
    color: var(--ar-red);
}

.ar-footer-bottom {
    background-color: #121212;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.ar-footer-bottom p {
    color: var(--ar-light-gray);
    font-size: 0.8rem;
}

/* Estilos para os ícones de status */
.fa-check-circle {
    color: #4CAF50; /* Verde */
}

.fa-times-circle {
    color: #F44336; /* Vermelho */
}

.fa-exclamation-circle {
    color: #FFC107; /* Amarelo */
}

/* Responsividade */
@media (max-width: 1024px) {
    .ar-hero h1 {
        font-size: 2.5rem;
    }
    
    .ar-specs-highlights {
        gap: 20px;
    }
    
    .ar-highlight-item {
        min-width: 100px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .ar-header {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .ar-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ar-hero {
        height: 250px;
    }
    
    .ar-hero h1 {
        font-size: 2rem;
    }
    
    .ar-hero p {
        font-size: 1rem;
    }
    
    .ar-quick-nav {
        flex-wrap: wrap;
    }
    
    .ar-specs-highlights {
        gap: 15px;
    }
    
    .ar-highlight-item {
        padding: 12px 15px;
    }
    
    .ar-highlight-item span {
        font-size: 1.5rem;
    }
    
    .ar-specs-content {
        grid-template-columns: 1fr;
    }
    
    .ar-version-specs {
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
    }
}

@media (max-width: 480px) {
    .ar-hero {
        height: 200px;
    }
    
    .ar-hero h1 {
        font-size: 1.8rem;
    }
    
    .ar-section-title {
        font-size: 1.5rem;
    }
    
    .ar-specs-header h1 {
        font-size: 1.8rem;
    }
    
    .ar-specs-header h2 {
        font-size: 1.3rem;
    }
    
    .ar-specs-highlights {
        gap: 10px;
    }
    
    .ar-highlight-item {
        min-width: 80px;
        padding: 10px;
    }
    
    .ar-highlight-item span {
        font-size: 1.3rem;
    }
    
    .ar-highlight-item small {
        font-size: 0.7rem;
    }
    
    .ar-footer-content {
        grid-template-columns: 1fr;
    }
    
    .ar-version-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ar-version-specs {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ar-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ar-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a1728;
}

.ar-year-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f9f9f9;
    margin: 20px 0 10px;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.ar-year-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

/* Seção de História */
.ar-history {
    padding: 40px 20px;
    background-color: var(--ar-gray);
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ar-history-content {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ar-history-text {
    flex: 1;
    line-height: 1.6;
    color: #ffffff;
}

.ar-history-text p {
    margin-bottom: 15px;
}

.ar-history-image {
    flex: 1;
}

.ar-history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .ar-history-content {
        flex-direction: column;
    }
    
    .ar-history-image {
        order: -1;
        margin-bottom: 20px;
    }
}


