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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Top Bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    min-height: 45px;
}

.top-bar .row {
    min-height: 25px;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    height: 25px;
    line-height: 1;
}

.contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 8px;
    color: #e63946;
}

.social-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    line-height: 1;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #e63946;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 80px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e63946 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-background {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e63946;
    border-color: #e63946;
}

.btn-primary:hover {
    background-color: #d62d3a;
    border-color: #d62d3a;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* Hero Badges */
.hero-badges {
    background: rgba(255,255,255,0.95);
    padding: 30px 0;
    backdrop-filter: blur(10px);
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-item i {
    font-size: 2rem;
    color: #e63946;
    margin-right: 15px;
}

.badge-item span {
    font-weight: 600;
    color: #333;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* Como Funciona Section */
.como-funciona {
    background: #fff;
}

.step-item {
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-icon {
    margin: 30px 0 20px;
}

.step-icon i {
    font-size: 3rem;
    color: #e63946;
}

.step-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.step-item p {
    color: #666;
    font-size: 1rem;
}

/* Motos Disponíveis Section */
.motos-disponiveis {
    background: #f8f9fa;
}

.moto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.moto-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moto-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.moto-info {
    padding: 25px;
}

.moto-info h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.moto-year {
    color: #666;
    margin-bottom: 15px;
}

.moto-details {
    margin-bottom: 15px;
}

.min-age {
    color: #666;
    font-size: 0.9rem;
}

.min-age i {
    color: #e63946;
    margin-right: 5px;
}

.moto-price {
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e63946;
}

.price small {
    font-size: 0.8rem;
    color: #666;
}

.moto-buttons {
    display: flex;
    gap: 10px;
}

.moto-buttons .btn {
    flex: 1;
    border-radius: 25px;
    font-weight: 600;
}

/* Preços Transparentes Section */
.precos-transparentes {
    background: #fff;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    border-color: #e63946;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #e63946;
    background: linear-gradient(135deg, #e63946, #d62d3a);
    color: white;
    transform: scale(1.05);
}

.pricing-header h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 20px;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-body p {
    margin-bottom: 25px;
    color: #666;
}

.pricing-card.featured .pricing-body p {
    color: rgba(255,255,255,0.9);
}

/* Porque Alugar Section */
.porque-alugar {
    background: #f8f9fa;
}

.advantage-item {
    padding: 30px 20px;
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 3rem;
    color: #e63946;
}

.advantage-item h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.advantage-item p {
    color: #666;
}

/* Reserva Rápida Section */
.reserva-rapida {
    background: linear-gradient(135deg, #333, #000);
    color: white;
}

.reserva-form {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.reserva-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.reserva-form .form-control,
.reserva-form .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.reserva-form .form-control:focus,
.reserva-form .form-select:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
}

.footer h5 {
    color: #e63946;
    margin-bottom: 20px;
}

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

.footer a:hover {
    color: #e63946;
}

.footer .social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .badge-item {
        margin-bottom: 15px;
    }
    
    .badge-item i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .moto-buttons {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }
    
    .social-links a {
        margin-left: 10px;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.badge-item {
    animation: fadeInUp 0.6s ease-out;
}

.step-item {
    animation: fadeInUp 0.8s ease-out;
}

.moto-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
    color: #e63946 !important;
}

.bg-primary {
    background-color: #e63946 !important;
}

.border-primary {
    border-color: #e63946 !important;
}