@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700&display=swap');

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo do corpo */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
    padding: 0;
}

/* Efeito de fundo */
#lava-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Estilo das seções (as faixas) */
section {
    padding: 40px 10px;
    text-align: center;
}

.hero-section,
.media-section,
.sales-pitch-section,
.mockup-section,
.unique-section,
.imagine-section,
.price-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    margin: 40px auto;
    max-width: 900px;
    padding: 40px;
}

/* Imagem de Destaque no Topo */
.top-image-section {
	padding: 30px;
	margin-bottom: 5px; /* Adiciona espaçamento vertical na parte de baixo */
}

.top-image-container {
    max-width: 900px;
    margin: 0 auto;
}

.top-image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    display: block;
    margin: 0 auto;
}

/* Cabeçalho / Seção Principal */
.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #25F4EE;
    max-width: 600px;
    margin: 0 auto 30px;
}
.scroll-down-arrow {
    margin-top: 20px;
    font-size: 2.5rem;
    color: #25F4EE;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.intro-text {
    font-size: 1.2rem;
    color: #E5E7EB;
    max-width: 700px;
    margin: 0 auto 15px;
}
.highlight {
    font-size: 1.5rem;
    color: #FE2C55;
    text-shadow: 1px 1px 5px rgba(254, 44, 85, 0.4);
}

/* Conteúdo Principal */
.mockup {
    text-align: center;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));
}
.mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transform: rotateY(5deg);
    transition: transform 0.5s ease;
}
.mockup img:hover {
    transform: rotateY(0deg) scale(1.02);
}

/* Estilo dos Títulos */
h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #FE2C55;
    margin: 30px 0 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}
h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: rgba(254, 44, 85, 0.3);
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Lista de benefícios */
ul {
    margin: 15px auto 20px;
    list-style: none;
    max-width: 600px;
    text-align: left;
}
ul li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}
ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.4rem;
}

/* Botão CTA (Call to Action) */
.cta {
    text-align: center;
    margin: 40px 0;
}
.cta a {
    display: inline-block;
    background: linear-gradient(45deg, #FE2C55, #D81B4C);
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    box-shadow: 0 5px 15px rgba(254, 44, 85, 0.4);
}
.cta a:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 8px 8px 20px rgba(254, 44, 85, 0.6);
}

/* Estilo da Seção "Decida Hoje" */
.decision-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
    margin: 0;
    border-radius: 0;
    color: #000000;
}
.decision-section h2 {
    font-size: 3rem;
    color: #FE2C55;
    text-shadow: none;
}
.decision-section h2::after {
    background: rgba(254, 44, 85, 0.3);
}
.decision-section .question-box {
    background: none;
    border: none;
    box-shadow: none;
    color: #000000;
    font-size: 1.2rem;
    margin: 10px auto;
    max-width: 700px;
}
.decision-section .question-box p {
    color: #000000;
}
.decision-section .question-box strong {
    color: #FE2C55;
}
.decision-section .cta a {
    background: #25F4EE;
    color: #000000;
    box-shadow: 0 5px 15px rgba(37, 244, 238, 0.4);
}
.decision-section .cta a:hover {
    box-shadow: 0 8px 20px rgba(37, 244, 238, 0.6);
}

/* Estilo das Novas Páginas (Privacidade e Termos) */
.legal-page-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    margin: 60px auto 120px;
    max-width: 900px;
    padding: 40px;
    text-align: left;
}
.legal-page-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #FFD600;
    text-align: center;
    margin-bottom: 30px;
}
.legal-page-section p {
    margin-bottom: 20px;
    text-indent: 10px;
}
.legal-page-section strong {
    color: #25F4EE;
}

/* Estilo do Botão Voltar para Home fixo */
.fixed-home-button {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: #FFD600;
    color: #000000;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 214, 0, 0.4);
    z-index: 99;
}
.fixed-home-button:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.6);
}
.fixed-home-button i {
    margin-right: 10px;
}

/* Estilo do botão de voltar ao topo fixo */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25F4EE;
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Estilo do Rodapé */
footer {
    background: #111111;
    padding: 60px 20px;
    color: #AAAAAA;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.footer-column {
    margin-bottom: 30px;
    width: 100%;
}
footer h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer li {
    margin-bottom: 10px;
}
footer a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}
footer a:hover {
    color: #25F4EE;
}
footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
footer i {
    margin-right: 8px;
    color: #FE2C55;
}

/* Otimização para telas menores (celulares) */
@media (min-width: 769px) {
    .footer-column {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-section,
    .media-section,
    .sales-pitch-section,
    .mockup-section,
    .unique-section,
    .imagine-section,
    .price-section {
        margin: 20px auto;
        padding: 25px 15px;
    }
}
