/* ====================================================================
   RESET BÁSICO E VARIÁVEIS DE CORES
   ==================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-yellow: #d99400;
  --color-white: #ffffff;
  --color-light-gray: #f5f5f5;
  --color-gray-text: #47515c;
  --color-gray-dark: #2c3e50;
  --color-green-dark: #2e7d32;
  --color-border: #e0e0e0;
  --color-offwhite: #fafafa;
  --color-cite: #777;
  --border-radius: 8px;
  --border-radius-large: 12px;
  --font-base: "Arial", sans-serif;
}

/* ====================================================================
   TIPOGRAFIA E ESTILIZAÇÕES GLOBAIS
   ==================================================================== */
body {
  font-family: var(--font-base);
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: var(--font-base);
  color: var(--color-gray-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ====================================================================
   CABEÇALHO
   ==================================================================== */
header {
  background-color: var(--color-light-gray);
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 2.5rem;
  color: var(--color-gray-dark);
  margin-bottom: 10px;
}

header .tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: #555;
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 500px; /* Ajuste conforme necessário ou troque por vh */
  background-image: url('img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
}

.hero__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.hero__logo img {
  max-height: 250px;
  width: auto;
  display: block;
}

.hero__tagline {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;

  /* sombra projetada atrás do texto */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ====================================================================
   MAIN CONTENT (GERAL)
   ==================================================================== */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* --------------------------------------------------------------------
   SEÇÃO “SOBRE A EDITORA” (about-block)
   -------------------------------------------------------------------- */
.about-block {
  width: 100%;
  background-color: var(--color-white);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.about-block__content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Quebra em coluna em telas pequenas */
}
.about-block__content2 {
  max-width: 90%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Quebra em coluna em telas pequenas */
}

.about-block__text {
  flex: 1;
  min-width: 280px;
}

.about-block__text h2 {
  font-size: 2rem;
  color: var(--color-green-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.about-block__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-text);
  margin-bottom: 12px;
}

.about-block__image-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.about-block__image {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.about-block__arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background-color: var(--color-yellow);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-block__arrow:hover {
  background-color: #b37d00;
  transform: translateY(-50%) translateX(4px);
}

/* ====================================================================
   SEÇÃO ÁREAS DE FOCO (focus)
   ==================================================================== */
.focus {
  /* Faz a seção ocupar toda a largura do viewport */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background-color: var(--color-yellow);
  padding: 60px 20px;
  font-family: var(--font-base);
}

.focus__container {
  max-width: 1200px;
  margin: 0 auto;
}

.focus__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 40px;
}

.focus__items {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.focus__item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-large);
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.focus__item2 {
  background-color: var(--color-white);
  border-radius: var(--border-radius-large);
  flex: 1;
  min-width: 260px;
  max-width: 150%;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.focus__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-green-dark);
}

.focus__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}

.focus__item-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-gray-text);
}

/* Responsividade para a seção “Áreas de Foco” */
@media (max-width: 900px) {
  .focus__items {
    gap: 20px;
  }
  .focus__item {
    flex: 1 1 45%;
    max-width: none;
  }
}




@media (max-width: 550px) {
  .focus__item {
    flex: 1 1 100%;
  }
  .focus__title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .focus__icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .focus__item-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .focus__item-text {
    font-size: 0.9rem;
  }
}

/* ====================================================================
   SEÇÃO FRASES INSPIRADORAS (quotes)
   ==================================================================== */
.quotes {
  margin-bottom: 60px;
}

.quotes h2 {
  font-size: 1.75rem;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

.quotes blockquote {
  border-left: 4px solid #ccc;
  margin: 20px 0;
  padding-left: 15px;
  font-style: italic;
  color: #555;
}

.quotes cite {
  display: block;
  margin-top: 5px;
  text-align: right;
  font-style: normal;
  color: var(--color-cite);
}





/* ====================================================================
   8. Formulário
   ==================================================================== */
.form__container form input,
.form__container form select,
.form__container form textarea {
  width: 100%;
  box-sizing: border-box;
}































/* ====================================================================
   SEÇÃO CHAMADA PARA AÇÃO (cta)
   ==================================================================== */
.cta {
  background-color: var(--color-light-gray);
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--border-radius);
}

.cta h2 {
  font-size: 1.75rem;
  color: var(--color-gray-dark);
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  color: #444;
}

/* ====================================================================
   RODAPÉ
   ==================================================================== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
/* ====================================================================
   SEÇÃO “NOSSOS VALORES” COM 100% DE LARGURA DO VIEWPORT
   ==================================================================== */
.values {
  /* 1) Faz a section ocupar toda a largura do viewport */
  width: 100vw;

  /* 2) “Puxa” a section para a esquerda, anulando
     margens/paddings do container pai */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  /* 3) Estilo de fundo e espaçamento */
  background-color: var(--color-yellow);
  padding: 60px 20px;
  font-family: var(--font-base, Arial, sans-serif);
}

.values__container {
  /* Limita largura interna e centraliza o conteúdo */
  max-width: 1200px;
  margin: 0 auto;
}

.values__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 40px;
}

.values__items {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.values__item {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}
/* ====================================================================
   SEÇÃO “ENTRE EM CONTATO”
   ==================================================================== */
.contact {
  /* Garante 100vw e neutraliza margens/paddings de contêiner pai,
     caso esteja aninhada dentro de um wrapper limitado */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background-color: #ffffff; /* fundo branco */
  padding: 60px 20px;
  font-family: var(--font-base, Arial, sans-serif);
}

.contact__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact__container2 {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
}

.contact__subtitle {
  font-size: 1rem;
  color: #47515c;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact__info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #47515c;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: var(--color-green-dark, #2e7d32);
}

.contact__icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ====================================================================
   RODAPÉ
   ==================================================================== */
.footer {
  background-color: #0b1120; /* tom escuro próximo ao mockup */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  color: #ffffff;
  font-family: var(--font-base, Arial, sans-serif);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px; /* espaçamento interno superior e lateral */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* === Marca (brand) no rodapé === */
.footer__brand {
  flex: 1;
  min-width: 240px;
  text-align: center;
}

.footer__brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer__brand-tagline {
  font-size: 0.95rem;
  font-weight: 300;
  color: #d1d1d1;
}

/* === Navegação do rodapé === */
.footer__nav {
  flex: 1;
  min-width: 240px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__nav-link {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--color-yellow, #d99400);
}

/* === Linha de baixo do rodapé === */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 20px;
  padding: 16px 20px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ====================================================================
   RESPONSIVIDADE PARA CONTATO E RODAPÉ
   ==================================================================== */
@media (max-width: 900px) {
  .contact__info {
    gap: 24px;
  }
  .footer__container {
    flex-direction: column;
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .contact__title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .contact__subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .contact__link {
    font-size: 0.9rem;
  }
  .footer__brand-title {
    font-size: 1.25rem;
  }
  .footer__brand-tagline {
    font-size: 0.9rem;
  }
  .footer__nav-link {
    font-size: 0.9rem;
  }
}
/* ====================================================================
   RODAPÉ (AGORA COM FUNDO AMARELO E TEXTOS PRETOS)
   ==================================================================== */
.footer {
  background-color: var(--color-yellow); /* fundo amarelo */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  color: #000; /* todos os textos em preto */
  font-family: var(--font-base);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px; /* espaçamento interno */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  flex: 1;
  min-width: 240px;
  text-align: center;
}

.footer__brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #000; /* título em preto */
}

.footer__brand-tagline {
  font-size: 0.95rem;
  font-weight: 300;
  color: #000; /* subtítulo em preto */
}

.footer__nav {
  flex: 1;
  min-width: 240px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__nav-link {
  color: #000; /* links em preto */
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: rgba(0, 0, 0, 0.7); /* sutil escurecimento no hover */
}

.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  padding: 16px 20px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7); /* texto de direitos autorais em tom mais claro */
}

/* ====================================================================
   RESPONSIVIDADE PARA RODAPÉ
   ==================================================================== */
@media (max-width: 900px) {
  .footer__container {
    flex-direction: column;
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .footer__brand-title {
    font-size: 1.25rem;
  }
  .footer__brand-tagline {
    font-size: 0.9rem;
  }
  .footer__nav-link {
    font-size: 0.9rem;
  }
}
/* ================================
   Ajuste para Mobile (tela pequena)
   ================================ */
@media (max-width: 600px) {
  /* 1) Faça o contêiner .hero crescer em altura
       automaticamente (remova height fixa) */
  .hero {
    height: auto;        /* altura se adapta ao conteúdo */
    padding: 40px 20px;  /* adiciona espaçamento interno em topo/lat */
  }

  /* 2) Desfaça o position: absolute da logo e centralize-a */
  .hero__logo {
    position: static;    /* volta ao fluxo normal */
    margin: 0 auto 20px; /* centraliza horizontal e dá espaço abaixo */
    display: block;
    text-align: center;  /* caso queira centralizar algum conteúdo interno */
  }

  .hero__logo img {
    max-height: 80px;    /* aumenta a logo um pouco para mobile, se desejar */
    width: auto;
  }

  /* 3) Faça a tagline ficar abaixo da logo, removendo o absolute */
  .hero__tagline {
    position: static;    /* volta ao fluxo normal */
    transform: none;     /* anula o translate */
    top: auto;
    left: auto;
    margin: 0 auto;      /* centraliza horizontal, dentro do container */
    padding: 0 10px;     /* espaço lateral em telas pequenas */
    text-align: center;  /* texto centralizado */
  }

  /* 4) Ajuste o tamanho do texto para caber melhor no mobile */
  .hero__tagline h2 {
    font-size: 1.25rem;  /* título um pouco menor */
    line-height: 1.3;
  }

  .hero__tagline p {
    font-size: 0.95rem;  /* corpo de texto ligeiramente menor */
    line-height: 1.4;
    margin-top: 8px;     /* espaço acima do parágrafo */
  }
}











