/* style.css */

/* Reset básico */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    background: url('images/hero_2.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Box preto com opacidade */
}

.hero .content-box {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    max-width: 900px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
    margin-top: 15px;
}

/* Seções */
section {
    padding: 60px 0;
}

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

section h5 {
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: bold;
}

section p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Alternância de fundo */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* Listas */
ul, ol {
    padding-left: 20px;
}

ul li, ol li {
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 40px 15px;
    }
}


/* Seção Especial de Oferta com Degradê */
.offer-section {
    background: linear-gradient(135deg, #0C111A, #05A1D3);
    color: white;
}

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

.offer-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.offer-section .btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
}

.offer-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
