/*
 * Arquivo: styles.css
 * Versão: v1.0.5 (Ajuste Final da Proporção do Slideshow: 500px x 650px)
 * Data: 10/11/2025
 */

/* Configurações básicas e tipografia */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    padding-top: 50px; /* Espaço para a barra fixa superior */
    padding-bottom: 0;
    min-height: 100vh;
    margin: 0;
}

/* Reset básico para o container centralizado */
.container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaçamento entre os elementos (logo, slideshow, botões) */
    width: 90%;
    max-width: 500px;
    padding: 20px 20px 40px 20px; /* Padding ajustado */
    align-items: center;
    margin: 0 auto;
}

/* --- BARRA SUPERIOR FIXA (Top Bar) --- */
.top-bar {
    width: 100%;
    height: 50px;
    background-color: #e74c3c; /* Vermelho */
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-bar p {
    margin: 0;
    color: white;
    animation: blink 1.5s linear infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* --- LOGO --- */
.logo {
    max-width: 180px;
    max-height: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); <-- Removido */
}

/* --- INFORMAÇÕES DA LOJA --- */
.info-text {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-text .line1 {
    font-weight: 700;
    font-size: 1.3em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.info-text .line2 {
    font-size: 1.1em;
    color: #666;
    margin: 5px 0 0 0;
}
.quality-icon {
    color: #fbc02d; /* Cor dourada para o ícone */
    font-size: 0.9em;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
}

/* --- SLIDESHOW STYLES (PROMOÇÕES) --- */
.slideshow-container {
    max-width: 500px;
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px; /* Aplicação da borda arredondada no container */
    
    /* CORREÇÃO CRÍTICA CLS/LAYOUT SHIFT: Reserva o espaço (650px de altura para 500px de largura = 130%) */
    padding-bottom: 130%; /* NOVO VALOR: Altura será 130% da largura (proporção 500x650) */
    height: 0; /* Necessário para o hack funcionar */
}
/* CORREÇÃO CRÍTICA: height: auto para responsividade */
.slideshow-container img {
    /* Adicionado posicionamento absoluto para preencher o padding reservado */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Preenche 100% da altura reservada (padding-bottom: 130%) */
    object-fit: cover;
    display: block;
}
.mySlides { 
    display: none; 
    width: 100%; /* Garante que o slide ocupe toda a largura */
    height: 100%; /* Garante que o slide ocupe toda a altura */
    position: absolute; /* Deve ser absoluto para se adequar ao container fixo */
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px 10px;
    margin-top: -30px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px; /* Adicionado para consistência visual */
    z-index: 10; /* Garante que esteja acima das imagens */
}
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev { left: 0; border-radius: 0 3px 3px 0; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.7); }

.dot-container { 
    text-align: center; 
    padding: 10px 0 0 0; 
    position: absolute; /* Para que os dots não fiquem fora da área reservada */
    bottom: -35px; /* Move para fora, logo abaixo do carrossel */
    left: 0;
    right: 0;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover { background-color: #717171; }
.fade { animation-name: fade; animation-duration: 2.5s; }
@keyframes fade { from {opacity: .4} to {opacity: 1} }

/* Ajustar margem do container para compensar os dots */
.container {
    padding-bottom: 60px; /* Aumenta o padding inferior para caber os dots */
}

/* --- BOTÕES GERAIS STYLES --- */
.button {
    text-decoration: none;
    color: #ffffff;
    padding: 25px 10px; /* Padding ajustado */
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s; /* Transição para sombra e fundo */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}
.button i:not(.fa-whatsapp) {
    font-size: 40px;
    margin-bottom: 5px;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Botões Grandes: WhatsApp e Catálogo */
.whatsapp {
    background-color: rgba(37, 211, 102, 1.0);
    font-size: 20px; /* Fonte base ajustada */
}
.whatsapp .fa-whatsapp { margin-bottom: 10px; font-size: 90px; }
.whatsapp .numero {
    font-size: 1.1em; /* Relativo à fonte base (22px) */
    font-weight: 700;
    line-height: 1.2;
}

.catalog-button {
    background-color: #075E54;
    animation: pulse-catalog 1.5s infinite;
    font-size: 24px;
}
.catalog-button .fa-book-open {
    font-size: 90px;
    margin-bottom: 10px;
}

@keyframes pulse-catalog {
    0% {
        box-shadow: 0 0 0 0 rgba(7, 94, 84, 0.6);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(7, 94, 84, 0);
    }
    100% { box-shadow: 0 0 0 0 rgba(7, 94, 84, 0); }
}

/* Botões Sociais e Maps */
.facebook, .instagram, .maps {
    padding: 20px 10px;
}
.facebook { background-color: rgba(24, 119, 242, 0.9); }
.instagram {
    /* Cor principal do Instagram: Roxo/Rosa (Gradiente) */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0.9;
}
.maps { background-color: rgba(234, 67, 53, 0.9); }

.facebook i, .instagram i, .maps i {
    font-size: 30px;
    margin-bottom: 3px;
}
/* -------------------------------------------------------------------------- */


/* --- ESTILOS PARA CARROSSEL DE COMENTÁRIOS --- */
.review-carousel {
    width: 100%;
    margin: 15px 0 20px 0;
    padding: 20px 10px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: relative;
}

.review-carousel .title-review { font-size: 1.2em; font-weight: 700; color: #333; margin: 0 0 15px 0; }
.review-slides-container { width: 100%; overflow: hidden; margin-bottom: 15px; }
.review-slide { display: none; padding: 0 25px; }
.review-slide .stars { font-size: 24px; margin-bottom: 8px; color: #fbc02d; }
.review-slide .stars i { margin: 0 1px; }
.review-slide .comment { font-style: italic; font-size: 1em; color: #555; margin: 0 0 5px 0; line-height: 1.4; }
.review-slide .author { font-size: 0.9em; font-weight: 500; color: #888; margin: 0; }

/* Flechas Comentários */
.prev-review, .next-review {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -20px;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s ease;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.next-review { right: 5px; }
.prev-review { left: 5px; }
.prev-review:hover, .next-review:hover { background-color: rgba(0, 0, 0, 0.1); }

/* Dots Comentários */
.review-dot-container { margin-bottom: 20px; text-align: center; }
.review-dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.review-dot.active, .review-dot:hover { background-color: #717171; }

/* Botão CTA Review */
.review-button {
    background-color: #4285F4;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    transition: background-color 0.2s;
}
.review-button:hover { background-color: #3c77e2; }

/* --- SELO DE SITE SEGURO --- */
.security-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 500px;
    padding: 10px;
    margin: 15px auto 25px auto;
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    color: #388e3c;
    font-size: 0.9em;
    font-weight: 500;
    box-sizing: border-box;
}
.security-seal i {
    margin-right: 8px;
    font-size: 1.1em;
}


/* --- ESTILOS DO RODAPÉ (FOOTER) --- */
footer {
    width: 100%;
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
}
footer p { margin: 3px 0; }
footer .address { font-size: 0.9em; font-weight: 500; color: #bdc3c7; }
```eof

Pronto! O arquivo `styles.css` com o ajuste de altura e a numeração de versão **v1.0.5** foi reenviado.