/* Estilos para a seção Hero */
.hero {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    padding: 80px 0 60px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, #0066cc 30%, #0052a3 100%);
    transform: skewY(-3deg);
    transform-origin: bottom;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #0066cc;
    margin-right: 10px;
    font-size: 1.2em;
}

.feature-item span {
    color: #444;
    font-size: 1.1em;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #0066cc, #0052a3);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.secondary-button {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.main-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.badge {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
}

.badge:nth-child(1) {
    top: 20%;
    left: -10%;
    animation-delay: 1s;
}

.badge:nth-child(2) {
    bottom: 30%;
    right: -5%;
    animation-delay: 2s;
}

.badge i {
    color: #0066cc;
    font-size: 1.2em;
}

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

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .feature-item {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .main-illustration {
        max-width: 400px;
    }

    .badge {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .main-illustration {
        max-width: 300px;
    }
}
