/* Hero Section - Nova identidade baseada no banner */
.hero {
    background: linear-gradient(135deg, rgba(0, 82, 163, 0.95), rgba(0, 0, 255, 0.9)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(5px);
}

.hero-highlights ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    text-align: left;
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
}

.hero-highlights li i {
    color: var(--accent);
    font-size: 1.5rem;
    min-width: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-info {
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.contact-info i {
    font-size: 1.5rem;
}