/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CABEÇALHO */
header {
  background-color: #ffffff;
  color: #003366;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo img {
  width: 280px;
  height: auto;
  max-width: 100%;
}

/* MENU DE NAVEGAÇÃO */
.menu ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu a {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.menu a:hover,
.menu a.active {
  color: #00aaff;
  text-decoration: underline;
}

/* FAIXAS GERAIS */
.faixa {
  padding: 4rem 0;
  width: 100%;
}

.faixa-clara {
  background-color: #f8f8f8;
}

.faixa-com-imagem {
  background-color: #fff;
}

/* LAYOUT TRÊS COLUNAS */
.faixa-tres-colunas {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

/* COLUNA DE IMAGEM */
.coluna-imagem {
  flex: 0 0 auto;
  width: 320px;
}

.coluna-imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

/* COLUNAS DE TEXTO */
.coluna-texto {
  flex: 1;
  min-width: 200px;
}

/* TÍTULOS */
.faixa-tres-colunas .coluna-texto h2,
.diferencial-container .coluna-texto h2,
main h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
}

/* PARÁGRAFOS */
.faixa-tres-colunas .coluna-texto p,
.diferencial-container .coluna-texto p,
main p {
  font-family: 'Calibri', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #444;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* DIFERENCIAL EM DUAS COLUNAS */
.diferencial-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.diferencial-container .coluna-imagem {
  flex: 0 0 320px;
}

.diferencial-container .coluna-texto {
  flex: 1;
  min-width: 250px;
}

/* Alinha logo e menu */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* RODAPÉ */
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.img-centralizada {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.pagina-portfolio .portfolio img {
  display: block;
  width: 100%;
  margin: 0 auto 20px auto;
  border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.15);
}

.pagina-portfolio {
  background-color: #28A4D8;
}

/* FAIXAS COM CORES DIFERENTES */
.faixa-1 {
  background-color: #f8f8f8;
}

.faixa-2 {
  background-color: #ebeae8;
}

.faixa-3 {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.faixa-3 img {
  display: block;
  width: 100%;
  height: auto;
}


/* ============================================================
   FAIXA 4 - CARROSSEL
   ============================================================ */
.faixa-4 {
  background-color: #d51e4a;
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

.faixa-4 .carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faixa-4 .carousel {
  width: 100%;
}

.faixa-4 .slick-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faixa-4 .slick-slide img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border: 5px solid white;
  background-color: white;
}

/* SETAS CUSTOM */
.seta-prev,
.seta-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 4px solid #d51e4a;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 26px;
  color: #d51e4a;
  padding: 0;
  line-height: 1;
}

.seta-prev:hover,
.seta-next:hover {
  background-color: #f0f0f0;
  transform: translateY(-50%) scale(1.1);
}

.seta-prev {
  left: calc(50% - 500px - 55px);
}

.seta-next {
  right: calc(50% - 500px - 55px);
}

/* FAIXA COM DUAS COLUNAS */
.faixa-duas-colunas {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.faixa-duas-colunas .coluna-imagem {
  flex: 0 0 320px;
}

.faixa-duas-colunas .coluna-imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.faixa-duas-colunas .coluna-texto {
  flex: 1;
  min-width: 250px;
}

/* FAIXA 5 */
.faixa-5 {
  padding: 1rem 0;
  background-color: #045184;
  color: white;
}

.faixa-5 .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.faixa-5 .coluna-texto {
  flex: 1 1 100%;
  max-width: 1100px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.faixa-5 .coluna-texto h2 {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faixa-5 .coluna-imagem {
  flex: 1 1 30%;
  max-width: 320px;
  cursor: pointer;
}

.faixa-5 .coluna-imagem img {
  width: auto;
  height: 200px;
  max-width: 100%;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* FAIXA 5.5 - Link para Mídia */
.faixa-5-5 {
  background-color: #ACA7A5;
  padding: 2rem 0;
}

.faixa-5-5 a {
  display: block;
  transition: transform 0.3s ease;
}

.faixa-5-5 a:hover {
  transform: scale(1.02);
}

.faixa-5-5 img {
  cursor: pointer;
}

/* FAIXA 6 */
.faixa-6 {
  background-color: #EBEAE8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  height: auto;
  min-height: 673px;
}

.faixa-6 .imagem-cliente {
  max-height: 55%;
  max-width: 55%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* FAIXA 7 */
.faixa-7 {
  background-color: #D51E4A;
  padding: 0;
}

.faixa-7 .container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  height: 348px;
  overflow: hidden;
}

.faixa-7 .coluna-imagem {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #D51E4A;
  border-radius: 0;
}

.faixa-7 .coluna-imagem img {
  height: 100%;
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0;
}

.faixa-7 .coluna-formulario {
  flex: 1 1 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.faixa-7 .coluna-formulario form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faixa-7 .coluna-formulario input,
.faixa-7 .coluna-formulario textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0px;
}

.faixa-7 .coluna-formulario button {
  padding: 0.75rem;
  background-color: white;
  color: #D51E4a;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.faixa-7 .coluna-formulario button:hover {
  background-color: #f3f3f3;
}


/* ============================================================
   RESPONSIVIDADE MOBILE
   ============================================================ */

/* Tablets e menores */
@media (max-width: 1024px) {
  .faixa-tres-colunas {
    flex-wrap: wrap;
  }

  .coluna-imagem,
  .coluna-texto {
    flex: 1 1 100%;
  }

  .coluna-imagem {
    margin-bottom: 2rem;
  }

  .diferencial-container {
    flex-direction: column;
  }
}

/* Desktop médio */
@media (max-width: 1200px) {
  .seta-prev {
    left: 15px;
  }
  .seta-next {
    right: 15px;
  }

  .faixa-4 .slick-slide img {
    max-height: 480px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .faixa-4 .slick-slide img {
    max-height: 420px;
  }

  .seta-prev,
  .seta-next {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

/* Mobile landscape e tablets pequenos */
@media (max-width: 768px) {
  /* Header e Menu */
  .logo img {
    width: 200px;
  }

  .header-flex {
    flex-direction: column;
    gap: 1rem;
  }

  .menu ul {
    justify-content: center;
    gap: 1rem;
    font-size: 14px;
  }

  .menu a {
    font-size: 14px;
  }

  /* Faixas gerais */
  .faixa {
    padding: 2rem 0;
  }

  /* Carrossel */
  .faixa-4 {
    padding: 50px 0;
  }

  .faixa-4 .slick-slide img {
    max-height: 360px;
    border: 3px solid white;
    border-radius: 10px;
  }

  .seta-prev,
  .seta-next {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border: 3px solid #d51e4a;
  }

  /* Faixa 6 */
  .faixa-6 {
    padding: 1rem 0;
    min-height: auto;
  }

  .faixa-6 .imagem-cliente {
    max-height: 70%;
    max-width: 90%;
  }

  /* Faixa 7 - Formulário */
  .faixa-7 .container {
    flex-direction: column;
    height: auto;
  }

  .faixa-7 .coluna-imagem {
    width: 100%;
    height: 250px;
    min-height: 250px;
  }

  .faixa-7 .coluna-imagem img {
    width: 100%;
    height: auto;
    max-height: 250px;
  }

  .faixa-7 .coluna-formulario {
    padding: 2rem 1.5rem;
  }

  .faixa-7 .coluna-formulario input,
  .faixa-7 .coluna-formulario textarea {
    font-size: 16px;
  }

  .faixa-7 .coluna-formulario button {
    font-size: 16px;
    padding: 1rem;
  }
}

/* Mobile médio */
@media (max-width: 550px) {
  /* Logo ainda menor */
  .logo img {
    width: 160px;
  }

  /* Menu mais compacto */
  .menu ul {
    gap: 0.5rem;
  }

  .menu a {
    font-size: 13px;
  }

  /* Carrossel */
  .faixa-4 {
    padding: 40px 0;
  }

  .faixa-4 .carousel-wrapper {
    padding: 0 10px;
  }

  .faixa-4 .slick-slide img {
    max-height: 280px;
    border: 2px solid white;
    border-radius: 8px;
  }

  .seta-prev,
  .seta-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border: 2px solid #d51e4a;
  }

  .seta-prev {
    left: 8px;
  }
  .seta-next {
    right: 8px;
  }

  /* Formulário */
  .faixa-7 .coluna-formulario {
    padding: 1.5rem 1rem;
  }

  .faixa-7 .coluna-imagem {
    height: 200px;
    min-height: 200px;
  }

  .faixa-7 .coluna-imagem img {
    max-height: 200px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  /* Container com menos padding */
  .container {
    padding: 0 15px;
  }

  /* Logo menor */
  .logo img {
    width: 140px;
  }

  /* Menu empilhado ou muito compacto */
  .menu ul {
    gap: 0.3rem;
    font-size: 12px;
  }

  .menu a {
    font-size: 12px;
    padding: 0.3rem;
  }

  /* Faixas com menos padding */
  .faixa {
    padding: 1.5rem 0;
  }

  /* Carrossel muito compacto */
  .faixa-4 {
    padding: 30px 0;
  }

  .faixa-4 .carousel-wrapper {
    padding: 0 5px;
  }

  .faixa-4 .slick-slide img {
    max-height: 220px;
    border: 2px solid white;
    border-radius: 6px;
  }

  .seta-prev,
  .seta-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
    border: 2px solid #d51e4a;
  }

  .seta-prev {
    left: 5px;
  }
  .seta-next {
    right: 5px;
  }

  /* Títulos menores */
  .faixa-tres-colunas .coluna-texto h2,
  .diferencial-container .coluna-texto h2,
  main h2 {
    font-size: 1.4rem;
  }

  .faixa-tres-colunas .coluna-texto p,
  .diferencial-container .coluna-texto p,
  main p {
    font-size: 1.2rem;
  }

  /* Formulário compacto */
  .faixa-7 .coluna-formulario {
    padding: 1rem;
  }

  .faixa-7 .coluna-imagem {
    height: 150px;
    min-height: 150px;
  }

  .faixa-7 .coluna-imagem img {
    max-height: 150px;
  }

  .faixa-7 .coluna-formulario input,
  .faixa-7 .coluna-formulario textarea {
    padding: 0.6rem;
    font-size: 14px;
  }

  .faixa-7 .coluna-formulario button {
    padding: 0.8rem;
    font-size: 14px;
  }

  .faixa-7 .coluna-formulario form {
    gap: 0.8rem;
  }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
  .logo img {
    width: 120px;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .menu a {
    font-size: 14px;
  }

  .faixa-4 .slick-slide img {
    max-height: 180px;
  }

  .seta-prev,
  .seta-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}