/* =======================
   RESET E BASE
======================= */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* ---- Background real papel ---- */
body {
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("paper.jpg") center/cover no-repeat;
    filter: brightness(0.70) opacity(0.70);
    z-index: -1;
}



/* =======================
   HEADER
======================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, #e3aca0, #c56f5b 40%, #cf7c67);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    transition: 0.25s;
    z-index: 999;
    color: #fff;
}
header.shrink { padding: 5px 20px; }

header .logo img {
    height: 55px;
    transition: 0.25s;
}
header.shrink .logo img { height: 40px; }

header nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 20px;
}
header nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}



/* =======================
   LOGIN NO MENU
======================= */
.login-box {
    display: flex;
    align-items: center;
}
.login-box form {
    display: flex;
    gap: 8px;
}
.login-inputs {
    display: flex;
    flex-direction: none;
    gap: 6px;
}
.login-box input {
    padding: 6px 8px;
    width: 150px;
    border-radius: 5px;
    border: none;
}
.login-box button {
    padding: 8px 12px;
    background: #fff;
    color: #c56f5b;
    font-weight: bold;
    border: none;
    border-radius: 5px;
}



/* =======================
   BANNER
======================= */
.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 88px;
}
.carousel { width: 500%; height: 100%; display: flex; animation: slide 25s infinite; }
.carousel img { width: 100%; height: 100vh; object-fit: cover; }

@keyframes slide {
    0%,20%{margin-left:0}
    25%,40%{margin-left:-100%}
    45%,60%{margin-left:-200%}
    65%,80%{margin-left:-300%}
    85%,100%{margin-left:-400%}
}



/* =======================
   SEÇÕES
======================= */
.section { padding: 80px 10%; }
.section h2 { font-size: 32px; margin-bottom: 20px; }



/* =======================
   SERVIÇOS
======================= */
.servicos-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.servico-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}



/* =======================
   FORMULÁRIO DE CONTATO
======================= */
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffffd0;      /* sem bordas arredondadas */
    padding: 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
}

.contato-form input,
.contato-form textarea {
    padding: 10px;
    border: 1px solid #bbb;
    font-size: 15px;
}

/* telefone + whatsapp icon */
.linha-telefone {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* whatsapp icon */
.whatsapp-box {
    width: 48px;
    height: 48px;
    border: 2px solid #999;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}
.whatsapp-box svg {
    width: 28px;
    fill: #777;
    transition: .2s;
}
.whatsapp-box.ativo {
    border-color: #25d366;
    background: #25d36620;
}
.whatsapp-box.ativo svg {
    fill: #25d366;
}

.btn-enviar {
    padding: 12px;
    width: 200px;
    background: #c56f5b;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
}



/* =======================
   INSTAGRAM
======================= */
.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 15px;
}
.instagram-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}



/* =======================
   MAPA
======================= */
.mapa iframe { width: 100%; border: none; }



/* =======================
   RESPONSIVO
======================= */
@media (max-width:900px){
    header nav{display:none}
}
@media(max-width:480px){
    .login-box input{width:90px;font-size:12px}
}
.instagram-box iframe {
    overflow: hidden !important;
    border: none !important;
    scrollbar-width: none !important; /* Firefox */
}

/* Chrome + Edge + Safari */
.instagram-box iframe::-webkit-scrollbar {
    display: none !important;
}

.instagram-box {
    width: 100%;
    height: 600px;   /* sua altura atual */
    overflow: hidden;
}
/* FORMULÁRIO COMPACTO */
.contato-form.compact {
    max-width: 700px;
    margin: auto;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffffd9;
    box-shadow: 0 0 12px rgba(0,0,0,0.22);
}

.contato-form.compact .dupla {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    gap: 15px;
    align-items: end;
}

.contato-form.compact .dupla .field label {
    font-weight: 600;
    font-size: 14px;
}

.contato-form.compact input,
.contato-form.compact textarea {
    padding: 8px;
    border: 1px solid #bbb;
    font-size: 14px;
}

.contato-form.compact textarea {
    resize: vertical;
}

/* ÍCONE WHATSAPP AJUSTADO */
.whatsapp-box {
    width: 48px;
    height: 48px;
    border: 2px solid #999;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    margin-top: 3px;
}

.whatsapp-box svg {
    width: 26px;
    fill: #777;
    transition: .2s;
}

.whatsapp-box.ativo {
    border-color: #25d366;
    background: #25d36620;
}
.whatsapp-box.ativo svg { fill: #25d366; }

/* BOTÃO */
.btn-enviar {
    width: 200px;
    margin: auto;
    margin-top: 10px;
}
