/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1a1a; /* Fundo escuro global */
    color: #f4f4f4;
    overflow: hidden; /* Esconde a barra de rolagem padrão do body */
}

/* ---------------------------------
   Configuração do Scroll Automático (Snap)
-----------------------------------*/
.snap-container {
    height: 100vh; /* Altura total da tela */
    overflow-y: scroll;
    scroll-snap-type: y mandatory; /* Força a parada nas seções */
    scroll-behavior: smooth;
}

.snap-page {
    height: 100vh; /* Cada estágio ocupa 100% da tela */
    width: 100%;
    scroll-snap-align: start; /* Ponto de parada no topo */
    display: flex;
    flex-direction: column;
}

/* Estágio 1: Ajuste para alinhar o topo e centralizar o carrossel */
.stage-1 {
    background-color: #f4f4f4; /* Fundo claro na área do carrossel para contraste */
}

/* ---------------------------------
   Estilos do Estágio 1 (Topo e Carrossel)
-----------------------------------*/
.top-header {
    text-align: center;
    padding: 30px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.top-header h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ff9800; /* Laranja da marca */
}

.top-header p {
    font-size: 1.1rem;
    font-weight: 300;
}

.carousel-section {
    max-width: 1200px;
    margin: auto; /* Centraliza verticalmente o carrossel no espaço restante */
    padding: 20px;
    width: 100%;
}

.swiper {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------------------------
   Estilos do Estágio 2 (Rodapé)
-----------------------------------*/
.stage-2 {
    background-color: #1a1a1a;
    justify-content: center; /* Centraliza o rodapé na tela preta */
    align-items: center;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 40px;
    background-color: #1a1a1a;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.brand-col h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.brand-col .subtitle {
    color: #ff9800;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #ff9800;
    color: #1a1a1a;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.info-block {
    margin-bottom: 25px;
}

.info-block h3 {
    color: #ff9800;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-block p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 1rem;
}

/* ---------------------------------
   Botões Flutuantes
-----------------------------------*/
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.whatsapp { background-color: #25d366; }
.phone { background-color: #007bff; }

/* ---------------------------------
   Responsividade (Celular)
-----------------------------------*/
@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        padding: 20px;
    }
    .top-header h1 { font-size: 2rem; }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}