@font-face {
  font-family: 'MarineRounded';
  src: url('../fonts/marine/MarineRoundedRegular.woff2') format('woff2'),
       url('../fonts/marine/MarineRoundedRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MarineRoundedBold';
  src: url('../fonts/marine/MarineRoundedBold.woff2') format('woff2'),
       url('../fonts/marine/MarineRoundedBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cera Condensed Pro';
  src: url('../fonts/cera/CeraCondensedPro-Regular.woff2') format('woff2'),
       url('../fonts/cera/CeraCondensedPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --azul: #0c2d7a;
  --azul-escuro: #08215d;
  --amarelo: #fec32b;
  --branco: #ffffff;
  --texto: #14315b;
  --sombra: 0 14px 32px rgba(12, 45, 122, 0.14);
  --container: 1180px;
  --raio: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Cera Condensed Pro', Arial, sans-serif;
  background: var(--branco);
  color: var(--texto);
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 94%; max-width: var(--container); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 20px; top: 20px; z-index: 9999; background: var(--amarelo); color: #111; padding: 12px 18px; border-radius: 10px; }

/* =====================================================
   BLOCO 1 - AZUL - BARRA SUPERIOR
   ALTERE AQUI: cor, altura, tamanho dos textos e alinhamento da barra superior.
   HTML RELACIONADO: <div class="bloco-1-topo topbar">
   ===================================================== */
.bloco-1-topo {
  background: var(--azul);
  color: var(--branco);
}
.topbar-inner {
  min-height: 34px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
}
.topbar strong {
    font-family: 'MarineRoundedBold', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
}

/* =====================================================
   BLOCO 2 - BRANCO - LOGO E MENU
   ALTERE AQUI: tamanho da logo, altura do bloco branco, margem da logo e menu.
   HTML RELACIONADO: <header class="bloco-2-menu header">
   ===================================================== */
.bloco-2-menu {
  background: var(--branco);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 250ms ease;
}
.header-inner {
  min-height: 132px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: 250ms ease;
}
.brand img {
  width: 230px;
  margin: 0;
  transition: 250ms ease;
}

/* BLOCO 2 - EFEITO AO ROLAR A PÁGINA
   Quando a página sai do topo, o JavaScript coloca a classe .scrolled no cabeçalho.
   ALTERE AQUI se quiser mudar o tamanho da logo durante a rolagem.
*/
.bloco-2-menu.scrolled .header-inner {
  min-height: 82px;
  padding: 8px 0;
}
.bloco-2-menu.scrolled .brand img {
  width: 150px;
}
.nav-toggle-wrap { display: none; }
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  display: block;
  padding: 13px 17px;
  border-radius: 16px;
  color: var(--azul);
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 16px;
}
.nav a:hover,
.nav a.active { background: rgba(12,45,122,0.08); }
.nav .external::after { content: '↗'; margin-left: 6px; font-size: 13px; }

/* =====================================================
   BLOCO 3 - BANNER PRINCIPAL COM TEXTO EDITÁVEL
   ALTERE AQUI:
   - altura do banner: height em .banner-slider
   - imagem de fundo: no HTML, em background-image
   - posição da imagem: background-position em .banner-slide
   - texto do banner: no HTML, em h1 e p
   - link do banner: no HTML, no href do botão

   TAMANHO IDEAL DA ARTE DE FUNDO:
   1920 x 520 px ou 1920 x 600 px
   ===================================================== */
.bloco-3-banner {
  width: 100%;
  background: var(--azul);
}
.banner-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,29,77,0.96) 0%, rgba(12,45,122,0.84) 42%, rgba(12,45,122,0.30) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--branco);
}
.banner-content h1 {
  width: 52%;
  margin: 0 0 18px;
  color: var(--branco);
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 54px;
  line-height: 1.02;
}
.banner-content p {
    width: 48%;
    margin: 0 0 24px;
    color: var(--branco);
    font-size: 24px;
    line-height: 1.35;
    font-family: "Cera Condensed Pro", Arial, sans-serif;
}
.banner-content .btn {
  margin-top: 4px;
}

/* =====================================================
   BLOCO 4 - AMARELO - TÍTULO DE DESTAQUE E APRESENTAÇÃO
   ALTERE AQUI: altura do bloco, espaçamento, tamanho do título e texto.
   HTML RELACIONADO: <section class="bloco-4-apresentacao">
   ===================================================== */
.bloco-amarelo { background: var(--amarelo); color: var(--azul); }
.bloco-branco { background: var(--branco); color: var(--azul); }
.bloco-azul { background: var(--azul); color: var(--branco); }
.bloco-texto-central { text-align: center; padding: 20px; }
.bloco-4-apresentacao h1 {
  margin: 0 0 12px;
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 42px;
  line-height: 1.05;
}
.bloco-4-apresentacao p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 24px;
}

/* =====================================================
   BLOCO 5 - BRANCO - TIPOS DE IMPRESSOS
   ALTERE AQUI: espaçamento do bloco, quantidade visual de colunas, cards e textos.
   HTML RELACIONADO: <section class="bloco-5-impressos">
   ===================================================== */
.bloco-5-impressos {
}
.bloco-5-impressos h2 {
  margin: 0 0 10px;
  color: var(--azul);
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 40px;
  line-height: 1.05;
}
.bloco-5-impressos .intro {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 20px;
}
.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.tipo-card {
  padding: 20px;
  border-top: 8px solid var(--amarelo);
  text-align: center;
}
.tipo-card img {
  width: 210px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 15px;
}
.tipo-card h3 {
    margin: 0 0 8px;
    color: var(--azul);
    font-family: 'MarineRoundedBold', Arial, sans-serif;
    font-size: 28px;
}
.tipo-card p {
    margin: 0;
    font-size: 20px;
}

/* =====================================================
   SEPARADOR BRANCO ENTRE BLOCOS
   ALTERE AQUI: altura das faixas brancas entre azul/amarelo/azul.
   HTML RELACIONADO: <div class="separador-branco">
   ===================================================== */
.separador-branco {
  height: 20px;
  background: var(--branco);
}

/* =====================================================
   BLOCO 6 - AZUL - PRECISA DE ORÇAMENTO
   ALTERE AQUI: altura, textos, posicionamento e tamanho dos ícones.
   HTML RELACIONADO: <section class="bloco-6-orcamento">
   ===================================================== */
.bloco-6-orcamento {
  padding: 20px 0;
}
.orcamento-grid {
  min-height: 235px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.orcamento-texto h2 {
  margin: 0 0 25px;
  color: var(--amarelo);
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 54px;
  line-height: 0.95;
}
.orcamento-texto p {
  margin: 0;
  color: var(--branco);
  font-size: 25px;
}
.orcamento-botoes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}
.btn-amarelo { background: var(--amarelo); color: var(--azul); }
.btn-claro { background: rgba(255,255,255,0.18); color: var(--branco); border: 1px solid rgba(255,255,255,0.35); }
.orcamento-imagens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.orcamento-imagens img {
  max-width: 220px;
  max-height: 160px;
  object-fit: contain;
}

/* =====================================================
   BLOCO 7 - AMARELO - ÍCONES DE ATENDIMENTO, ENTREGA E PAGAMENTO
   ALTERE AQUI: altura da faixa e tamanho da imagem dos ícones.
   HTML RELACIONADO: <section class="bloco-7-beneficios">
   ===================================================== */
.bloco-7-beneficios {
  padding: 20px 0;
}
.beneficios-wrap {
  padding: 20px;
}
.beneficios-wrap img {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
}

/* =====================================================
   BLOCO 8 - AZUL - RODAPÉ COM LOGO, CONTATOS E ENDEREÇO
   ALTERE AQUI: logo, selo, telefones, e-mail, endereço, botão mapa e espaçamentos.
   HTML RELACIONADO: <footer class="bloco-8-rodape footer">
   ===================================================== */
.bloco-8-rodape {
  background: var(--azul);
  color: var(--branco);
  padding: 20px 0 0;
}
.footer-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer-identidade {
  display: flex;
  align-items: center;
}
.footer-logo-selo {
  width: 310px;
  max-width: 100%;
}
.footer-contatos {
  font-style: normal;
  text-align: center;
  color: var(--branco);
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 32px;
  line-height: 1.12;
}
.footer-contatos a { color: var(--branco); }
.footer-contatos .telefone-principal { display: inline-block; }
.footer-contatos .email-link {
  display: block;
  font-family: 'Cera Condensed Pro', Arial, sans-serif;
  font-weight: 400;
  font-size: 30px;
}
.footer-endereco {
  text-align: center;
  font-size: 23px;
  line-height: 1.18;
}
.footer-endereco p { margin: 0 0 15px; }
.mapa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 25px;
  border: 7px solid var(--amarelo);
  border-radius: 999px;
  color: var(--amarelo);
  font-family: 'MarineRoundedBold', Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 14px 20px 18px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

/* =====================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ALTERE AQUI: tamanho e posição do botão verde flutuante.
   HTML RELACIONADO: <a class="whatsapp-float">
   ===================================================== */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  background: var(--branco);
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================
   RESPONSIVIDADE - TABLET E CELULAR
   ALTERE AQUI quando quiser ajustar o comportamento em telas menores.
   ===================================================== */
@media (max-width: 900px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .header-inner { min-height: auto; padding: 16px 0; }
  .brand img { width: 190px; }
  .bloco-2-menu.scrolled .brand img { width: 145px; }
  .bloco-2-menu.scrolled .header-inner { min-height: 70px; padding: 8px 0; }
  .nav-toggle-wrap { display: flex; }
  .nav-toggle {
    appearance: none;
    border: 0;
    background: var(--azul);
    color: var(--branco);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    content: '';
    width: 23px;
    height: 2px;
    background: currentColor;
    position: absolute;
    transition: 250ms ease;
  }
  .nav-toggle::before { transform: translateY(-7px); }
  .nav-toggle::after { transform: translateY(7px); }
  .nav-toggle[aria-expanded="true"] span { opacity: 0; }
  .nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
  .nav {
    display: none;
    position: absolute;
    top: 95px;
    right: 3%;
    width: 280px;
    background: var(--azul);
    color: var(--branco);
    padding: 12px;
    border-radius: 18px;
    box-shadow: var(--sombra);
  }
  .nav.open { display: block; }
  .nav ul { display: grid; gap: 4px; }
  .nav a { color: var(--branco); }
  .nav a:hover,
  .nav a.active { background: rgba(255,255,255,0.15); }
  .banner-slider { height: 430px; }
  .banner-content h1 { width: 70%; font-size: 42px; }
  .banner-content p { width: 68%; font-size: 22px; }
  .tipos-grid { grid-template-columns: 1fr; }
  .orcamento-grid { grid-template-columns: 1fr; text-align: center; }
  .orcamento-botoes { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-identidade { justify-content: center; }
  .footer-logo-selo { width: 280px; }
}

@media (max-width: 540px) {
  .topbar-inner { font-size: 14px; }
  .brand img { width: 165px; }
  .bloco-2-menu.scrolled .brand img { width: 130px; }
  .banner-slider { height: 380px; }
  .banner-content { justify-content: center; }
  .banner-content h1 { width: 100%; font-size: 34px; }
  .banner-content p { width: 100%; font-size: 20px; }
  .bloco-4-apresentacao h1,
  .bloco-5-impressos h2 { font-size: 32px; }
  .bloco-4-apresentacao p,
  .bloco-5-impressos .intro { font-size: 19px; }
  .orcamento-texto h2 { font-size: 38px; }
  .orcamento-texto p { font-size: 20px; }
  .orcamento-imagens { flex-direction: column; }
  .footer-identidade { flex-direction: column; }
  .footer-contatos { font-size: 26px; }
  .footer-contatos .email-link { font-size: 24px; }
  .footer-endereco { font-size: 20px; }
}
