@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
:root {
  --main-color: #ff5722; /*rgba(231, 64, 35, 1)  provavel atualização da main-color*/
  --secondary-color: #222;
  --text-color: #333;
  --light-text-color: #f0f0f0;
  --dark-bg: #2b2b2b;
  --body-font: Arial, sans-serif;
  --heading-font: "Bebas Neue", cursive;
  --slogan-font: "Pacifico", cursive;
}

@font-face {
  font-family: "Swis721 BT Black";
  src: fonts("Swis721 Blk BT Black"), url("../fonts/Swiss721BT-Black.woff") format("woff2"), url("../fonts/Swiss721BT-Black.woff2") format("woff");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
}

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

/* Cabeçalho */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 40px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-and-name {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 23px;
}

.logo-and-name img {
  height: auto;
  width: 100px;
}

.main-header h1 {
  font-size: 1em;
  font-family: "Swis721 BT Black";
  color: var(--text-color);
  font-weight: bold;
}

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

.main-nav a {
  font-weight: bold;
  font-size: 1em;
}

/*  item ativo */
.main-nav .nav-item > a {
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav .nav-item.active > a {
  background-color: var(--secondary-color);
  color: white;
}

/* Estilos para o Submenu */
.nav-item.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 22px); /* Posição vertical correta (cai para baixo) */
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  list-style: none;
  min-width: 250px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

.submenu a {
  display: block;
  padding: 5px 2px;
  font-weight: normal;
  font-size: 0.9em;
  color: var(--text-color);
  transition: color 0.2s ease;
}

.submenu a:hover {
  color: rgb(142, 123, 111);
}

.nav-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.hamburger-icon {
  display: none;
}

/*  Esconde o botão Fechar (X) e o Hamburguer (em telas grandes) */
.close-menu-btn {
  display: none;
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 768px) {
  /* --- CABEÇALHO E ÍCONES --- */
  .main-header {
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
  }
  .hamburger-icon {
    display: block;
    font-size: 1.5em;
    cursor: pointer;
    background: none;
    border: none;
    color: #555;
  }
  .main-header h1 {
    display: none;
  }
  .logo-and-name img {
    width: 50px;
  }
  .close-menu-btn {
    display: none;
  }
  /* --- PAINEL DO MENU LATERAL --- */
  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    max-width: 320px;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .main-nav.is-active {
    transform: translateX(0);
  }
  .main-nav.is-active .close-menu-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8em;
    cursor: pointer;
    background: none;
    border: none;
    color: #555;
  }
  /* --- ITENS DO MENU --- */
  .main-nav > ul { /*RESOLVI O PROBLEMA DO SUBMENU AMOSTRA, ERA SÓ COLCOAR > AO INVES DO ESPAÇO*/
    flex-direction: column;
    align-items: stretch;
    padding: 70px 0 10px 0;
  }
  .main-nav ul {
    gap: 0;
  }
  .main-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav a {
    display: block;
    padding: 15px 25px;
    text-align: left;
  }
  .main-nav .nav-item.active > a {
    background-color: var(--secondary-color);
    color: white;
  }
  /* --- ITEM "SERVICIOS" E SUBMENU --- */
  .nav-item.has-submenu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .nav-item.has-submenu > a {
    flex-grow: 1; /* Faz o link ocupar o espaço sem empurrar a seta */
  }
  .submenu-toggle {
    padding: 15px 25px;
    cursor: pointer;
  }
  .submenu-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
  }
  .has-submenu.submenu-active .submenu-toggle .fa-chevron-down {
    transform: rotate(180deg);
  }
  /* O Submenu (acordeao) */
  .submenu {
    /* Reset dos estilos de desktop */
    position: static;
    transform: none !important;
    box-shadow: none;
    left: auto !important;
    /* Comportamento de Acordeão */
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    /* Estilo visual */
    background-color: #f8f9fa;
  }
  .has-submenu.submenu-active > .submenu {
    max-height: 400px; /* Expande o submenu */
    padding-bottom: 0;
    padding-top: 0;
    opacity: 1 !important;
    visibility: visible !important; /*Submenu corrigido, só aparecia quando o cursor do mouse estava sobre*/
  }
  .submenu a {
    padding-left: 40px;
    font-size: 0.9em;
    color: #555;
    font-weight: normal;
    border-top: 1px solid #eee;
  }
}
/* Seção Hero */
.hero-section {
  position: relative;
  height: 60vh;
  /*Index imagem*/
  /* background-image: url('../img/img-inicio.jpg'); ------- removendo-----*/
  background-size: cover;
  background-position: center 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /*  Aumentei a opacidade para 0.6 para um efeito mais escuro */
  box-shadow: inset 0 0 0 1000px rgba(52, 34, 34, 0.6);
}

/* --- Ajuste na Seção Hero --- */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content img {
  height: auto;
  width: 400px;
}

.hero-cta {
  position: absolute;
  bottom: 0; /*  A barra fica no na parte de baixo da seção */
  left: 0;
  background-color: rgb(231, 64, 35);
  width: 100%;
  padding: 25px 0; /*Padding estava 30px, fazendo testes*/
  text-align: center;
  color: white;
  font-family: Pacifico, arial;
  font-size: 20px;
  margin-bottom: -70px;
}

.hero-cta h2 {
  font-weight: normal;
}

/* Seção de Boas-Vindas */
.welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  gap: 60px;
  background-color: var(--light-bg);
  margin-top: 10px; /*Teste para deixar a secçao welcome mais pra baixo para melhor visualização da img de fundo*/
}

.welcome-image-container {
  /* Força o container a ter um tamanho fixo e quadrado */
  flex: none; /* Não permite que o flexbox estique o container */
  width: 280px;
  height: 280px;
  overflow: hidden; /* Corta o excesso da imagem que sair deste quadrado */
  /* Regras de alinhamento */
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-image-container img {
  /* A imagem preenche o container quadrado, cortando o excesso */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Garante que a imagem preencha o quadrado sem distorcer, mas cortando o que não couber */
  max-width: 100%;
  max-height: 100%;
}

.welcome-text-container {
  flex: 2;
  max-width: 600px;
  text-align: center;
}

.welcome-text-container span {
  font-weight: bold;
}

.welcome-text-container h3 {
  font-family: var(--heading-font);
  font-size: 3.2em;
  margin-bottom: 30px; /* Espaçamento maior abaixo do título */
  color: #444; /* Cor mais suave para o título */
  font-weight: normal;
}

.welcome-text-container p {
  font-size: 1.5em;
  line-height: 1.6;
}

/* Estilo para a linha separadora ( hr ) */
.welcome-divider {
  border: none;
  border-top: 3.5px solid var(--secondary-color); /* Linha escura como na referência */
  width: 90%; /* Ocupa a largura total */
  max-width: 1000px; /* Limita a largura para ficar mais centralizado no layout */
  margin: 1px auto;
}

/* Seção Nossos Serviços */
.services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: white;
}

.services-section h4 {
  font-family: var(--heading-font);
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: normal;
}

.services-section span {
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  position: relative;
  overflow: hidden;
  color: white;
  cursor: pointer;
  /* Força todos os itens do grid a terem uma proporção de 1 por 1 (quadrado) */
  aspect-ratio: 1/1;
}

.service-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease; /* zoom suave */
}

/* efeito de zoom ao passar o mouse */
.service-item:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--heading-font);
  transition: opacity 0.3s ease;
}

.service-item:hover .service-overlay {
  opacity: 0.9;
}

.service-overlay i {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.service-overlay h5 {
  font-size: 1.5em;
  letter-spacing: 1px;
}

.services-section hr {
  border: none;
  border-top: 3px solid var(--main-color);
  width: 90%;
  max-width: 1000px;
  margin: 50px auto 0;
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 768px) {
  .welcome-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
  }
  .welcome-text-container h3, .section-heading, .hero-page-title, .team-heading {
    font-size: 2.2em;
  }
  .welcome-text-container p {
    font-size: 1.2em;
  }
}
/* Rodapé */
.main-footer {
  background-color: var(--dark-bg);
  color: var(--light-text-color);
  padding: 60px 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-left: 50px; /*Centralizei mais os elementos da footer*/
}

.footer-column h6 {
  font-family: var(--heading-font);
  font-size: 1.5em;
  margin-bottom: 15px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column p {
  margin-bottom: 8px;
}

.footer-column i {
  margin-right: 8px;
  color: var(--main-color);
}

.footer-social-icons a {
  color: var(--light-text-color);
  margin-right: 15px;
}

/* EFEITO HOVER PARA LINKS NO RODAPÉ  */
/* Define a transição suave para a mudança de cor (laranja) */
.footer-column ul li a {
  transition: color 0.2s ease;
}

/* Muda a cor do link para laranja ao passar o mouse */
.footer-column ul li a:hover {
  color: var(--main-color); /* Usa a cor laranja principal do site */
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    margin-left: 0;
  }
}
/* ======================================= */
/* ESTILOS DA PÁGINA NOSOTROS */
/* ======================================= */
/*  Imagem da página Nosotros */
body.page-nosotros .hero-section {
  background-image: url("../img/nosotros.jpg");
}

/* Estilo do Banner/Hero da Equipe */
.team-member.reverse-layout .member-image-container img {
  margin-top: 170px;
}

.page-nosotros .hero-content img {
  height: auto;
  width: 300px;
  margin-bottom: 290px;
  /*margin-left: 600px;* TESTANDO/
  /*opacity: 0.5;*/
}

.page-nosotros hr {
  border: none;
  border-top: 3px solid var(--main-color);
  width: 1000px;
  margin: 50px auto 0;
}

/*Main pra baixo (( CODIGO MORTO )) /////////////////////////////
.nosotros-hero-banner {
    background-image: url('img/fundo-equipe-nosotros.jpg'); 
    background-size: cover;
    background-position: center center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.5); 
}

.logo-hero {
    text-align: center;
    color: white;
}

.logo-hero img {
    width: 150px;
    height: auto;
}

.logo-hero h1 {
    font-family: var(--heading-font);
    font-size: 1.8em;
}
*/
/* Inicio/Nosotros*/
.breadcrumb-nav {
  margin-top: 20px;
  font-size: 1.2em;
  color: #666;
  margin-left: 300px;
}

.breadcrumb-nav a {
  color: var(--main-color);
}

/* Blocos de Conteúdo Alternado (Missão, Visão, Valores) */
.info-block {
  display: flex;
  flex-direction: row; /* Imagem à esquerda, texto à direita */
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Classe para alternar a cor de fundo */
.info-block.alt-bg {
  background-color: #f8f9fa; /* Um cinza bem claro (fazendo testes) */
}

/* Classe para inverter a ordem: Imagem à direita, texto à esquerda */
.info-block.reverse-layout {
  flex-direction: row-reverse;
}

/* --------------------------------------- */
/* Container da Imagem */
.info-block-image {
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.info-block-image-fachada {
  flex: 1;
  max-width: 1000px;
  text-align: center;
}

.info-block-image-fachada img {
  max-width: 500px;
  height: auto;
}

.info-block-image img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------- */
/* Container do Texto */
.info-block-text {
  flex: 1.5;
  max-width: 600px;
}

/* --------------------------------------- */
.section-heading {
  font-family: var(--heading-font);
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.info-block-text p {
  font-size: 1.2em;
  line-height: 1.6;
}

.info-block-text ul {
  font-size: 1.2em;
  margin-top: 15px;
  margin-left: 20px;
}

.info-block-text span {
  font-weight: bold;
}

.info-block-text h2 {
  font-weight: normal;
}

.section-divider {
  border: none;
  border-top: 2px solid var(--main-color);
  width: 100px;
  margin: 25px 0;
}

/* --------------------------------------- */
/* Seção Equipe (Layout de 2 Colunas) */
.team-section span {
  font-weight: bold;
}

.team-section h3 {
  font-weight: normal;
}

.team-section h2 {
  font-weight: normal;
}

.team-heading {
  text-align: center;
  padding-top: 60px;
  margin-bottom: 60px;
  font-size: 60px;
}

.team-member {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-member.reverse-layout {
  flex-direction: row-reverse;
}

.member-image-container {
  flex: 1;
  max-width: 400px;
}

.member-image-container img {
  width: 100%;
  height: auto;
  max-width: 350px;
  border-radius: 5px;
}

.member-text-container {
  flex: 2;
  max-width: 600px;
}

.member-text-container h3 {
  font-family: var(--heading-font);
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.member-text-container p {
  line-height: 1.5;
  font-size: 25px;
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 768px) {
  /* ======================================= */
  /* RESPONSIVIDADE PÁGINA 'NOSOTROS'      */
  /* ======================================= */
  .breadcrumb-nav {
    margin-left: 0;
    text-align: center;
    padding: 0 20px;
  }
  /* Ajusta os blocos de Missão, Visão e Valores */
  .info-block {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  .info-block-text {
    text-align: left;
    max-width: 100%;
    font-size: 1.2em;
  }
  .info-block-text h2 {
    font-size: 3em;
  }
  .info-block.reverse-layout {
    flex-direction: column;
  }
  /* Ajusta os blocos dos membros da equipe */
  .team-member,
  .team-member.reverse-layout {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }
  .team-member .member-text-container {
    order: 1;
    text-align: left;
    max-width: 100%;
  }
  .team-member .member-image-container {
    order: 2;
    max-width: 100%;
    width: 100%;
  }
  .team-member.reverse-layout .member-image-container img {
    margin-top: 0px;
  }
  .member-text-container h3 {
    font-size: 2.5em;
  }
  .member-text-container p {
    font-size: 1.3em;
    line-height: 1.6;
  }
  .member-image-container img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto 0 auto;
  }
  .page-nosotros hr {
    width: 90%;
  }
  .team-section h2 {
    font-size: 3em;
  }
  .info-block-image-fachada {
    max-width: 100%;
  }
  .info-block-image-fachada img {
    width: 100%;
    max-width: 100%;
  }
}
/* ======================================= */
/* ESTILOS DA PÁGINA CONTACTENOS */
/* ======================================= */
/* Imagem da página Contactenos*/
body.page-contactenos .hero-section {
  background-image: url("../img/contactenosfotoTESTE.JPG");
}

.page-contactenos .hero-content img {
  height: auto;
  width: 300px;
  margin-bottom: 270px;
}

.contact-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 3em;
  color: var(--secondary-color);
  padding-top: 60px;
  margin-bottom: 40px;
}

.contact-layout {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 40px;
  align-items: flex-start;
}

.contact-info-column {
  flex: 1;
  max-width: 450px;
  line-height: 1.6;
}

.contact-detail-heading {
  font-family: var(--heading-font);
  font-size: 1.2em;
  color: var(--main-color);
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-item {
  font-size: 1.1em;
}

.contact-item i {
  margin-right: 8px;
}

.contact-map-column {
  flex: 1.5;
  width: 100%;
  max-width: 800px;
  height: 450px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.google-map-iframe {
  /* Faz o iframe preencher totalmente o contêiner */
  width: 100%;
  height: 100%;
  display: block; /* Remove espaços extras abaixo do iframe */
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 768px) {
  /* ======================================= */
  /* RESPONSIVIDADE PÁGINA 'CONTÁCTENOS'   */
  /* ======================================= */
  /* Ajusta o layout principal da página */
  .contact-layout {
    flex-direction: column;
    padding: 0 20px 40px 20px;
    gap: 40px;
    align-items: center;
  }
  /* Garante que a coluna de informações use o espaço corretamente */
  .contact-info-column {
    max-width: 100%;
    text-align: center;
  }
  /* Garante que o container do mapa use o espaço corretamente */
  .contact-map-column {
    max-width: 100%;
    width: 100%;
  }
  .contact-detail-heading {
    font-size: 1.5em;
  }
}
/* ======================================= */
/* ESTILOS DA PÁGINA SERVICIOS (BANNERS)   */
/* ======================================= */
/*Imagem da página servicios*/
body.page-servicios .hero-section {
  background-image: url("../img/serviciosIMG.jpg");
}

/*  Inicio/Servicios*/
.page-servicios .breadcrumb-nav {
  margin-top: 30px;
  font-size: 1.2em;
  color: #666;
  margin-left: 300px;
  margin-bottom: 30px;
}

.service-banner {
  position: relative;
  padding: 80px 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  color: white;
}

.page-servicios .hero-content img {
  height: auto;
  width: 350px;
  /*opacity: 0.5;*/
}

/* Overlay escuro para melhorar a legibilidade do texto */
.service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
}

.service-title {
  flex: 1;
  text-align: center;
}

.service-title h2 {
  font-family: var(--heading-font);
  font-size: 3.5em; /* 56px */
  line-height: 1.2;
  color: var(--main-color); /* Laranja para destaque */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-details {
  flex: 1;
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details li {
  font-size: 1.1em; /* 17.6px */
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.service-details li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-color); /* Laranja */
  font-size: 0.8em;
}

/* Inverte a ordem para o layout alternado */
.service-banner.layout-reverse .service-content {
  flex-direction: row-reverse;
}

/* --------------------------------------- */
/* --- IMAGENS DE FUNDO ESPECÍFICAS PARA CADA SERVIÇO --- */
#capacitaciones {
  background-image: url("../img/CapacitacionesFundoServicios.jpg");
}

#clima-cultura {
  background-image: url("../img/CulturaServicios-FUNDO.png");
}

#personal-branding {
  background-image: url("../img/PERSONALBRADING-SRVICIOS.jpg");
}

#talleres {
  background-image: url("../img/TALLERES-SERVICIOSFUNDO.jpeg");
}

#reclutamiento {
  background-image: url("../img/Reclutamiento-FUNDOSERVICIOS.jpg");
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
/* ======================================= */
/* RESPONSIVIDADE PÁGINA 'SERVICIOS' */
/* ======================================= */
@media (max-width: 480px) { /*Correção da página servicios, em telas menores como iphone X e o 7, estava saindo dos limites da responsividade*/
  .service-title h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0 10px;
    white-space: normal;
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2em;
    overflow-wrap: break-word;
    padding: 0 15px;
  }
  .hero-content img {
    width: 80%;
    max-width: 350px;
  }
  /* --- Ajustes Gerais --- */
  .page-servicios .breadcrumb-nav {
    margin-left: 0;
    text-align: center;
    padding: 0 20px;
  }
  /* --- Ajustes nos Banners --- */
  .service-banner {
    padding: 60px 20px;
  }
  .service-content {
    flex-direction: column;
    gap: 25px;
  }
  /* Ajusta as colunas de título e detalhes quando empilhadas */
  .service-title,
  .service-details {
    flex: 1 1 100%; /* Permite que ocupem 100% da largura */
    width: 100%;
    text-align: center;
  }
  /* Reduz o tamanho da fonte dos títulos dos banners */
  .service-title h2 {
    font-size: 2.5em;
  }
  /* Faz com que a lista de tópicos fique centralizada mas com texto à esquerda */
  .service-details ul {
    display: inline-block;
    text-align: left;
  }
}
/* ================================================= */
/* ESTILOS DA PÁGINA CAPACITACIONES     */
/* ================================================= */
/* --- Hero Section das Páginas de Serviço --- */
/* Imagem de fundo específica para a página de Capacitaciones */
body.page-capacitaciones .hero-section {
  background-image: url("../servicios/img/CAPACITACIONES-imgFUNDO.jpg");
  background-position: center 55%;
}

.hero-page-title {
  font-family: var(--heading-font);
  font-size: 4em; /* 64px */
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}

.hero-divider {
  border: none;
  border-top: 12px solid var(--main-color);
  width: 90%;
  max-width: 1000px;
  /* 15px de margem em cima, 'auto' nos lados (para centralizar), 0 embaixo */
  margin: 15px auto 0;
}

.hero-content h2 {
  font-size: 60px;
  margin-bottom: 0;
}

/* --- Conteúdo Principal --- */
/* Linha HR LARANJA no final da seção de conteúdo */
.content-divider {
  border: none;
  border-top: 3px solid var(--main-color);
  max-width: 1200px;
  margin: 40px auto;
}

body.page-capacitaciones .info-block-image {
  flex: none;
  width: 760px;
  max-width: none;
}

body.page-capacitaciones .info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0; /*Gap é o espaçamento entre 2 elementos*/
  padding: 80px 100px;
  max-width: 12000px;
  margin: 0 auto;
}

.page-capacitaciones .info-block h2 {
  font-size: 65px;
}

.page-capacitaciones .info-block p {
  font-size: 25px;
}

.page-capacitaciones .hero-divider {
  border: none;
  border-top: 12px solid rgb(231, 64, 35);
  width: 90%;
  max-width: 1100px;
  margin: 15px auto 0;
}

.capacitaciones-section-full {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.capacitacion-full-item {
  display: flex; /* Layout principal em Flexbox */
  align-items: center;
  margin-bottom: 60px;
  gap: 40px; /* Espaçamento entre imagem e texto */
}

.item-visual {
  flex: 1;
  max-width: 50%;
}
.item-visual img {
  width: 100%;
  height: 300px; /* Altura fixa para ser imponente */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.item-content-full {
  flex: 1;
  max-width: 50%;
}
.item-content-full h5 {
  font-family: var(--heading-font);
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.item-content-full p {
  line-height: 1.6;
  color: var(--text-color);
}

/* ================================================= */
/* ESTILOS DA PÁGINA CLIMA Y CULTURA    */
/* ================================================= */
/* --- Hero Section das Páginas de Serviço --- */
/* Imagem de fundo específica para a página de Capacitaciones */
body.page-clima .hero-section {
  background-image: url("../servicios/img/clima-cultura-imgFUNDO.jpg");
  background-position: center 55%;
}

.hero-page-title {
  font-family: var(--heading-font);
  font-size: 4em; /* 64px */
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}

.hero-divider {
  border: none;
  border-top: 12px solid var(--main-color);
  width: 1000px;
  margin: 15px auto 0;
}

.hero-content h2 {
  font-size: 60px;
  margin-bottom: 0;
}

/* --- Conteúdo Principal --- */
/* HR laranja no final da seção de conteúdo */
.content-divider {
  border: none;
  border-top: 3px solid var(--main-color);
  max-width: 1200px;
  margin: 40px auto;
}

body.page-clima .info-block-image {
  flex: none;
  width: 600px;
  max-width: none;
}

body.page-clima .info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 100px;
  max-width: 12000px;
  margin: 0 auto;
}

.page-clima .info-block h2 {
  font-size: 65px;
}

.page-clima .info-block p {
  font-size: 25px;
}

.page-clima .hero-divider {
  border: none;
  border-top: 12px solid rgb(231, 64, 35);
  width: 1200px;
  margin: 15px auto 0;
}

/* ================================================= */
/* ESTILOS DA PÁGINA RECLUTAMIENTO  */
/* ================================================= */
/* --- Hero Section das Páginas de Serviço --- */
/* Imagem de fundo específica para a página de Capacitaciones */
body.page-reclutamiento .hero-section {
  background-image: url("../servicios/img/RECLUTAMIENTO-imgFUNDO.jpg");
  background-position: center 55%;
}

.hero-page-title {
  font-family: var(--heading-font);
  font-size: 4em; /* 64px */
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}

.hero-divider {
  border: none;
  border-top: 12px solid var(--main-color);
  width: 1000px;
  margin: 15px auto 0;
}

.hero-content h2 {
  font-size: 60px;
  margin-bottom: 0;
}

/* --- Conteúdo Principal --- */
/* HR laranja no final da seção de conteúdo */
.content-divider {
  border: none;
  border-top: 3px solid var(--main-color);
  max-width: 1200px;
  margin: 40px auto;
}

body.page-reclutamiento .info-block-image {
  flex: none;
  width: 600px;
  max-width: none;
}

body.page-reclutamiento .info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 100px;
  max-width: 12000px;
  margin: 0 auto;
}

.page-reclutamiento .info-block h2 {
  font-size: 50px;
}

.page-reclutamiento .info-block p {
  font-size: 23px;
}

.page-reclutamiento .hero-divider {
  border: none;
  border-top: 12px solid rgb(231, 64, 35);
  width: 1000px;
  margin: 15px auto 0;
}

/* ================================================= */
/* ESTILOS DA PÁGINA PERSONAL BRANDING  */
/* ================================================= */
/* --- Hero Section das Páginas de Serviço --- */
/* Imagem de fundo específica para a página de Capacitaciones */
body.page-personal .hero-section {
  background-image: url("../img/serviciosIMG.jpg");
}

.hero-page-title {
  font-family: var(--heading-font);
  font-size: 4em; /* 64px */
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}

.hero-divider {
  border: none;
  border-top: 12px solid var(--main-color);
  width: 1000px;
  margin: 15px auto 0;
}

.hero-content h2 {
  font-size: 60px;
  margin-bottom: 0;
}

/* --- Conteúdo Principal --- */
/* HR laranja no final da seção de conteúdo */
.content-divider {
  border: none;
  border-top: 3px solid var(--main-color);
  max-width: 1200px;
  margin: 40px auto;
}

body.page-personal .info-block-image {
  flex: none;
  width: 400px;
  max-width: none;
}

body.page-personal .info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 100px;
  max-width: 12000px;
  margin: 0 auto;
}

.page-personal .info-block h2 {
  font-size: 60px;
}

.page-personal .info-block p {
  font-size: 25px;
}

.page-personal .hero-divider {
  border: none;
  border-top: 12px solid rgb(231, 64, 35);
  width: 800px;
  margin: 15px auto 0;
}

/* ================================================= */
/* ESTILOS DA PÁGINA TALLERES  */
/* ================================================= */
/* --- Hero Section das Páginas de Serviço --- */
/* Imagem de fundo específica para a página de Capacitaciones */
body.page-talleres .hero-section {
  background-image: url("../img/img-inicio.jpg");
}

.hero-page-title {
  font-family: var(--heading-font);
  font-size: 4em; /* 64px */
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}

.hero-divider {
  border: none;
  border-top: 12x solid var(--main-color);
  width: 1000px;
  margin: 15px auto 0;
}

.hero-content h2 {
  font-size: 60px;
  margin-bottom: 0;
}

/* --- Conteúdo Principal --- */
/* HR laranja no final da seção de conteúdo */
.content-divider {
  border: none;
  border-top: 3px solid var(--main-color);
  max-width: 1200px;
  margin: 40px auto; /* Espaçamento acima e abaixo */
}

body.page-talleres .info-block-image {
  flex: none;
  width: 600px;
  max-width: none;
}

body.page-talleres .info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 100px;
  max-width: 12000px;
  margin: 0 auto;
}

.page-talleres .info-block h2 {
  font-size: 50px;
}

.page-talleres .info-block p {
  font-size: 23px;
}

.page-talleres .hero-divider {
  border: none;
  border-top: 12px solid rgb(231, 64, 35);
  width: 600px;
  margin: 15px auto 0;
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 768px) {
  /* ============================================================= */
  /* RESPONSIVIDADE DAS PÁGINAS DO SUBMENU DE SERVICIOS */
  /* ============================================================= */
  body.page-capacitaciones .info-block,
  body.page-clima .info-block,
  body.page-personal .info-block,
  body.page-talleres .info-block,
  body.page-reclutamiento .info-block {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  body.page-capacitaciones .info-block-image,
  body.page-clima .info-block-image,
  body.page-personal .info-block-image,
  body.page-talleres .info-block-image,
  body.page-reclutamiento .info-block-image {
    width: 100%;
    max-width: 450px;
  }
  body.page-capacitaciones .info-block h2,
  body.page-clima .info-block h2,
  body.page-personal .info-block h2,
  body.page-talleres .info-block h2,
  body.page-reclutamiento .info-block h2 {
    font-size: 2.2em;
  }
  body.page-capacitaciones .info-block p,
  body.page-clima .info-block p,
  body.page-personal .info-block p,
  body.page-talleres .info-block p,
  body.page-reclutamiento .info-block p {
    font-size: 1.1em;
    text-align: left;
  }
  body.page-capacitaciones .hero-divider,
  body.page-clima .hero-divider,
  body.page-personal .hero-divider,
  body.page-talleres .hero-divider,
  body.page-reclutamiento .hero-divider {
    width: 80%;
  }
  body.page-capacitaciones .hero-content h2,
  body.page-clima .hero-content h2,
  body.page-personal .hero-content h2,
  body.page-talleres .hero-content h2,
  body.page-reclutamiento .hero-content h2 {
    font-size: 2.1em;
    overflow-wrap: break-word;
    padding: 0 15px;
  }
}
/* Estilo da seção que envolve o carrossel */
.clients-section {
  padding: 20px;
  text-align: center;
}

.clients-section h4 {
  font-family: var(--heading-font);
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: normal;
}

.clients-section span {
  font-weight: bold;
}

/* O container do Swiper (Ajuste a altura para o layout!) */
.clients-swiper {
  width: 90%;
  height: 120px;
  margin: 0 auto;
}

/* Estilo de cada slide/logo */
.clients-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients-swiper .swiper-slide img {
  max-width: 300px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.clients-swiper .swiper-slide img:hover {
  opacity: 1;
}

/*-----------------------------------------------------------------------------*/
/*--------------------------------------------*/
/*-------------*/
/* Carrossel background-image INDEX ( INICIO) */
.hero-bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 3. Estilo dos Slides */
.hero-bg-swiper .swiper-slide {
  background-size: cover;
}

.hero-slide-1 {
  background-image: url("../img/img-inicio.jpg");
  background-position: center 33%;
  box-shadow: inset 0 0 0 1000px rgba(52, 34, 34, 0.6);
}

.hero-slide-2 {
  background-image: url("../img/RECLUTAMIENTOFOTO.jpeg");
  background-position: center 33%;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
}

.hero-slide-3 {
  background-image: url("../img/foto-index.JPG");
  background-position: center 33%;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
}

.hero-slide-4 {
  background-image: url("../img/galeria/galeria12.jpg");
  background-position: center 33%;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.hero-slide-5 {
  background-image: url("../img/fachadaconsultoria.jpeg");
  background-position: center bottom;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.7);
}

/* 4. CONTEÚDO DE SOBREPOSIÇÃO (Logo e Slogan) */
.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.gallery-page-title {
  padding: 60px 40px 30px;
  text-align: center;
  background-color: var(--light-bg);
}
.gallery-page-title h4 {
  font-family: var(--heading-font);
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.gallery-page-title h4 span {
  color: rgb(0, 0, 0);
}
.gallery-page-title p {
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto;
}

.page-galeria .hero-section {
  background-image: url("../img/galeria/galeria7.jpg");
  background-position: 33%;
}

.gallery-section {
  padding: 40px 20px 80px;
  text-align: center;
  background-color: white;
}

.gallery-grid {
  /* Layout padrão para telas maiores (Desktop) */
  display: grid;
  /* 4 Colunas para telas grandes */
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05); /* Efeito zoom ao passar o mouse */
}
.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ======================================= */
/* ======== ESTILOS RESPONSIVOS ==========  */
/* ======================================= */
@media (max-width: 1024px) {
  /* Ajustes para Tablets */
  .gallery-grid {
    /* Muda para 3 colunas em tablets */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  /* Ajustes para Celulares */
  .gallery-section {
    padding: 30px 10px 60px; /* Reduz o padding para tela pequena */
  }
  .gallery-grid {
    /* Muda para 2 colunas em celulares */
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item img {
    height: 180px; /* Reduz a altura das fotos para caberem melhor na tela */
  }
}
@media (max-width: 480px) {
  /* Ajustes para celulares muito pequenos */
  .gallery-grid {
    /* Se for muito pequeno, pode ir para uma coluna ou manter 2 */
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gallery-item img {
    height: 250px; /* Volta a uma altura maior quando é coluna única */
  }
}/*# sourceMappingURL=style.css.map */