/* =============================================
   UNIVERSOS POSSÍVEIS — Folha de Estilos
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-deep:   #2d1b4e;
  --purple-mid:    #4a2c7a;
  --purple-light:  #7c5cbf;
  --purple-pale:   #d4c5f0;
  --purple-bg:     #f4f0fb;
  --gold:          #c9a84c;
  --gold-light:    #e8d08a;
  --white:         #ffffff;
  --cream:         #f7f5f2;
  --text-dark:     #1a1028;
  --text-mid:      #3d2e5c;
  --text-light:    #8a7aaa;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', Arial, sans-serif;
  --radius:        3px;
  --transition:    0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #f0edf5;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── BOTÕES ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--purple-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--purple-deep);
  border-color: var(--purple-mid);
}
.btn-outline-dark:hover {
  background: var(--purple-deep);
  color: var(--white);
}
.btn-full { width: 100%; text-align: center; }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── TEXTURA DE FUNDO — grade de losangos com pontos dourados ── */
body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 2 L46 24 L24 46 L2 24 Z' fill='none' stroke='%234a2c7a' stroke-opacity='0.07' stroke-width='0.7'/%3E%3Ccircle cx='24' cy='2' r='1.5' fill='%23c9a84c' fill-opacity='0.15'/%3E%3Ccircle cx='46' cy='24' r='1.5' fill='%23c9a84c' fill-opacity='0.15'/%3E%3Ccircle cx='24' cy='46' r='1.5' fill='%23c9a84c' fill-opacity='0.15'/%3E%3Ccircle cx='2' cy='24' r='1.5' fill='%23c9a84c' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

/* ── SELETOR DE IDIOMA ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-switcher--desktop {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(45,27,78,0.15);
}
.lang-switcher--mobile { display: none; }
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 2px;
  transition: var(--transition);
}
.lang-btn:hover,
.lang-btn.active { color: var(--purple-mid); }
.lang-btn.active { font-weight: 700; }
.lang-sep {
  font-size: 0.65rem;
  color: rgba(45,27,78,0.25);
  user-select: none;
}

/* ── SCROLL REVEAL ── */
.reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up    { transform: translateY(36px); }
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible { opacity: 1; transform: translate(0); }

/* ══════════════════════════════════════
   HEADER — fundo branco, texto escuro
   (igual ao Ruffato: header claro sobre fundo claro)
══════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(240,237,245,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45,27,78,0.08);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: 0 2px 20px rgba(45,27,78,0.09);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 42px; width: auto; object-fit: contain; }
.logo-link { flex-shrink: 0; }

.nav > ul { display: flex; gap: 2px; align-items: center; }
.nav > ul > li { position: relative; }
.nav ul li a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav ul li a:hover { color: var(--purple-mid); }
.chevron { font-size: 0.9rem; transition: transform 0.25s ease; }

/* Dropdown — CSS :hover puro (impossível de abrir no carregamento) */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;           /* sem gap — mouse não cai no vazio */
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(45,27,78,0.1);
  border-radius: 6px;
  min-width: 250px;
  box-shadow: 0 8px 32px rgba(45,27,78,0.13);
  overflow: hidden;
  z-index: 200;
  padding-top: 10px;   /* espaço visual fica dentro do elemento */
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown.open { display: block; }
.dropdown li a {
  font-size: 0.72rem;
  padding: 13px 20px;
  color: var(--text-mid) !important;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(45,27,78,0.06);
  white-space: nowrap;
  display: block;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--purple-bg); color: var(--purple-mid) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--purple-deep);
  transition: var(--transition);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO — layout IDÊNTICO ao Ruffato:
   - fundo claro (creme) em toda a seção
   - listra escura HORIZONTAL no MEIO (não no fundo)
   - capa do livro flutua sobre a listra: parte acima, parte abaixo
   - texto do livro fica dentro da listra, à direita
══════════════════════════════════════ */
.hero {
  position: relative;
  background: transparent;
  padding-top: 72px;
  overflow: hidden;
  min-height: 100vh;
}

/* Listra horizontal no meio — mesma proporção do Ruffato */
.hero-band {
  position: absolute;
  top: 32%;              /* começa em 32% — dá espaço suficiente para o texto cair dentro */
  left: 0; right: 0;
  height: 46%;           /* 32%→78%: cobre o texto e a capa sem ir até o fundo */
  background: linear-gradient(110deg, #1e0a38 0%, var(--purple-deep) 45%, var(--purple-mid) 100%);
  z-index: 0;
}

.slider { position: relative; z-index: 2; }

.slide { display: none; }
.slide.active { display: block; }

/* Grid: esquerda = capa flutuando, direita = info na listra */
.slide-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  align-items: center;   /* centraliza verticalmente — livro fica no meio da página */
}

/* Capa centralizada = flutua sobre a listra (acima e abaixo dela) */
.book-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-cover-wrap {
  width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}
.book-cover-wrap:hover { transform: translateY(-8px); }
.book-cover { width: 100%; border-radius: 3px; display: block; }

/* Info do livro: fica à direita, centralmente alinhado — cai dentro da listra */
.book-info {
  padding: 0 0 0 72px;
  color: var(--white);
}
.book-series {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.book-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
}
.book-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.book-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Setas */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.slider-arrow:hover { background: rgba(201,168,76,0.3); border-color: var(--gold); color: var(--gold); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(201,168,76,0.7);
  cursor: pointer;
  transition: var(--transition); padding: 0;
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

/* ══════════════════════════════════════
   SOBRE A AUTORA — idêntico ao Ruffato:
   - ESQUERDA: foto full-bleed, sem overlay, preenche tudo
   - DIREITA: fundo ESCURO (roxo) com texto branco
   - Espaço antes da seção (respiro após o hero)
══════════════════════════════════════ */
.sobre {
  display: flex;
  overflow: hidden;
  min-height: 600px;
  margin-top: 80px;
}

.sobre-inner {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Esquerda: foto full-bleed sem nenhum tratamento — igual ao Ruffato */
.sobre-foto-col {
  width: 48%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.sobre-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Label dentro do fundo escuro — dourado */
.sobre-texto-col .section-label { color: var(--gold); }

/* Direita: fundo ESCURO com texto branco — igual ao lado escuro do Ruffato */
.sobre-texto-col {
  flex: 1;
  background: linear-gradient(160deg, #1e0a38 0%, var(--purple-deep) 55%, #3a2068 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
}
.sobre-texto-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.sobre-texto-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.9;
}
.sobre-texto-col em { color: var(--gold-light); font-style: italic; }

/* ══════════════════════════════════════
   CONTATO — faixa escura esquerda + form branco direita
══════════════════════════════════════ */
.contato { overflow: hidden; }

.contato-inner {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: stretch;
}

/* Coluna esquerda escura — info */
.contato-band { display: none; } /* não usada mais, estrutura via grid */

.contato-content {
  display: contents; /* os filhos participam direto do grid pai */
}

.contato-info {
  background: linear-gradient(160deg, #1e0a38 0%, var(--purple-deep) 60%, var(--purple-mid) 100%);
  padding: 80px 64px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-form-wrap {
  background: #f0edf5;
  padding: 80px 80px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contato-info .section-label { color: var(--gold-light); }
.contato-info > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.8;
}
.contato-email {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 3px;
  margin-bottom: 32px;
  transition: var(--transition);
}
.contato-email:hover { border-color: var(--gold); color: var(--gold); }

.social-links { display: flex; flex-direction: column; gap: 12px; }
.social-links a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem; letter-spacing: 0.08em;
  transition: var(--transition);
}
.social-links a:hover { color: var(--gold); }
.social-links svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Form (coluna direita — fundo branco) */
.contato-form {
  background: var(--white);
  border-radius: 6px;
  padding: 44px;
  box-shadow: 0 4px 32px rgba(45,27,78,0.1);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--purple-pale);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(124,92,191,0.1);
  background: var(--white);
}
.form-feedback {
  font-size: 0.8rem; margin-top: 12px;
  text-align: center; color: var(--purple-mid);
  min-height: 1.4em;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0f0620;
  padding: 40px 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-logo { height: 34px; width: auto; opacity: 0.85; }
.footer-copy {
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em; text-align: center; flex: 1;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25d366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-fab:hover { background: #1ebe5d; transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ══════════════════════════════════════
   PÁGINAS DOS LIVROS (livro1/livro2)
══════════════════════════════════════ */

/* HERO: fundo roxo escuro sólido, capa + info lado a lado */
.livro-hero {
  background: linear-gradient(135deg, #1e0a38 0%, var(--purple-deep) 50%, #3a1f6e 100%);
  padding-top: 72px;
}
.livro-hero-band { display: none; } /* não usado neste layout */

.livro-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}

.livro-capa-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.livro-capa-col .book-cover-wrap {
  width: 280px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
}

.livro-meta { color: var(--white); }
.livro-meta h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 12px;
}
.livro-meta .book-author { margin-bottom: 40px; }

/* Divisor decorativo dourado */
.livro-meta .livro-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* CORPO: duas colunas — sinopse + ficha técnica */
.livro-body {
  background: transparent;
  padding: 80px 0 60px;
}
.livro-body-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}

.livro-sinopse h2,
.livro-ficha h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.livro-sinopse p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Ficha técnica — card com fundo roxo suave */
.livro-ficha-card {
  background: var(--purple-deep);
  border-radius: 8px;
  overflow: hidden;
}
.livro-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.livro-info-table tr:last-child td { border-bottom: none; }
.livro-info-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.livro-info-table td:first-child {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  width: 42%;
}
.livro-info-table td:last-child { color: rgba(255,255,255,0.85); }

/* Quote especial no livro2 */
.livro-quote {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.06);
  border-radius: 0 4px 4px 0;
}
.livro-quote p {
  color: var(--purple-mid);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.livro-quote p:last-child { margin-bottom: 0; }

/* Botão voltar */
.livro-back {
  background: transparent;
  padding: 0 0 80px;
  text-align: center;
}
.livro-back a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple-light);
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.livro-back a:hover { color: var(--purple-deep); }

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 960px) {
  .header-inner, .container { padding: 0 32px; }

  /* Hero: empilha capa em cima, info embaixo */
  .slide-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 60px 32px;
    gap: 0;
  }
  .book-col { justify-content: center; }
  .book-cover-wrap { width: 200px; }
  .book-info {
    padding: 32px 32px 48px;
    text-align: center;
    color: var(--white);
  }
  .book-btns { justify-content: center; }
  /* No mobile a listra cobre mais área para abraçar o conteúdo empilhado */
  .hero-band { top: 28%; height: 58%; }

  /* Sobre: empilha */
  .sobre-inner { flex-direction: column; }
  .sobre-foto-col { width: 100%; min-height: 380px; }
  .sobre-texto-col .sobre-texto { padding: 60px 32px; }

  /* Contato: empilha */
  .contato-inner { grid-template-columns: 1fr; }
  .contato-info { padding: 60px 32px; }
  .contato-form-wrap { padding: 48px 32px 60px; }

  /* Livro pages */
  .livro-hero-inner {
    grid-template-columns: 1fr;
    padding: 52px 32px 60px;
    gap: 40px;
    text-align: center;
  }
  .livro-capa-col .book-cover-wrap { width: 200px; }
  .livro-meta .book-btns { justify-content: center; }
  .livro-body-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #f0edf5;
    border-bottom: 1px solid rgba(45,27,78,0.1);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(45,27,78,0.1);
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; gap: 0; }
  .nav ul li a { padding: 13px 28px; font-size: 0.78rem; justify-content: space-between; }
  .dropdown {
    position: static; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: var(--purple-bg); min-width: unset;
  }
  .dropdown li a { padding-left: 44px; }
  .lang-switcher--desktop { display: none; }
  .lang-switcher--mobile { display: flex; padding: 12px 28px 8px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-logo { margin: 0 auto; }
  .slider-arrow { width: 36px; height: 36px; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .contato-form { padding: 28px 20px; }
}
