/* --- RESET E TRAVA DE TELA --- */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; /* Isso impede o site de balançar para os lados */
    background-color: #fdfbf7;
    font-family: 'Roboto', sans-serif;
    color: #2c1e14;
}

* {
    box-sizing: border-box;
}

/* --- HEADER ADAPTADO --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.header-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #0c4590;
    margin: 0;
    flex: 1 1 300px;
}

.animacao-box {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container h2 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    color: #0c4590;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    height: 160px;
    margin: 0;
}

.header-container h2 span {
    position: absolute;
    white-space: nowrap;
    animation: blurCiclo 4.0s infinite ease-in-out;
}

.header-container h2::after {
    content: "";
    position: absolute;
    width: 130px; 
    height: 130px;
    background-image: url('icone\ sebo\ .png'); 
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0;
    filter: blur(15px);
    animation: blurCiclo 4.0s infinite ease-in-out 2.0s;
}

@keyframes blurCiclo {
    0%, 100% { opacity: 0; filter: blur(10px); transform: scale(0.95); }
    15%, 45% { opacity: 1; filter: blur(0px); transform: scale(1); }
    55% { opacity: 0; filter: blur(10px); transform: scale(0.95); }
}

/* --- GALERIA FIXA --- */
.galeria-secao {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.imgg {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    width: 100%;
    /* Esconde barra de rolagem */
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch; /* Melhora o deslize no iPhone */
}

.imgg::-webkit-scrollbar { display: none; }

.imgg img {
    width: 280px; /* Largura fixa para manter o padrão */
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* --- BOTÕES DE NAVEGAÇÃO --- */
.btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.655);
    color: rgba(0, 0, 0, 0.919);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.prev { left: 10px; }
.next { right: 10px; }

/* --- CONVERSÃO --- */
.secao-conversao {
    padding: 40px 20px;
    width: 100%;
}

.cta-card {
    background: white;
    padding: 35px 20px;
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.btn-marketing-direto {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 35px;
    background: #28a745;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

/* --- AJUSTE FINAL MOBILE --- */
@media (max-width: 600px) {
    .header-container { padding: 30px 15px; text-align: center; }
    .header-container h1 { flex: 1 1 100%; }
    .imgg img { width: 240px; height: 320px; }
    .btn-nav { width: 35px; height: 35px; opacity: 0.9; }
}