/* EMPRESA CSS OFICIAL - TESTE 123456 */

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

.headerMenu {
  width: 100%;
  background-color: #ffffff;
}

.header {
  max-width: 1200px;
  margin: 0 auto;
  height: 125px;

  display: flex;
  align-items: center;      
  justify-content: center;   
  gap: 60px;
}

.linkLogo {
  display: flex;
  align-items: center;
}

.logoCatarinense {
  height: 46px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.main-navigation a {
  font-family: "Lato", sans-serif;
  position: relative;
  text-decoration: none;
  color: #242424;
  font-weight: 550;
  font-size: 14px;
  padding: 0 0 10px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.main-navigation a::before,
.main-navigation a::after {
  content: "";
  position: absolute;
  height: 2.3px;
  width: 0;
  background-color: #EAEAEA;
  bottom: 0;
  transition: width 0.4s ease;
}

.main-navigation a::before {
  left: 50%;
}

.main-navigation a::after {
  right: 50%;
}

.main-navigation a:hover {
  color: #d3ba73;
}

.main-navigation a:hover::before,
.main-navigation a:hover::after {
  width: 50%;
}

.header-empresa-section {
  position: relative;
  width: 100%;
  min-height: 210px;
  height: 210px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header-empresa-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(229, 197, 130, 0.42),
    rgba(229, 197, 130, 0.58)
  );
  z-index: 2;
}

.container-header-empresa {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0 120px;
  color: #f6f6f6;
}

.container-header-empresa h2 {
  font-family: "Lato", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
}

.container-header-empresa p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  max-width: 520px;
  line-height: 1.4;
}

.section-main-empresa {
    background-color: #ffffff;
    position: relative;
    display: flex;
}

.section-main-empresa img {
    max-width: auto;
    height: 800px;
    display: flex;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);

    max-width: 700px;
    width: 35%;

    text-align: left;
    color: #222;
}

.text-overlay h3 {
    font-family: "Lato", sans-serif;
    text-align: start;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.text-overlay p {
    font-family: "Lato", sans-serif;
    text-align: start;
    font-size: 1.05rem;
    line-height: 1.7;
}

.btn-historia {
    font-family: "Lato", sans-serif;
    display: inline-block;
    margin-top: 25px;

    padding: 14px 28px;
    background-color: #0056b3;
    color: #fff;
    font-weight: 600;
    text-decoration: none;

    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-historia:hover {
    background-color: #003f85;
    transform: translateY(-2px);
}

.empresa-lista {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.empresa-lista ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 26px;
}

.empresa-lista li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.empresa-lista li img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
}

.empresa-lista .item-texto h3 {
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b4dbb; 
    margin-bottom: 6px;
}

.empresa-lista .item-texto p {
    font-family: "Lato", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7a7a7a;
    max-width: 520px;
}

.section-area-atuacao {
    background-color: #f8f9fb;
    padding: 90px 20px;
} 

.area-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-area-atuacao h2 {
    font-family: "Lato", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b4dbb;
    margin-bottom: 16px;
}

.area-subtitle {
    font-family: "Lato", sans-serif;
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.area-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.area-card {
    background-color: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    text-align: left;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.area-card img {
    width: 56px;
    margin-bottom: 22px;
}

.area-card h3 {
    font-family: "Lato", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.area-card p {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.section-area-atuacao-check {
    background-color: #ffffff;
    padding: 90px 20px;
}

.area-check-container {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-info h2 {
    font-family: "Lato", sans-serif;
    font-size: 2.2rem;
    color: #0b4dbb;
    margin-bottom: 18px;
}

.area-info p {
    font-family: "Lato", sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.area-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.area-form input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.area-form button {
    padding: 14px 26px;
    border-radius: 30px;
    border: none;
    background-color: #0056b3;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.area-form button:hover {
    background-color: #003f85;
}

.resultado {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    margin-top: 10px;
}

.resultado.sucesso {
    color: #1a7f37;
    font-weight: 600;
}

.resultado.erro {
    color: #c62828;
    font-weight: 600;
}
.area-mapa img {
    width: 100%;
    height: auto;
}

.section-equipe {
  width: 100%;
  padding: 80px 20px;
  background-color: #f7f7f7;
}

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

.equipe-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.equipe-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.equipe-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.equipe-card {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.equipe-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.equipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.equipe-content {
  padding: 30px 25px 35px;
  text-align: center;
}

.equipe-content h3 {
    font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 12px;
}

.equipe-content p {
    font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.section-equipe {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

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

.equipe-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.equipe-header h2 {
    font-family: "Lato", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 18px;
}

.equipe-header p {
    font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 45px;
}

.equipe-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.equipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.equipe-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.equipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.equipe-card:hover .equipe-image img {
  transform: scale(1.05);
}

.equipe-content {
  padding: 32px 28px 38px;
  text-align: center;
}

.equipe-content h3 {
    font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
}

.equipe-content p {
     font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ================= RESPONSIVIDADE (CORRIGIDA) ================= */

/* -------- TABLETS GRANDES / NOTEBOOK (até 1024px) -------- */
@media (max-width: 1300px) {

  .section-main-empresa {
    padding: 0;
    flex-direction: column;
    align-items: center;
  }

  .section-main-empresa img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .text-overlay {
    position: absolute;
    top: 30%;
    left: 16%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 550px;
    z-index: 2;
  }

    .text-overlay p {
      font-size: 1rem;
  }

  .text-overlay h3 {
    font-family: "Lato", sans-serif;
    text-align: start;
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 700;
}
}

/* -------- TABLETS GRANDES / NOTEBOOK (até 1024px) -------- */
@media (max-width: 1024px) {

  .section-main-empresa {
    padding: 0;
    flex-direction: column;
    align-items: center;
  }

  .section-main-empresa img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .text-overlay {
    position: absolute;
    top: 30%;
    left: 16%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 550px;
    z-index: 2;
  }

    .text-overlay p {
      font-size: 1rem;
  }

  .text-overlay h3 {
    font-family: "Lato", sans-serif;
    text-align: start;
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 700;
}
}

/* -------- TABLETS (até 768px) -------- */
@media (max-width: 900px) {
  .menu-space{
    height: 125px;
  }
  .headerMenu {
    width: 100%;
    background-color: #ffffff;
  }

  .header-container {
    width: 100%;
  }

  .header {
    width: 100%;
    height: 88px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .linkLogo {
    display: flex;
    align-items: center;
  }

  .logoCatarinense {
    height: 40px;
    width: auto;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #2b2b2b;
    border-radius: 3px;
  }
}

@media (max-width: 768px) {
  .header-empresa-section {
    height: 180px;
    min-height: 180px;
  }

  .header-empresa-section > img {
    object-position: center center;
  }

  .container-header-empresa {
    padding: 0 24px;
    text-align: center;
  }

  .container-header-empresa h2 {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .container-header-empresa p {
    font-size: 15px;
    max-width: 100%;
    margin: 0 auto;
  }

  .text-overlay {
    max-width: 450px;
    height: auto;
    top: 25%;
  }

  .text-overlay h3{
    font-size: 20px;
  }

  .text-overlay p{
    font-size: 14px;
  }

  .empresa-lista .item-texto h3{
    font-size: 15px;

  }

    .empresa-lista .item-texto p{
    font-size: 13px;

  }

  .section-area-atuacao h2 {
    font-size: 1.8rem;
}

  .area-subtitle{
    font-size: 0.95rem
  }

  .area-card h3 {
    font-size: 1rem;
}

.area-card p {
    font-family: "Lato", sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
}

.area-check-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.area-mapa img{
  width: 70%;
}

.area-mapa{
  width: 100%;
  display: flex;
  justify-content: center;
}
}
@media (max-width: 630px){
    .text-overlay {
    max-width: 380px;
    height: auto;
    top: 26%;
  }

  .text-overlay h3{
    font-size: 15px
  }

  .text-overlay p{
    font-size: 13px;
  }

  .text-overlay a{
    font-size: 10px;
    padding: 15px;
  }

    .empresa-lista .item-texto h3{
    font-size: 13px;

  }

    .empresa-lista .item-texto p{
    font-size: 11px;
  }

  .empresa-lista{
    max-width: 500px;
  }

  .empresa-lista li img {
    width: 32px;
    height: auto;
    flex-shrink: 0;
}

.equipe-header h2{
  font-size: 20px; 
}

.equipe-header p{
  font-size: 14px; 
}

.equipe-card{
  width: 400px  ;
}

.equipe-grid{
  justify-items: center;
}
}

@media (max-width:550px) {

  
  .text-overlay {
    max-width: 300px;
    height: auto;
    top: 22%;
  }

  .text-overlay h3{
    font-size: 12px
  }

  .text-overlay p{
    font-size: 10px;
  }

  .text-overlay a{
    font-size: 10px;
    padding: 10px;
  }

    .empresa-lista .item-texto h3{
    font-size: 13px;

  }

    .empresa-lista .item-texto p{
    font-size: 11px;
  }

  .empresa-lista{
    max-width: 400px;
  }

  .area-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

  .area-form{
    flex-direction: column;
  }

  .area-info h2 {
    font-size: 1.5rem;
  }

  .area-info p{
    font-size: 0.85rem
  }
}

@media (max-width: 480px) {
  .header-empresa-section {
    height: 160px;
    min-height: 160px;
  }

  .header-empresa-section > img {
    object-position: center center;
  }

  .container-header-empresa {
    padding: 0 18px;
  }

  .container-header-empresa h2 {
    font-size: 22px;
  }

  .container-header-empresa p {
    font-size: 13px;
    line-height: 1.35;
  }

  .equipe-image{
    height: 200px;
  }
}

@media (max-width:420px){
    .text-overlay {
    max-width: 230px;
    height: auto;
    top: 18%;
  }

  .text-overlay h3{
    font-size: 9px
  }

  .text-overlay p{
    font-size: 7px;
  }

  .text-overlay a{
    font-size: 7px;
    padding: 8px;
  }

  .equipe-card{
   width: 300px;
  }

  .equipe-content h3{
    font-size: 17px;
  }

  .equipe-content p{
    font-size: 12px;

  }
}

@media (max-width: 360px) {
  .header-empresa-section {
    height: 145px;
    min-height: 145px;
  }

  .container-header-empresa h2 {
    font-size: 19px;
  }

  .container-header-empresa p {
    font-size: 12px;
  }

  .section-area-atuacao h2 {
    font-size: 1.1rem;
}

  .area-subtitle{
    font-size: 0.73rem
  }

  .area-card h3 {
    font-size: 0.9rem;
}

.area-card p {
    font-size: 0.75rem;
}
}














