:root {
    --e-global-color-primary: #fff;
    --e-global-color-63af46d: #fff;
    --gradient-primary: linear-gradient(90deg, #fff 22%, #fff 100%);
    --gradient-reverse: linear-gradient(270deg, #fff 22%, #fff 100%);
    --gradient-radial: radial-gradient(circle, #fff 0%, #fff 100%);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logo da SEKAI EXPERIENCE */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Responsividade do Logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: 1rem;
    z-index: 1001;
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    clip-path: circle(50% at 50% 50%);
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.lang-btn:active {
    transform: scale(0.95);
}

.lang-btn img,
.lang-btn svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    display: block;
    object-fit: cover;
    object-position: center;
}

.flag-icon {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

/* Tooltip para os botões de idioma */
.lang-btn::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.lang-btn:hover::after {
    opacity: 1;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - ANIMAÇÕES ENERGÉTICAS */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    background: #000;
}

/* Remover animação videoEnthusiasm */

/* Remover .hero::before - deixar apenas o vídeo */

/* Remover hero::after */

/* Remover animações antigas */

/* Remover .hero-background - deixar apenas o vídeo */

/* Remover animações antigas */

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatElement 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Remover Speed Lines Effect */

/* Remover animações das speed lines */

/* Animação para fazer o texto aparecer */
@keyframes simpleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* REMOVER EFEITO DE CHUVA */
.adventure-particle {
    display: none;
}

@keyframes adventureFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(200px) rotate(720deg) scale(0);
        opacity: 0;
    }
}

/* Título Principal - SEM ANIMAÇÕES */
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.7;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 25;
    text-align: center;
}

/* Remover animação titleEnergy */

/* Destacar RIDE YOUR LEGACY - TEXTO BRANCO SIMPLES */
.title-line:nth-child(3),
.title-line:nth-child(4),
.title-line:nth-child(5) {
    font-size: 1.2em;
    color: #fff;
}

@keyframes legacyGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(26, 35, 126, 0.5));
        transform: scale(1.02);
    }
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(26, 35, 126, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(0, 188, 212, 0.5));
    }
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(26, 35, 126, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(0, 188, 212, 0.5));
    }
}

/* Remover pseudo-elementos do título */

/* Remover animação titleLine */

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: simpleFadeIn 1s ease forwards;
}

/* Remover bolinha do lado do texto */

/* Remover animação expeditionGlow */

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }
.title-line:nth-child(5) { animation-delay: 0.5s; }

/* Subtítulo - TEXTO BRANCO SIMPLES */
.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    z-index: 10;
    text-align: center;
}

/* Botão CTA - SEM ANIMAÇÕES */
.cta-button {
    background: #fff;
    border: 2px solid #fff;
    padding: 2rem 5rem;
    color: #000;
    font-weight: 900;
    font-size: 1.6rem;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 1;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Remover animações do botão */

/* Remover pseudo-elementos do botão */

/* Remover animação buttonRush */

@keyframes buttonPulse {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 
            0 15px 35px rgba(255, 255, 255, 0.4),
            0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 
            0 20px 45px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.5);
    }
}

@keyframes buttonShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.hero-content {
    text-align: center;
    z-index: 20;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }
.title-line:nth-child(5) { animation-delay: 0.5s; }

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

/* Remover definição duplicada do hero-subtitle */

.hero-description {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 1;
    z-index: 10;
    text-align: center;
    line-height: 1.4;
}


.vehicle-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 1;
    z-index: 10;
}

.vehicle-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.vehicle-item i {
    color: #fff;
    font-size: 1.2rem;
}

/* Botão de Vagas Disponíveis - Estilo Expedition */
.vagas-link {
    margin-bottom: 2rem;
    opacity: 1;
    z-index: 10;
}

.vagas-button {
    background: #fff !important;
    border: none !important;
    padding: 1.2rem 2rem !important;
    color: #000 !important;
    font-weight: 900 !important;
    border-radius: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    text-align: center !important;
    width: auto !important;
    min-width: 300px !important;
}

.vagas-button:hover {
    background: #000 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.vagas-button i {
    font-size: 1.1rem !important;
    color: inherit !important;
}

.vagas-button span {
    color: inherit !important;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    padding: 1rem 2rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #ff6b35;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
    transform: rotate(45deg);
}

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

.social-links {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 30;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Seção About - PARALLAX SUAVE */
.about {
    padding: 10rem 0;
    background: url('imagens/Background-sekai-atacama.png') center/cover;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    animation: sectionGlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes sectionGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordSlideIn 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.15s; }
.title-word:nth-child(3) { animation-delay: 0.2s; }
.title-word:nth-child(4) { animation-delay: 0.25s; }
.title-word:nth-child(5) { animation-delay: 0.3s; }
.title-word:nth-child(6) { animation-delay: 0.35s; }
.title-word:nth-child(7) { animation-delay: 0.4s; }
.title-word:nth-child(8) { animation-delay: 0.45s; }
.title-word:nth-child(9) { animation-delay: 0.5s; }

@keyframes wordSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-description p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}

/* Seção Expeditions - IMAGEM DA HOME */
.expeditions {
    padding: 8rem 0;
    background: url('imagens/fundo-piloto-expedicao-moto-2026.jpeg') center/cover;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.expeditions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.expeditions .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.expeditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Cards de Expedição - BRANCOS SIMPLES */
.expedition-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expedition-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.expedition-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    will-change: transform;
}

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

/* Optimize image loading */

.expedition-card[data-expedition="carretera"] .expedition-image {
    background: url('https://sekaiexperience.com/wp-content/uploads/2025/12/WALLPAPER-scaled.jpg') center/cover;
    background-attachment: scroll;
}

.expedition-card[data-expedition="canions"] .expedition-image {
    background: url('https://sekaiexperience.com/wp-content/uploads/2025/09/canions-viana-sekai-experience.png') center/cover;
    background-attachment: scroll;
}

.expedition-card[data-expedition="peru"] .expedition-image {
    background: url('https://sekaiexperience.com/wp-content/uploads/2025/08/Copilot_20250801_120502.png') center/cover;
    background-attachment: scroll;
}

.expedition-card[data-expedition="amazon"] .expedition-image {
    background: url('https://sekaiexperience.com/home/backup-home/assets/img/amazonia-2026.JPG') center/cover;
    background-attachment: scroll;
}

.expedition-card[data-expedition="cangaco"] .expedition-image {
    background: url('https://sekaiexperience.com/home/backup-home/assets/img/rota-cangaco-2025.JPG') center/cover;
    background-attachment: scroll;
}

.expedition-card[data-expedition="4x4"] .expedition-image {
    background: url('https://sekaiexperience.com/wp-content/uploads/2025/12/sekai-4x-4.png') center/cover;
    background-attachment: scroll;
}

.expedition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: background 0.3s ease;
}

.expedition-card:hover .expedition-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.expedition-overlay h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.launch-badge {
    background: #fff;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.expedition-info {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.info-item i {
    color: #fff;
    width: 20px;
}

.expedition-year {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin: 1rem 0;
}

/* Botões de Expedição - BRANCOS SIMPLES */
.expedition-button {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1.2rem;
    color: #000;
    font-weight: 900;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.expedition-button:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

/* Garantir que os links funcionem */
a.expedition-button {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

/* Seção Stats - PARALLAX SUAVE */
.stats-section {
    padding: 8rem 0;
    background: url('imagens/rota-cangaco-2025.JPG') center/cover;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Stats - NÚMEROS BRANCOS SIMPLES */
.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

/* Remover animação statPulse */

.stat-label {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.all-inclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.inclusive-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.inclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.inclusive-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.inclusive-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.inclusive-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fff, #ccc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #000;
}

.inclusive-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.inclusive-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Seção Contact - PARALLAX SUAVE */
.contact {
    padding: 8rem 0;
    background: url('imagens/amazonia-2026.JPG') center/cover;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-weight: 700;
    color: #fff;
}

/* Links de contato - manter cor branca */
.contact-link {
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0.8;
}

.contact-link:visited {
    color: #fff !important;
    text-decoration: none !important;
}

.contact-link:active {
    color: #fff !important;
    text-decoration: none !important;
}

.contact-link:focus {
    color: #fff !important;
    text-decoration: none !important;
}

/* Forçar cor branca em todos os estados do link */
a.contact-link {
    color: #fff !important;
    text-decoration: none !important;
}

a.contact-link:hover,
a.contact-link:visited,
a.contact-link:active,
a.contact-link:focus {
    color: #fff !important;
    text-decoration: none !important;
}

/* Regra global para seção de contato */
.contact a {
    color: #fff !important;
    text-decoration: none !important;
}

.contact a:hover,
.contact a:visited,
.contact a:active,
.contact a:focus {
    color: #fff !important;
    text-decoration: none !important;
}

/* Footer */
/* Seção Footer - PARALLAX SUAVE */
.footer {
    background: url('imagens/atacama-2026.JPG') center/cover;
    background-attachment: scroll;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: #999;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Remover estilos do texto de rolagem */

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 999;
    }
    
    .language-selector {
        position: relative;
        z-index: 1002;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .language-selector {
        margin-right: 0.5rem;
        display: flex !important;
        order: 2;
    }
    
    .lang-btn {
        width: 35px;
        height: 35px;
        padding: 0.3rem;
    }
    
    .hamburger {
        order: 3;
    }
    
    .nav-logo {
        order: 1;
    }
    
    /* Hero Section - Mobile Melhorado */
    .hero {
        padding: 2rem 1rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 0.9;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.1em;
        text-align: center;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .vehicle-info {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .vehicle-item {
        font-size: 0.7rem;
        gap: 0.3rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vehicle-item i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .vagas-button {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        min-width: auto !important;
        gap: 0.5rem !important;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        letter-spacing: 1px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .social-links {
        display: none;
    }
    
    /* About Section - Mobile */
    .about {
        padding: 4rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Expeditions Section - Mobile */
    .expeditions {
        padding: 4rem 1rem;
    }
    
    .expeditions h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .expeditions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expedition-card {
        padding: 1.5rem;
    }
    
    .expedition-card h3 {
        font-size: 1.3rem;
    }
    
    .expedition-card p {
        font-size: 0.9rem;
    }
    
    /* Stats Section - Mobile */
    .stats-section {
        padding: 4rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* All Inclusive Section - Mobile */
    .inclusive-section {
        padding: 4rem 1rem;
    }
    
    .inclusive-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .inclusive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inclusive-item {
        padding: 1.5rem;
    }
    
    .inclusive-item h3 {
        font-size: 1.2rem;
    }
    
    .inclusive-item p {
        font-size: 0.9rem;
    }
    
    /* Contact Section - Mobile */
    .contact {
        padding: 4rem 1rem;
    }
    
    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .scrolling-content span {
        font-size: 1rem;
    }
}

/* REGRA FINAL - FORÇAR COR BRANCA NOS LINKS DE CONTATO */
.contact-item a,
.contact-item .contact-link,
.contact .contact-link {
    color: #ffffff !important;
    text-decoration: none !important;
}

.contact-item a:hover,
.contact-item a:visited,
.contact-item a:active,
.contact-item a:focus,
.contact-item .contact-link:hover,
.contact-item .contact-link:visited,
.contact-item .contact-link:active,
.contact-item .contact-link:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .language-selector {
        margin-right: 0.3rem;
        gap: 0.3rem;
    }
    
    .lang-btn {
        width: 32px;
        height: 32px;
        padding: 0.25rem;
    }
    
    /* Hero Section - Mobile Pequeno Melhorado */
    .hero {
        padding: 1.5rem 0.5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 0.8rem;
    }
    
    .title-line {
        margin-bottom: 0.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.05em;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 0 0.3rem;
        line-height: 1.3;
    }
    
    .vehicle-info {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .vehicle-item {
        font-size: 0.6rem;
        gap: 0.2rem;
    }
    
    .vehicle-item i {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        gap: 0.3rem;
        letter-spacing: 0.5px;
        max-width: 250px;
    }
    
    .social-links {
        display: none;
    }
    
    .expeditions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inclusive-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inclusive-item {
        padding: 1rem;
    }
    
    .inclusive-item h3 {
        font-size: 1rem;
    }
    
    .inclusive-item p {
        font-size: 0.8rem;
    }
}
