@charset "UTF-8";
/*!
Theme Name: ES Thema
Author: Atipiko Brands
Author URI: https://atipikobrands.com/
Description: Um tema inclusivo para Express Supply, Lda.
Text Domain: Thema Wordpress com ACF
Version: 1
*/
/* Reset de estilos */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Work+Sans:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Configurações padrão para blocos */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reseta a aparência dos botões */
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

/* Remove estilos padrão de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove a aparência do campo de pesquisa no Safari */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Remove a aparência do contorno em formulários no Firefox */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:focus,
input:focus {
  outline: 0;
}

/* Remove a aparência de rolagem de textos em dispositivos móveis */
textarea {
  resize: none;
}

header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  padding: 15px 0;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease, top 0.2s ease;
  color: white;
}
header .site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
header .site-header .logo {
  position: relative;
  z-index: 20;
}
header .site-header .logo a .logo-black {
  display: none;
}
header .site-header .logo a img {
  width: 130px;
  height: auto;
}
@media (max-width: 768px) {
  header .site-header .logo a img {
    width: 125px;
  }
}
header .site-header .site-navigation {
  display: flex;
  align-items: center;
}
header .site-header .site-navigation .country-selector.weglot-dropdown {
  background: none; /* ou use background-color: transparent; */
}
header .site-header .site-navigation .wgcurrent {
  border: none;
}
header .site-header .site-navigation .wglanguage-name {
  color: rgb(255, 255, 255);
}
header .site-header .site-navigation .wgcurrent span {
  padding-right: 25px;
}
header .site-header .site-navigation .weglot-dropdown ul {
  border: none;
  background: none;
}
header .site-header .site-navigation .country-selector a {
  color: #ffffff;
}
header .site-header .site-navigation .wgcurrent::after {
  width: 13px;
  height: 7px;
  background: url("/images/arrowhite.svg") no-repeat;
}
header .site-header .site-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  header .site-header .site-navigation .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 0;
    right: 0;
    color: black;
    width: 100%;
    padding: 20px;
    padding-top: 150px;
    height: 100vh;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  header .site-header .site-navigation .nav-menu a {
    font-size: 25px;
  }
}
header .site-header .menu-toggle {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  header .site-header .menu-toggle {
    display: block;
  }
}
header .site-header .menu-toggle .bar {
  display: block;
  width: 35px;
  height: 3px;
  margin: 5px auto;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
header .site-header .menu-toggle.active .bar {
  background-color: rgb(0, 0, 0);
}
header .site-header .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
header .site-header .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
header .site-header .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
header .site-header.active .nav-menu {
  display: flex;
}
header .site-header.active .nav-menu .wglanguage-name {
  color: rgb(0, 0, 0);
}

header.scrolled {
  background: white;
  color: black;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header.scrolled .site-header .logo a .logo-white {
  display: none;
}
header.scrolled .site-header .logo a .logo-black {
  display: block;
}
header.scrolled .site-header .logo a img {
  width: 130px;
  height: auto;
}
@media (max-width: 768px) {
  header.scrolled .site-header .logo a img {
    width: 125px;
  }
}
header.scrolled .site-header .site-navigation .wglanguage-name {
  color: rgb(0, 0, 0);
}
header.scrolled .site-header .site-navigation .country-selector a {
  color: #000000;
}
header.scrolled .site-header .menu-toggle .bar {
  background-color: rgb(12, 12, 12);
}

footer {
  position: relative;
  z-index: 50;
}
footer .footer-content {
  background-color: #0D1F75;
}
footer .footer-content .container .footer-menu {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 95px;
  color: white;
}
@media (max-width: 850px) {
  footer .footer-content .container .footer-menu {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
@media (max-width: 575px) {
  footer .footer-content .container .footer-menu {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
footer .footer-logo img {
  padding-bottom: 20px;
}
footer .footer-logo p {
  text-align: left;
}
footer .footer-links ul li {
  margin-bottom: 10px;
}
footer h3 {
  padding-bottom: 15px;
}
footer p {
  text-align: center;
  padding: 10px 0;
}

body {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #000000;
  background-color: white;
}

.cover-image {
  position: relative;
  width: 100%;
}
.cover-image > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  padding-bottom: 10px;
}

h1 {
  font-size: 50px;
  line-height: 1;
}
@media (max-width: 850px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 50px;
  line-height: 1;
}
@media (max-width: 850px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 35px;
  }
}

h3 {
  font-size: 25px;
  line-height: 1;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 25px;
}

p {
  font-size: 17px;
  line-height: 22px;
  padding-bottom: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 540px;
    padding: 0 20px;
  }
}

.mg-mx {
  padding: 100px 0;
}
@media (max-width: 575px) {
  .mg-mx {
    padding: 50px 0;
  }
}

.mg-md {
  margin: 50px 0;
}

.mg-pd {
  margin: 20px 0;
}

.pd-mx {
  padding: 100px 0;
}
@media (max-width: 575px) {
  .pd-mx {
    padding: 50px 0;
  }
}

.pd-md {
  padding: 50px 0;
}

.pd-pd {
  padding: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px;
}
@media (max-width: 850px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 575px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.toper {
  position: relative;
  display: flex;
  align-items: center;
  height: 350px;
}
@media (max-width: 575px) {
  .toper {
    height: 200px;
  }
}
.toper .cover-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 700px;
}
.hero .cover-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(1, 1, 41, 0.5); /* Blue color with 50% opacity */
  z-index: 1;
}
@media (max-width: 575px) {
  .hero .overlay {
    width: 100%;
  }
}
.hero .container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.hero .hero-text {
  position: relative;
  z-index: 20;
  padding-right: 20px;
  width: 50%;
  color: white;
}
@media (max-width: 575px) {
  .hero .hero-text {
    width: 100%;
  }
}
.hero .hero-text .button {
  padding: 10px 30px;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.map {
  padding: 100px 0;
}
.map .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.map .container .map-text {
  text-align: center;
  width: 60%;
}
@media (max-width: 575px) {
  .map .container .map-text {
    width: 100%;
  }
}
.map .container img {
  width: 630px;
  height: auto;
}
@media (max-width: 575px) {
  .map .container img {
    width: 100%;
    height: auto;
  }
}

.accordion {
  background-color: #EFEFEF;
}
.accordion .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 575px) {
  .accordion .container {
    grid-template-columns: 1fr;
  }
}
.accordion .container .accordion-item {
  border-top: 1px solid #0D1F75;
  padding: 15px;
  cursor: pointer;
}
.accordion .container .accordion-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .container .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.accordion .container .accordion-item.open .accordion-content {
  max-height: 200px;
}
.accordion .container .accordion-item:last-child {
  border-bottom: 1px solid #0D1F75;
}

.services h2 {
  padding-bottom: 30px;
}
@media (max-width: 850px) {
  .services {
    padding: 50px 20px;
  }
}
.services .service-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 850px) {
  .services .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .services .service-cards {
    grid-template-columns: 1fr;
  }
}
.services .service-card {
  flex: 1;
  border-radius: 10px;
  background-color: #1A3EEA;
  transition: transform 0.3s;
}
.services .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.services .service-card .card-content {
  padding: 20px;
  color: white;
}

.leadership-team .container .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 850px) {
  .leadership-team .container .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .leadership-team .container .team-grid {
    grid-template-columns: 1fr;
  }
}
.leadership-team .container .team-grid .team-member img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.leadership-team .container .team-grid .team-member .position {
  font-size: 20px;
  color: #1A3EEA;
}
.title-description {
  padding-top: 50px;
}
.title-description .section-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .title-description .section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.talks .container {
  padding: 50px 25px;
}
.talks .container .talk-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 575px) {
  .talks .container .talk-content {
    grid-template-columns: 1fr;
  }
}
.talks .container .talk-content ul li {
  margin-bottom: 10px;
}
.talks .container .talk-content a {
  font-size: 20px;
  margin-bottom: 20px;
}

.banner {
  padding: 30px 0 50px 0;
}
.banner .banner-content {
  width: 100%;
  height: 450px;
}
@media (max-width: 575px) {
  .banner .banner-content {
    height: 250px;
  }
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.team h2 {
  padding-bottom: 30px;
}
@media (max-width: 850px) {
  .team {
    padding: 0 20px;
  }
}
.team .service-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 850px) {
  .team .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .team .service-cards {
    grid-template-columns: 1fr;
  }
}
.team .service-card {
  flex: 1;
  border-radius: 10px;
  background-color: #1A3EEA;
  transition: transform 0.3s;
}
.team .service-card img {
  width: 100%;
  border-radius: 10px;
}
.team .service-card .card-content {
  padding: 20px;
  color: white;
}

.cta {
  background-color: #EFEFEF;
  position: relative;
  padding: 100px 0;
}
@media (max-width: 575px) {
  .cta {
    padding: 50px 0;
  }
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cta .container {
    flex-direction: column;
    gap: 20px;
  }
}
.cta .cta-text {
  flex: 1;
  padding-right: 20px;
}
.cta .cta-text .cta-button {
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}
.cta .cta-images {
  flex: 1;
  display: flex;
}
.cta .cta-images img {
  position: absolute;
  width: 420px;
  height: auto;
  object-fit: contain;
  top: 0;
}
@media (max-width: 575px) {
  .cta .cta-images img {
    display: none;
  }
}
@media (max-width: 850px) {
  .cta .cta-images {
    display: none;
  }
}

.button {
  display: inline-block;
  background-color: #1A3EEA;
  padding: 12px 25px;
  color: white;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
}
.button:hover {
  background-color: #1230bf;
  color: white;
  transform: scale(1.05);
  border: none;
}
@media (max-width: 575px) {
  .button {
    padding: 20px;
  }
}

.btn-white {
  display: inline-block;
  border: 2px solid white;
  padding: 12px 25px;
  color: white;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
}
.btn-white:hover {
  background-color: rgb(0, 41, 17);
  border: 2px solid rgb(0, 41, 17);
  padding: 12px 25px;
  color: white;
  border: none;
}
@media (max-width: 575px) {
  .btn-white {
    padding: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
