/* ===== HERO SECTION - MODELO EXATO ===== */

/* Hero Principal */
.hero {
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* Conteúdo Hero */
.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Botões Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-primary {
    background: #F28C28;
    color: white;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
    background: #E67E22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}

.btn-outline {
    background: white;
    color: #F28C28;
    border: 2px solid #F28C28;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: #F28C28;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.3);
}

/* Container da Imagem Arredondada */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bus-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 24px;
    display: block;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Cards de Características */
.hero-features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #F28C28;
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.feature-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features-cards {
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-bus-image {
        max-width: 350px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
    }
    
    .hero-bus-image {
        max-width: 280px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        min-width: 200px;
        padding: 14px 24px;
    }
    
    .hero-bus-image {
        max-width: 250px;
    }
}
