/* Classe inicial para ocultar as seções */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px); /* Move o elemento 50px para baixo */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Suavidade da animação */
}

/* Classe ativada quando o elemento está visível */
.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0); /* Restaura a posição original */
}




/* Estilo básico para o layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Reseta o padding e margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo básico para o body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header - logo à esquerda */
header {
    background-color: #009688;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

header .logo img {
    width: 150px; /* Ajuste o tamanho do logo conforme necessário */
    height: auto;
}

/* Seção Hero */
.hero1 {
    background-image: url('../assets/img/topo-01.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; /* Para garantir que o conteúdo não fique coberto pelo header fixo */
}
.hero-varejo {
    background-image: url('../assets/img/topo1.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; /* Para garantir que o conteúdo não fique coberto pelo header fixo */
}

.hero1 .container {
    width: 80%;
    max-width: 1200px;
    text-align: center;
}

/* Título e descrição na seção Hero */
.hero-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero1 p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Botões quadrados centralizados */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.button {
    width: 150px;
    height: 150px;
    background-color: #009688;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Remove o sublinhado padrão */
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: #ADD8E6;
    transform: scale(1.1);
    text-decoration: none; /* Garante que não haverá sublinhado no hover */
}


/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero1 p {
        font-size: 16px;
    }

    .button {
        width: 120px;
        height: 120px;
        font-size: 16px;
    }
}

/* Section pacotes */
section.pacotes {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section.pacotes h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #009688;
}

section.pacotes ul {
    list-style-type: none;
    padding: 0;
}

section.pacotes ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

section.pacotes ul li strong {
    font-weight: bold;
}

/* Botão Solicite Agora */
section.pacotes a.btn {
    background-color: #009688;
    color: #fff;
    font-size: 18px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

section.pacotes a.btn:hover {
    background-color: #00796b;
}

/* Layout responsivo */
@media (max-width: 768px) {
    header.hero h1 {
        font-size: 28px;
    }

    header.hero p {
        font-size: 16px;
    }

    section.pacotes h2 {
        font-size: 24px;
    }

    section.pacotes ul li {
        font-size: 14px;
    }

    section.pacotes a.btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Animação de entrada das seções */
section.pacotes {
    opacity: 0;
    transform: translateY(50px);
}

section.pacotes.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ScrollReveal: Exibir a seção com animação */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}
