@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

p {
  font-weight: 400;
  color: #303030;
}

h2 {
  font-weight: 500;
  font-size: 2.5vw;
  color: #303030;
}

h3 {
  color: #303030;
}

section {
  float: left;
  width: 100%;
}

header {
  position: absolute;
  z-index: 999;
  width: 100%;
}

header img {
  width: 12%;
}

.logo img{
  width:10%;
}

.login_open, .button_open_login, .mobile_default, .mapa_brazil_mobile, .login_close, .login_rp{
    display: none;
  }

.container_top,
.container_why,
.container_about {
  width: 90%;
  margin: 0 auto;
  padding: 2vw 0 0 0;
}

/* Header Right Actions - Container para bandeiras e menu */
.header_right_actions {
  float: right;
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-top: -0.61vw;
  /* padding-top: 0.5vw; */
}

/* Language Selector - Google Translate */
.language_selector {
  display: flex;
  gap: 0.5vw;
  align-items: center;
}

/* Select de Idiomas */
.lang_select {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  padding: 0.5vw 1vw 0.5vw 2.8vw;
  font-size: 0.9vw;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 10vw;
  background-repeat: no-repeat;
  background-position: 0.7vw center;
  background-size: 1.2vw;
}

.lang_select:hover {
  border-color: #e89127;
  background: rgba(232, 145, 39, 0.2);
  box-shadow: 0 4px 15px rgba(232, 145, 39, 0.4);
}

.lang_select:focus {
  border-color: #e89127;
  background: rgba(232, 145, 39, 0.15);
}

.lang_select option {
  background: #103349;
  color: #fff;
  padding: 0.5vw 0.5vw 0.5vw 2.4vw;
  background-repeat: no-repeat;
  background-position: 0.6vw center;
  background-size: 1.1vw;
}

/* Bandeiras no dropdown */
.lang_select option[value="pt"] {
  background-image: url("img/flags/br.png");
}

.lang_select option[value="en"] {
  background-image: url("img/flags/us.png");
}

.lang_select option[value="es"] {
  background-image: url("img/flags/es.png");
}

.lang_btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 2.5vw;
  height: 2.5vw;
  padding: 0.3vw;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lang_btn:hover {
  border-color: #e89127;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(232, 145, 39, 0.4);
}

.lang_btn:active {
  transform: scale(0.95);
}

/* Botão ativo (idioma selecionado) */
.lang_btn.active {
  border-color: #e89127;
  background: rgba(232, 145, 39, 0.2);
  box-shadow: 0 0 10px rgba(232, 145, 39, 0.5);
}

.flag_icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Flag Emoji - Alternativa sem imagens */
.flag_emoji {
  font-size: 1.5vw;
  line-height: 1;
  display: block;
}

/* Dropdown de idiomas (bandeirinhas) */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  padding: 0.5vw 1vw;
  font-size: 0.9vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.dropbtn .drop_flag_emoji {
  font-size: 1vw;
}

.dropbtn:hover {
  border-color: #e89127;
  background: rgba(232, 145, 39, 0.2);
}

.bandeiras_drop {
  width: 1.4vw;
  height: 1.4vw;
  object-fit: cover;
  border-radius: 50%;
}

.drop_label {
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #103349;
  min-width: 12vw;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 0.5vw;
  overflow: hidden;
}

.dropdown-content a {
  color: #fff;
  padding: 0.6vw 1vw;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6vw;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #0b2636;
}

.dropdown-content.show {
  display: block;
}

/* Hide Google Translate toolbar */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .header_right_actions {
    gap: 2vw;
  }

  .language_selector {
    gap: 1vw;
  }

  .lang_select {
    font-size: 2.5vw;
    padding: 1.5vw 2vw 1.5vw 5vw;
    min-width: 30vw;
    background-position: 1.6vw center;
    background-size: 3vw;
  }

  .lang_btn {
    width: 5vw;
    height: 5vw;
    padding: 0.5vw;
    border-width: 1px;
  }

  .flag_emoji {
    font-size: 3vw;
  }
}

.menu_top,
.close_menu {
  width: 2.5vw;
  padding: 0.5vw 1vw 1vw 0.5vw;
  cursor: pointer;
}

.menu_top {
  float: none;
  /* Removido float pois está em flex container */
}

.close_menu {
  position: absolute;
  top: 2vw;
  left: 4vw;
}

.line_burg,
.line_burg02,
.line_burg03,
.line_close,
.line_close02 {
  width: 2vw;
  height: 0.1vw;
  background: #fff;
  margin-top: 0.6vw;
  float: right;
  transition: all .4s ease-in-out;
}

.line_close {
  transform: rotate(45deg);
}

.line_close02 {
  transform: rotate(-45deg);
  margin-top: 0vw;
}

.content_links {
  width: 40%;
  padding: 10vw 5vw;
}

.open_menu {
  width: 45%;
  height: 100vw;
  background: #103349e3;
  right: -50vw;
  position: fixed;
  top: 0;
}

.open_menu a {
  text-transform: uppercase;
  letter-spacing: 0.01vw;
  color: #fff;
  display: block;
  text-decoration: none;
  font-weight: 200;
  padding: 1vw 1vw 1vw 0vw;
  background-image: url("img/line.png");
  transition: all 0.4s ease-in-out;
  background-position-x: -4vw;
  background-repeat: no-repeat;
  font-size: 1.1vw;
}

.open_menu a:hover {
  background-position-x: -0vw;
  color: #e89127;
}

#banner-video {
  width: 100%;
  height: 40vw;
}

/* ==================================
   LOGIN BARRA - Estilização Moderna e Usável
   ================================== */

#login_barra {
background: rgb(28 86 121 / 58%);
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 99;
  padding: 1.2vw 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 1;
}

#login_barra .container_login {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 2vw;
}

#login_barra form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7vw;
  flex-wrap: wrap;
}

#login_barra form .text_login {
  color: #fff;
  font-size: clamp(12px, 0.9vw, 16px);
  margin: 0;
  width: 100%;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 0.8vw;
}

/* Mensagem de erro de login */
#login_barra .alert-error {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  padding: 0.8vw 1.5vw;
  border-radius: 6px;
  margin-bottom: 1vw;
  width: 100%;
  text-align: center;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  animation: slideDown 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wrapper dos inputs com ícones */
#login_barra .input-wrapper {
  position: relative;
  display: inline-block;
}

#login_barra .input-icon {
  position: absolute;
  left: 1.2vw;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: clamp(14px, 0.9vw, 16px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}

#login_barra .input-wrapper:focus-within .input-icon {
  color: #e89127;
}

#login_barra input {
  border-radius: 6px;
  padding: 0.8vw 1.2vw 0.8vw 3vw;
  width: clamp(200px, 20vw, 280px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  font-size: clamp(12px, 0.8vw, 15px);
  transition: all 0.3s ease;
  outline: none;
  font-family: Arial, sans-serif;
}

#login_barra input:focus {
  border-color: #e89127;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 145, 39, 0.1);
  transform: translateY(-2px);
}

#login_barra input::placeholder {
  color: #999;
  font-weight: 300;
}

#login_barra .login {
  background: linear-gradient(135deg, #e89127 0%, #f5a742 100%);
  color: #fff;
  border: 0;
  padding: 0.8vw 3vw;
  border-radius: 6px;
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(232, 145, 39, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
}

#login_barra .login i {
  font-size: 0.8vw;
}

#login_barra .login:hover {
  background: linear-gradient(135deg, #f5a742 0%, #e89127 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 145, 39, 0.4);
}

#login_barra .login:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(232, 145, 39, 0.3);
}

#login_barra .contact_us {
  color: #fff;
  font-size: clamp(11px, 0.7vw, 14px);
  margin: 0;
  text-align: center;
  width: 100%;
  margin-top: 0.5vw;
  font-weight: 300;
  letter-spacing: 0.3px;
}

#login_barra .contact_us strong,
#login_barra .contact_us a {
  color: #e89127;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

#login_barra .contact_us a:hover {
  color: #f5a742;
  text-decoration: underline;
}

/* Estilo para quando o usuário está logado */
#login_barra .logged-in-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5vw;
  width: 100%;
}

#login_barra .welcome-message {
  color: #fff;
  font-size: clamp(13px, 1vw, 17px);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.8vw;
  font-weight: 300;
  letter-spacing: 0.5px;
}

#login_barra .welcome-message i {
  font-size: clamp(18px, 1.4vw, 22px);
  color: #e89127;
}

#login_barra .welcome-message strong {
  color: #e89127;
  font-weight: 600;
}

#login_barra .logged-actions {
  display: flex;
  gap: 1vw;
  align-items: center;
}

#login_barra .btn-admin,
#login_barra .btn-logout {
  padding: 0.8vw 2vw;
  border-radius: 6px;
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  text-decoration: none;
  border: 2px solid transparent;
}

#login_barra .btn-admin {
  background: linear-gradient(135deg, #e89127 0%, #f5a742 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 145, 39, 0.3);
}

#login_barra .btn-admin:hover {
  background: linear-gradient(135deg, #f5a742 0%, #e89127 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 145, 39, 0.4);
}

#login_barra .btn-logout {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

#login_barra .btn-logout:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

#login_barra .btn-admin i,
#login_barra .btn-logout i {
  font-size: clamp(13px, 0.9vw, 16px);
}


/* Ultra Wide */
@media screen and (min-width: 2450px) {
  .content_links{
    padding: 7vw 5vw;
  }
  .open_menu a{
    padding: 0.8vw 1vw 0.8vw 0vw;
  }
  #login_barra{
    z-index: 2 !important;
  }

}

/* Responsivo para tablets */
@media screen and (max-width: 1024px) {
  #login_barra {
    padding: 2vw 0;
  }

  #login_barra form {
    gap: 1.5vw;
  }

  #login_barra input {
    width: 28vw;
  }
}

/* Responsivo para mobile */
@media screen and (max-width: 768px) {
  #login_barra {
    position: relative;
    padding: 4vw 2vw;
  }

  #login_barra form {
    flex-direction: column;
    gap: 3vw;
  }

  #login_barra .input-wrapper {
    width: 100%;
  }

  #login_barra input {
    width: 100%;
    padding: 3vw 4vw 3vw 10vw;
    font-size: 14px;
  }

  #login_barra .input-icon {
    left: 4vw;
    font-size: 16px;
  }

  #login_barra .login {
    width: 100%;
    padding: 3vw 4vw;
    font-size: 14px;
    justify-content: center;
  }

  /* #login_barra form .text_login,
  #login_barra .contact_us {
    font-size: 13px;
  } */

  /* Estilos responsivos para quando está logado */
  #login_barra .logged-in-info {
    flex-direction: column;
    gap: 3vw;
    text-align: center;
  }

  #login_barra .welcome-message {
    justify-content: center;
    font-size: 14px;
  }

  #login_barra .logged-actions {
    flex-direction: column;
    width: 100%;
    gap: 2vw;
  }

  #login_barra .btn-admin,
  #login_barra .btn-logout {
    width: 100%;
    padding: 3vw 4vw;
    font-size: 14px;
    justify-content: center;
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

#video-banner {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
}

#video-banner h2 {
  color: #fff;
}

.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  /* 100 * (16/9) — garante proporção do vídeo */
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 56.25vw;
  /* 100 * (9/16) — mantém proporção */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.overlay-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
  padding-top: 10vw;
  width: 80%;
  margin-left: 5%;
}

#video-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

#video-banner span {
  font-weight: 200;
}

/* #video-banner h2{
  color: #303030;
} */

/* #we_believe{
  width: 36%;
  float: left;
  margin-left: 10%;
} */
#we_believe h2 {
  font-size: 2.5vw;
  color: #303030;
}

.content_believe01 {
  width: 36%;
  float: left;
  background-color: #F8F8F8;
  padding: 7% 0 17vw 10%;
}

.content_believe01 p {
  line-height: 2.4vw;
  font-size: 1.4vw;
  padding-right: 15%;
}

.content_believe01 .line {
  width: 9%;
  height: 0.2vw;
  background: #E89127;
}

#creation_magic .line,
#beyond .line,
#why_blumar .line,
#about_title .line,
#about_journey .line,
#brazil_info .line, .brazil_title .line {
  width: 4%;
  height: 0.2vw;
  background: #E89127;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>> DRAG SCROLL*/

#content_believe02 {
  width: 54%;
  float: right;
  padding-top: 7%;
  overflow-x: hidden;
  /* esconde a barra de rolagem */
}

#container_drag {
  display: flex;
  gap: 4%;
  overflow-x: auto;
  scroll-behavior: auto;
  /* sem suavização automática */
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  scroll-snap-type: none;
  padding: 0 2vw;
}

#container_drag.active {
  cursor: grabbing;
}

#container_drag::-webkit-scrollbar {
  display: none;
}

.box_believe {
  flex: 0 0 37%;
}

.box_believe02 {
  flex: 0 0 22%;
  background: #f2f2f2;
  border-radius: 0.5vw;
  padding: 10vw 2.5vw 0vw 2.5vw;
}

.box_believe h3 {
  font-weight: 500;
  font-size: 0.9vw;
}

.box_believe h4 {
  font-size: 1.1vw;
}

.box_believe span {
  font-size: 0.7vw;
}

.box_believe img {
  width: 100%;
  border-radius: 0.5vw;
  object-fit: cover;
  height: 20vw;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.box_believe .line,
.box_believe02 .line {
  width: 9%;
  height: 0.2vw;
  background: #E89127;
  margin-top: 1.5vw;
}

#content_believe02 p {
  font-weight: 300;
  font-size: 1vw;
  line-height: 1.5vw;
  padding-bottom: 2vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  height: 8vw;
}

/* >>>>>>>>>>>>>>>>>>>>>>>> */

#container_drag::-webkit-scrollbar {
  display: none;
}

#leading_dmc,
#tomorrow_air {
  width: 100%;
  background-image: url("img/rj-bg.jpg");
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

#tomorrow_air {
  background-image: url("img/bg_our_commitment.jpg");
}

.container_lead {
  padding: 5% 10%;
}

#leading_dmc .line,
#tomorrow_air .line {
  width: 4%;
  height: 0.2vw;
  background: #E89127;
}

#leading_dmc h2,
#tomorrow_air h2 {
  color: #fff;
}

#leading_dmc p,
#tomorrow_air p {
  color: #fff;
  line-height: 1.7vw;
  font-size: 1vw;
}

#leading_dmc button,
.box_believe button,
#tomorrow_air button {
  border: 0;
  background: #e89127;
  padding: 0.6vw 2vw;
  color: #fff;
  border-radius: 0.4vw;
}

.box_believe button {
  font-size: 0.7vw;
  padding: 0.6vw 1.6vw;
}

/* Authentication modal for "Read More" */
.auth-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.auth-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.auth-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 0.8vw;
  padding: 2.4vw 2vw 2vw;
  width: 26vw;
  max-width: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.auth-modal__dialog h3 {
  margin: 0 0 0.6vw 0;
  color: #103349;
}

.auth-modal__subtitle {
  margin: 0 0 1.4vw 0;
  font-size: 0.95vw;
  color: #555;
}

.auth-modal__form label {
  display: block;
  margin-bottom: 1vw;
  font-size: 0.9vw;
  color: #303030;
}

.auth-modal__form input {
  width: 100%;
  padding: 0.75vw 0.9vw;
  margin-top: 0.3vw;
  border-radius: 0.4vw;
  border: 1px solid #cfd8e2;
  font-size: 0.95vw;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-modal__form input:focus {
  border-color: #e89127;
  box-shadow: 0 0 0 2px rgba(232, 145, 39, 0.15);
}

.auth-modal__submit {
  width: 100%;
  background: linear-gradient(135deg, #e89127 0%, #f5a742 100%);
  color: #fff;
  border: none;
  padding: 0.9vw 0;
  border-radius: 0.5vw;
  font-size: 0.95vw;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 0.5vw;
}

.auth-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(232, 145, 39, 0.25);
}

.auth-modal__submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.auth-modal__close {
  position: absolute;
  top: 0.8vw;
  right: 0.8vw;
  background: transparent;
  border: none;
  font-size: 1.6vw;
  color: #103349;
  cursor: pointer;
}

@media (max-width: 768px) {
  .auth-modal__dialog {
    width: 90%;
    padding: 6vw 5vw;
    border-radius: 3vw;
  }

  .auth-modal__dialog h3 {
    font-size: 5vw;
  }

  .auth-modal__subtitle,
  .auth-modal__form label,
  .auth-modal__form input,
  .auth-modal__submit {
    font-size: 4vw;
  }
}

.container_magic,
.beyond_content,
.container_login,
.container_info,
.container_infobox,
.blumar_logos {
  width: 80%;
  margin: 0 10%;
}

.default_box {
  margin-left: 0 !important;
}

#creation_magic,
#why_blumar {
  background-color: #F8F8F8;
  padding: 5vw 0;
}

#creation_magic p, #beyond p{
  font-size: 1vw;
}

.container_magic {
  float: left;
}

.box_magic,
.box_beyond {
  width: 22%;
  height: auto;
  float: left;
  margin: 1.5%;
  position: relative;
}

.btn_play {
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  padding: 1vw;
  background: #e8912700;
  border-radius: 4vw;
  border: 0.15vw solid #fff;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn_play:hover {
  background: #e89127;
}

/* BOX VIDEOS >>>>>>>>> */

.box_magic {
  height: 26vw;
  float: left;
  margin: 1.5%;
  position: relative;
  overflow: hidden;
  background: #103349;
  cursor: pointer;
  border-radius: 1vw;
}

.box_magic iframe {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 377.78%;
  height: 150%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  opacity: 0.5;
}

.box_magic img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  display: block;
}

/* .btn_play {
  position: absolute;
  width: 20%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
} */

.box_magic:hover .btn_play {
  background: #e89127;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>> */
.boximg {
  width: 100%;
  border-radius: 1vw;
}

#beyond {
  background: #fff;
  padding: 5% 0;
}

.box_why {
  width: 31%;
  float: left;
  padding-right: 2%;
}

.box_why h3 {
  margin: 0;
  font-size: 1.2vw;
}

.box_why img {
  width: 20%;
}

#why_blumar p {
  font-weight: 300;
  font-size: 1vw;
}

.container_box_why {
  float: left;
  width: 100%;
}

#why_blumar .space {
  padding-top: 2vw;
}

/* ABOUT >>>>>>>>> */

#about_title {
  background-color: #F8F8F8;
  text-align: center;
  padding: 10vw 0 3vw 0;
}

#about_title h2 {
  font-size: 1.8vw;
}

#about_title p {
  font-size: 1vw;
  font-weight: 400;
  padding: 0 18vw;
}

#about_bio {
  padding: 4vw 0;
}

#about_bio h4 {
  font-size: 1.2vw;
  font-weight: 500;
  margin-top: 0;
}

#about_bio p {
  font-size: 1vw;
  line-height: 1.5vw;
  font-weight: 300;
}

.about_box01 {
  width: 12%;
  float: left;
}

.about_box01 img {
  width: 100%;
}

.about_box02 {
  float: left;
  width: 49%;
  padding: 0 3%;
  border-right: 0.1vw solid #cecece;
}

.about_box03 {
  float: left;
  width: 28%;
  padding: 0 0% 0 3%;
}

#about_title .line,
#about_journey .line {
  margin: 0 48%;
}

#about_journey {
  background: #F8F8F8;
  padding: 3vw 0 5vw 0;
}

.journey_title {
  text-align: center;
  padding-bottom: 3vw;
}

#about_journey h2 {
  margin-bottom: 0;
}

#about_journey h3 {
  font-weight: 500;
  margin: 0;
}

.timeline_01,
.timeline_02 {
  width: 49%;
  float: left;
}

.timeline_01 {
  text-align: right;
}

.box_tl .date {
  background: #E89127;
  color: #fff;
  font-size: 1.2vw;
  padding: 0.2vw 0.8vw;
  border-radius: 0.3vw;
}

.timeline_divisoria {
  background: #cdcdcd;
  width: 0.1vw;
  float: left;
  height: 47.59vw;
}

.box_tl {
  padding: 0 4vw;
  position: relative;
  ;
}

.indicador {
  width: 10.4%;
  height: 0.1vw;
  background: #cdcdcd;
  position: absolute;
  right: 0;
  margin-top: 0.7vw;
}

.timeline_02 .indicador {
  left: 0;
}

#about_journey .bx01 {
  margin-top: -0.7vw;
}

#about_journey .bx02 {
  margin-top: 3.97vw;
}

#about_journey .bx03 {
  margin-top: 5.3vw;
}

#about_journey .bx04 {
  margin-top: 4.3vw;
}

#about_journey .bx05 {
  margin-top: -0.7vw;
}

.box_tl h4 {
  margin-bottom: 0;
  font-size: 0.95vw;
}

.box_tl p {
  font-size: 0.9vw;
  line-height: 1.4vw;
  font-weight: 400;
}

/* Our Commitment >>> */

.our_commit {
  padding-top: 5vw;
}

#tomorrow_air img {
  width: 27%;
}

#tomorrow_air h2 {
  margin: 1vw 0 1vw 0;
}
#tomorrow_air button {
  cursor: pointer;
}
#tomorrow_air button:hover {
  background: #ffb75f;
}

.our_commit p {
  font-size: 1.2vw;
  line-height: 2vw;
}

.our_commit .content_believe01 {
  padding-bottom: 8vw;
}

/* Brazil >>> */

#brazil {
  background: url("img/mapa.svg");
  background-position: right top;
  height: 100vh;
  background-size: 65%;
  background-color: #f0f8ff;
  background-repeat: no-repeat;
  margin-top: 6vw;
}

.brazil_title {
  width: 36%;
  float: left;
  padding: 7% 0 17vw 10%;
}
.brazil_title .line{
  width: 9%;
}

.brazil_title h3 {
  font-size: 1.7vw;
  margin: 0;
  font-weight: 400;
}

#brazil_info {
  background: #78AAC3;
  padding: 5vw 0;
  /* margin-bottom: 10vw; */
}

.container_infobox {
  padding: 1vw 0;
  float: left;
}

#brazil_info h2,
#brazil_info h3,
#brazil_info h4 {
  color: #fff;
}

.container_info h2 {
  margin: 1vw 0 0 0;
  font-weight: 400;
}

.container_info h3 {
  margin: 0;
  font-size: 1.9vw;
  font-weight: 300;
}

#brazil_info p {
  color: #fff;
  ;
}

.container_info p {
  font-size: 1.1vw;
  font-weight: 400;
}

.box_info {
  width: 23%;
  float: left;
  margin-left: 2.5%;
}

.box_info p {
  font-size: 1vw;
  line-height: 1.5vw;
}

.default {
  margin-left: 0;
}

#brazil_info h4 {
  margin: 0;
  font-size: 1.1vw;
}

.box_info i {
  color: #fff;
  font-size: 3vw;
}

/* FOOTER >>>>>>>>>>>>>> */

footer {
  padding-bottom: 7vw;
  float: left;
  width: 100%;
  background: #e6e1dd;
}

footer p {
  color: #fff;
}

footer .logo_rp {
  width: 10%;
  float: left;
  padding: 0.5vw 0 0 0;
}

.info_container {
  float: left;
  width: 72%;
  margin-left: 14%;
}

.blumar_info {
  background: #103349;
  width: 100%;
  float: left;
  padding: 1vw 0;
  margin-bottom: 3vw;
}

.blumar_info p {
  font-size: 0.8vw;
  float: left;
  padding: 0 1vw;
}

.blumar_info .phone {
  border: 0.1vw solid;
  border-bottom: 0;
  border-top: 0;
  padding-left: 2.5vw;
}

.blumar_info .mail {
  padding-left: 2.5vw;
}

.blumar_info .material-icons {
  position: absolute;
  font-size: 1vw;
  margin: 0.1vw 0 0 -1.5vw;
}

.blumar_logos img {
  border-radius: 0.3vw;
  margin: 0.2vw;
  height: 4.3vw;
}

.logos_rodape_compliance {
  float: left;
  width: 30%;
  margin-left: 14%;
  text-align: center;
}

.logos_rodape_represented {
  float: right;
  width: 39%;
  margin-right: 14%;
  text-align: center;
}

footer h4 {
  font-size: 0.7vw;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 0.1vw;
}
