﻿/* Layout */

/* Layout */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a0c0c 100%);
    position: relative;
    overflow: hidden;
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@keyframes carFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -55%) rotate(-2deg); }
}


.window {
    position: absolute;
    top: 3px;
    left: 15px;
    width: 50px;
    height: 10px;
    background: #87CEEB;
    border-radius: 3px;
}

.headlight {
    position: absolute;
    top: 8px;
    right: 5px;
    width: 8px;
    height: 5px;
    background: yellow;
    border-radius: 2px;
}

.spoiler {
    position: absolute;
    top: -5px;
    left: 5px;
    width: 10px;
    height: 5px;
    background: #333;
}

.wheels {
    position: absolute;
    bottom: -5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wheel {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #666;
}

.smoke {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 30px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: smoke 1.5s ease-out infinite;
}

@keyframes smoke {
    0% { 
        opacity: 0.3;
        transform: scale(0.5);
    }
    100% { 
        opacity: 0;
        transform: scale(2) translateX(20px);
    }
}

.track-element {
    position: absolute;
    width: 8px;
    height: 15px;
    background: orange;
    border-radius: 2px;
}

.cone1 { top: 10%; left: 50%; transform: translateX(-50%); }
.cone2 { top: 50%; right: 10%; transform: translateY(-50%); }
.cone3 { bottom: 10%; left: 50%; transform: translateX(-50%); }

.track-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.track-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.3;
}

.track-line:nth-child(1) { transform: rotate(0deg); }
.track-line:nth-child(2) { transform: rotate(120deg); }
.track-line:nth-child(3) { transform: rotate(240deg); }

.text-content {
    color: var(--light-color);
}

.text-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-message {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 40, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.status-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--grey-color);
}

.progress-section {
    margin-bottom: 40px;
}

.progress-section h3 {
    margin-bottom: 15px;
    color: var(--light-color);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--medium-dark-color);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 5px;
    width: 0%;
    animation: fillProgress 2s ease-out forwards;
}

@keyframes fillProgress {
    to { width: 75%; }
}

.progress-text {
    font-size: 0.9rem;
    color: var(--grey-color);
}

.countdown {
    margin-bottom: 40px;
}

.countdown h3 {
    margin-bottom: 20px;
    color: var(--light-color);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.countdown-item {
    text-align: center;
    padding: 15px;
    background: var(--medium-dark-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 40, 0, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--grey-color);
    text-transform: uppercase;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

/* Formulário */
.additional-info {
    padding: 80px 0;
    background: var(--medium-dark-color);
}

.additional-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--light-color);
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-color);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--light-color);
}

.feature-card p {
    color: var(--grey-color);
    line-height: 1.6;
}


@media (max-width: 768px) {
    .coming-soon {
        padding: 100px 0 60px;
    }
    
    .text-content h1 {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .status-message {
        flex-direction: column;
        text-align: center;
    }
    
    .status-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        grid-template-columns: 1fr;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}


.car-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.race-track {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    overflow: hidden;
}

.road {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 80px;
    background: #333;
    transform: translateY(-50%);
}

.road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        yellow 0%,
        yellow 10%,
        transparent 10%,
        transparent 20%
    );
    transform: translateY(-50%);
}

.road-curve {
    position: absolute;
    width: 150%;
    height: 100%;
    background: #333;
    border-radius: 50%;
}

.curve-1 {
    top: -60%;
    left: -25%;
    animation: curveMove 8s ease-in-out infinite;
}

.curve-2 {
    top: 60%;
    right: -25%;
    animation: curveMove 8s ease-in-out infinite 4s;
}

@keyframes curveMove {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(50px) rotate(5deg); }
}

.rally-car {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    animation: carDrift 6s ease-in-out infinite;
    z-index: 10;
}

@keyframes carDrift {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(0deg);
        left: 20%;
    }
    25% { 
        transform: translateY(-50%) translateX(200px) rotate(-5deg);
        left: 40%;
    }
    50% { 
        transform: translateY(-50%) translateX(400px) rotate(8deg);
        left: 60%;
    }
    75% { 
        transform: translateY(-50%) translateX(200px) rotate(-3deg);
        left: 40%;
    }
}

.car-body {
    position: relative;
    width: 120px;
    height: 40px;
}

.car-top {
    position: absolute;
    top: 0;
    left: 15px;
    width: 90px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.car-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.car-details {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.window {
    position: absolute;
    top: 5px;
    left: 20px;
    width: 70px;
    height: 12px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 4px;
}

.headlight {
    position: absolute;
    top: 12px;
    right: 8px;
    width: 12px;
    height: 8px;
    background: yellow;
    border-radius: 3px;
    box-shadow: 0 0 10px yellow;
}

.spoiler {
    position: absolute;
    top: -8px;
    left: 10px;
    width: 15px;
    height: 8px;
    background: #333;
    border-radius: 3px 3px 0 0;
}

.wheels {
    position: absolute;
    bottom: -8px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.wheel {
    width: 18px;
    height: 18px;
    background: #333;
    border-radius: 50%;
    border: 3px solid #666;
    position: relative;
    animation: wheelRotate 1s linear infinite;
}

@keyframes wheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Efeitos */
.drift-smoke {
    position: absolute;
    bottom: 5px;
    left: -30px;
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(5px);
    animation: smokeDrift 6s ease-in-out infinite;
}

.drift-smoke-2 {
    animation-delay: 0.5s;
    left: -40px;
    opacity: 0.7;
}

@keyframes smokeDrift {
    0%, 100% { 
        opacity: 0.1;
        transform: scale(0.5) translateX(0);
    }
    25% { 
        opacity: 0.3;
        transform: scale(1) translateX(-20px) rotate(-10deg);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.5) translateX(-40px) rotate(15deg);
    }
    75% { 
        opacity: 0.3;
        transform: scale(1) translateX(-20px) rotate(-5deg);
    }
}

.obstacle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: orange;
    border-radius: 2px;
    animation: obstacleBounce 3s ease-in-out infinite;
}

.obstacle-1 { top: 45%; left: 30%; animation-delay: 0s; }
.obstacle-2 { top: 55%; left: 60%; animation-delay: 1.5s; }
.obstacle-3 { top: 48%; left: 80%; animation-delay: 3s; }

@keyframes obstacleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tire-mark {
    position: absolute;
    width: 80px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(2px);
    animation: tireMarkFade 6s ease-in-out infinite;
}

.tire-mark-1 { top: 48%; left: 25%; animation-delay: 0s; }
.tire-mark-2 { top: 52%; left: 45%; animation-delay: 2s; }
.tire-mark-3 { top: 49%; left: 65%; animation-delay: 4s; }

@keyframes tireMarkFade {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 0.3; transform: scaleX(1); }
}

.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.speed-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0;
    animation: speedLine 6s ease-in-out infinite;
}

.speed-line:nth-child(1) { left: 25%; animation-delay: 0s; }
.speed-line:nth-child(2) { left: 50%; animation-delay: 2s; }
.speed-line:nth-child(3) { left: 75%; animation-delay: 4s; }

@keyframes speedLine {
    0%, 100% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 0.5; transform: translateY(100%); }
}

