/* Hero Section */
.hero-futuro {
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.6)),
        url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 280px 0 100px;
    min-height: 80vh;
}

.hero-futuro h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-futuro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Benefícios */
.beneficios-section {
    padding: 60px 0;
    background-color: var(--light);
}

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

.beneficio-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Produtos */
.produtos-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

@media (max-width: 600px) {
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

.produto-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.produto-img {
    height: 250px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.produto-card:hover .produto-img img {
    transform: scale(1.05);
}

.produto-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.produto-content p {
    margin-bottom: 20px;
    color: #555;
}

.vantagens-list {
    margin: 20px 0;
}

.vantagens-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.vantagens-list li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
    list-style-type: none;
}

/* Simulador */
.simulador-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.simulador-container {
    background: var(--white);
    color: var(--dark);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.simulador-container h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.simulador-container .btn {
    border: none !important;
    box-shadow: none !important;
    width: auto;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    letter-spacing: normal !important;
    cursor: pointer !important;
}

.simulador-container .btn:hover {
    background-color: #e65c00 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Depoimentos */
.depoimentos-section {
    background-color: var(--light);
    padding: 80px 0;
}

.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.depoimento-card:before {
    content: '"';
    font-size: 80px;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.depoimento-text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.depoimento-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(255, 102, 0, 0.9), rgba(255, 102, 0, 0.9)),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-futuro {
        padding: 150px 0 80px;
    }

    .hero-futuro h1 {
        font-size: 2rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .simulador-container {
        padding: 30px 20px;
    }
}
