/* --- 1. CONFIGURAÇÕES GERAIS --- */
body {
    /* Fundo em off-white para reduzir o cansaço visual */
    background-color: #faf9f6; 
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Detalhe de iluminação de fundo - Tom pêssego suave para acolhimento */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(212, 163, 115, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* --- 2. BANNER RESPONSIVO --- */
.admin-banner {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px;
    /* Gradiente: Verde Chá para Bege Areia (Equilíbrio e Terra) */
    background: linear-gradient(135deg, #d4e0d9 0%, #e9ecef 100%);
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(107, 114, 128, 0.08);
    position: relative;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-sizing: border-box;
}

.admin-content h1 {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0;
    /* Verde Floresta Profundo (Sapiência e Calmaria) */
    color: #2d4a3e;
}

.admin-description {
    flex: 1;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    /* Cinza quente para leitura confortável */
    color: #5c5c5c;
    font-weight: 500;
}

/* --- 3. CARROSSEL --- */
.imgg img {
    flex: 0 0 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 25px !important;
    /* Sombra mais suave, menos "pesada" */
    box-shadow: 0 10px 20px rgba(45, 74, 62, 0.1); 
    transition: all 0.4s ease;
    cursor: pointer;
    scroll-snap-align: center;
    /* Filtro leve para deixar as imagens em harmonia */
    filter: sepia(10%) contrast(95%);
}

.imgg img:hover { 
    transform: translateY(-10px); 
    filter: sepia(0%) contrast(100%);
}

/* --- 4. SETAS --- */
.seta-decorativa {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    /* Marrom terracota suave */
    color: rgba(142, 125, 108, 0.4);
    z-index: 10;
    pointer-events: none;
}

/* --- 5. GRID DE BOTÕES (Sugestão de cor para os botões) --- */
/* Adicione esta classe se quiser que os botões sigam o estilo */
.botao-autoajuda {
    background-color: #8e7d6c;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    transition: background 0.3s;
}

.botao-autoajuda:hover {
    background-color: #2d4a3e;
}
/* --- 3. CARROSSEL (SCROLL HORIZONTAL RESTAURADO) --- */
.carrossel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.imgg {
    display: flex;
    overflow-x: auto; /* Habilita o arrastar/scroll */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 50px;
    
    /* Esconde a barra de rolagem mas mantém a função */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.imgg::-webkit-scrollbar { 
    display: none; /* Chrome/Safari */
}

.imgg img {
    flex: 0 0 240px; /* Mantém o tamanho fixo para permitir o scroll */
    height: 320px;
    object-fit: cover;
    border-radius: 25px !important;
    box-shadow: 0 10px 20px rgba(45, 74, 62, 0.1); 
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    scroll-snap-align: center;
    filter: sepia(10%) contrast(95%);
}

.imgg img:hover { 
    transform: scale(1.05); 
    filter: sepia(0%) contrast(100%);
}

/* --- 4. SETAS SOBRE AS IMAGENS (RESTAURADAS) --- */
.seta-decorativa {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(142, 125, 108, 0.5); /* Cor terracota suave */
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.seta-esq { left: 10px; animation: moverEsq 1.5s infinite ease-in-out; }
.seta-dir { right: 10px; animation: moverDir 1.5s infinite ease-in-out; }

@keyframes moverEsq {
    0%, 100% { transform: translate(0, -50%); opacity: 0.3; }
    50% { transform: translate(-10px, -50%); opacity: 0.8; }
}

@keyframes moverDir {
    0%, 100% { transform: translate(0, -50%); opacity: 0.3; }
    50% { transform: translate(10px, -50%); opacity: 0.8; }
}
/* --- 7. SEÇÃO DE CHAMADA PARA AÇÃO (COMPRA) --- */
.compra {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.compra h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #2d4a3e; /* Verde escuro (o mesmo do banner) */
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-autoajuda {
    display: inline-block;
    padding: 18px 45px;
    background-color: #8e7d6c; /* Terracota suave */
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px; /* Botão arredondado traz sensação de suavidade */
    box-shadow: 0 10px 20px rgba(142, 125, 108, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-autoajuda:hover {
    background-color: #2d4a3e; /* Muda para o verde ao passar o mouse */
    transform: translateY(-3px); /* Leve flutuação */
    box-shadow: 0 15px 30px rgba(45, 74, 62, 0.3);
}

.btn-autoajuda:active {
    transform: translateY(-1px);
}