@charset "UTF-8";
:root {
  --dark-blue: #181f3c;
}

html {
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #ebeef0;
}

section {
  overflow-x: clip;
}

.container {
  max-width: 75%;
  padding: 0;
}
@media screen and (max-width: 860px) {
  .container {
    max-width: calc(100% - 6rem);
  }
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 0;
  background-color: var(--dark-blue);
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0.3rem 0.3rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.float_links {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
  row-gap: 0.5rem;
}
.float_links a,
.float_links button {
  display: flex;
  align-items: center;
  max-width: 4.3rem;
  background-color: var(--dark-red);
  border-radius: 3rem 0 0 3rem;
  padding: 0.7rem 1.1rem;
  transition: all 200ms ease;
}
@media screen and (min-width: 769px) {
  .float_links a,
  .float_links button {
    max-width: 6rem;
    padding: 1rem 2rem;
  }
  .float_links a:hover,
  .float_links button:hover {
    max-width: 20rem;
  }
}
.float_links a span,
.float_links button span {
  color: white;
  margin-left: 2rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
}
.float_links .whats::before {
  content: url("../images/ico-whats.svg");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  transition: all 400ms ease;
  padding: 2rem 0;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
}
.header:not(.opened).scroll-down {
  transform: translateY(-100%);
}
.header.opened {
  background-color: rgba(0, 0, 0, 0.6);
}
.header_logo svg {
  width: 16rem;
  height: 3.9rem;
}
@media screen and (max-width: 768px) {
  .header_logo svg {
    width: 8rem;
    height: auto;
  }
}
.header_logo svg path {
  fill: var(--red);
}
.header .menu_button {
  height: 2rem;
  width: 4rem;
  margin: 0 0 0 auto;
}
.header .menu_button span,
.header .menu_button span:nth-child(2)::after,
.header .menu_button span:nth-child(2)::before {
  background-color: white;
}

.menu {
  position: fixed;
  top: 7.2rem;
  height: calc(100vh - 7.2rem);
  left: 0;
  z-index: 4;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  display: none;
  color: white;
}
@media screen and (max-width: 768px) {
  .menu {
    top: 6.7rem;
    height: calc(100vh - 6.7rem);
  }
}
.menu_title {
  font-size: 5.6rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  display: block;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .menu_title {
    font-size: 3.6rem;
  }
}
.menu_title::after {
  content: "";
  width: 20rem;
  height: 2px;
  background-color: white;
  margin: 4rem auto 2rem;
}
.menu_list a {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .menu_list a {
    font-size: 1.6rem;
  }
}
.menu_list a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
}
.hero_banner {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 860px) {
  .hero_banner {
    -o-object-position: top;
       object-position: top;
    height: 700px;
    margin-bottom: 6rem;
  }
}
.hero_content {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 27vh;
  left: 0;
}
@media screen and (max-width: 860px) {
  .hero_content {
    top: 15rem;
  }
}
.hero_title {
  font-size: 2.4rem;
  color: white;
  letter-spacing: 0.2em;
  line-height: 1.4em;
}
@media screen and (max-width: 860px) {
  .hero_title {
    font-size: 2.2rem;
  }
}
.hero_title strong {
  display: block;
  font-weight: 600;
}
.hero_title span {
  font-weight: 400;
  display: block;
}
.hero_form {
  background-color: var(--dark-blue);
  max-width: 34.3rem;
  padding: 2.5rem 3rem;
  color: white;
}
.hero_form_title {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1em;
  letter-spacing: 0.2em;
}
.hero_form .campo__input {
  background-color: transparent;
  border: solid 1px white;
  border-radius: 2.5rem;
  color: white;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 3.8rem;
}
.hero_form .campo__input.nome {
  background: url("../images/ico-nome.webp") no-repeat 1.3rem 0.8rem/1.7rem;
}
.hero_form .campo__input.email {
  background: url("../images/ico-cel.webp") no-repeat 1.6rem 0.9rem/1.3rem;
}
.hero_form .campo__input.phone {
  background: url("../images/ico-mail.webp") no-repeat 1.5rem 1.3rem/1.5rem;
}
.hero_form .campo label {
  font-size: 1.3rem;
}
.hero_form .button {
  border-radius: 2rem;
  background-color: white;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-size: 1.6rem;
  text-align: center;
  display: table;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
}

.assinaturas {
  overflow: visible;
  padding: 0;
}
@media screen and (max-width: 860px) {
  .assinaturas {
    overflow: hidden;
    padding-bottom: 3rem;
  }
}
.assinaturas_container {
  position: sticky;
  top: 0;
  padding: 10rem 0 0 12.5%;
}
@media screen and (max-height: 700px) {
  .assinaturas_container {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_container {
    position: static;
    flex-direction: column;
    padding: 4rem 3rem 0;
    gap: 3rem;
  }
}
.assinaturas_col {
  max-width: 48rem;
  flex-shrink: 0;
  padding-bottom: 14rem;
}
@media screen and (max-width: 860px) {
  .assinaturas_col {
    max-width: 100%;
    padding-bottom: 0;
  }
}
.assinaturas_title {
  font-size: 3.5rem;
  margin-bottom: 1.4em;
  letter-spacing: 0.15em;
}
@media screen and (max-height: 700px) {
  .assinaturas_title {
    font-size: 2.7rem;
    margin-bottom: 1em;
    padding: 0 3rem;
  }
}
.assinaturas_texts {
  position: relative;
  min-height: 22rem;
}
@media screen and (max-height: 700px) {
  .assinaturas_texts {
    min-height: 18rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_texts {
    min-height: auto;
    overflow: hidden;
  }
}
.assinaturas_text_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  font-size: 1.8rem;
  line-height: 1.4em;
}
@media screen and (max-height: 700px) {
  .assinaturas_text_item {
    font-size: 1.4rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_text_item {
    position: relative;
    display: none;
    padding: 0;
  }
  .assinaturas_text_item.active {
    display: block;
    animation: fadeInText 0.4s ease forwards;
  }
}
.assinaturas_text_item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.assinaturas_text_item h3 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
  font-weight: 700;
}
@media screen and (max-height: 700px) {
  .assinaturas_text_item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8em;
  }
}
.assinaturas_text_item p + p {
  margin-top: 1em;
}
.assinaturas_text_item p i {
  font-size: 1.4rem;
}
.assinaturas_slider {
  flex: 1;
  padding: 10rem 0;
  overflow: hidden;
  align-self: flex-start;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .assinaturas_slider {
    padding: 0;
    overflow: hidden;
    display: block;
    width: calc(100% + 6rem);
    margin-left: -3rem;
  }
}
.assinaturas_slider_inner {
  display: flex;
  gap: 15rem;
  align-items: center;
  padding: 0 5rem;
  transform: translateX(0);
  will-change: transform;
}
@media screen and (max-height: 700px) {
  .assinaturas_slider_inner {
    gap: 9rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_slider_inner {
    display: block;
    gap: 0;
    padding: 0;
    overflow: visible;
    transform: none;
    will-change: auto;
  }
}
.assinaturas_slider_item {
  color: #071126;
  flex: 0 0 auto;
  width: 29.5rem;
}
@media screen and (max-height: 700px) {
  .assinaturas_slider_item {
    width: 18.5rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_slider_item {
    width: auto;
    padding: 0 1rem;
  }
}
.assinaturas_slider_item img {
  aspect-ratio: 295/615;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.assinaturas_slider_item_name {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.assinaturas_slider_item_cargo {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
}
.assinaturas .slick-list {
  overflow: visible;
}
.assinaturas .slick-slide {
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.assinaturas .slick-slide.slick-active, .assinaturas .slick-slide.slick-current {
  opacity: 1;
}
.assinaturas .slick-slide img {
  width: 100%;
}
.assinaturas .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  padding: 2rem 0 1rem;
  margin: 0;
}
.assinaturas .slick-dots li button {
  font-size: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid var(--dark-blue);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.assinaturas .slick-dots li.slick-active button {
  background: var(--dark-blue);
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: url("../images/bk-footer.webp") no-repeat center bottom/cover;
  background-color: var(--dark-blue);
  padding: 7rem 0 20rem;
  color: white;
  position: relative;
}
.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer svg {
  width: 2rem;
  height: 2rem;
}
.footer svg path {
  fill: white;
}
@media screen and (max-width: 860px) {
  .footer_top {
    flex-direction: column-reverse;
  }
}
.footer_top {
  margin-bottom: 10rem;
}
.footer_line {
  height: 2px;
  flex: 1 1 100%;
  background-color: white;
}
@media screen and (max-width: 860px) {
  .footer_line {
    flex: initial;
    width: 15rem;
  }
}
.footer_links {
  gap: 10rem;
}
@media screen and (max-width: 860px) {
  .footer_links {
    font-size: 2.2rem;
    gap: 3rem;
    text-align: center;
    flex-direction: column;
  }
}
.footer_links_title {
  font-size: 1.4rem;
  margin-bottom: 2em;
}
@media screen and (max-width: 860px) {
  .footer_links_title {
    margin-bottom: 0.8em;
  }
}
.footer_links ul {
  list-style: none;
}
.footer_links ul a {
  font-size: 1.2rem;
}
.footer_links ul a:hover {
  text-decoration: underline;
}

.loading-box {
  background-color: rgba(7, 17, 38, 0.688235);
}

/* Modal de Notificações */
.notification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.notification-modal.show {
  display: flex;
}

.notification-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1001;
}

.notification-modal-content {
  position: relative;
  z-index: 1002;
  background-color: white;
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 45rem;
  width: 90%;
  margin: auto;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.notification-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #ccc;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.notification-modal-close:hover {
  color: var(--dark-blue);
}

.notification-modal-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-modal-icon.success::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  font-size: 3rem;
}

.notification-modal-icon.error::before {
  content: "!";
  color: #f44336;
  font-weight: bold;
  font-size: 3rem;
}

.notification-modal-icon.warning::before {
  content: "⚠";
  color: #ff9800;
  font-size: 3rem;
}

.notification-modal-icon.info::before {
  content: "ⓘ";
  color: #2196f3;
  font-size: 2.8rem;
}

.notification-modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.notification-modal-message {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6em;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.notification-modal-button {
  background-color: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.notification-modal-button:hover {
  background-color: white;
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .notification-modal-content {
    padding: 2rem;
    max-width: 90%;
    border-radius: 1rem;
  }
  .notification-modal-title {
    font-size: 1.6rem;
  }
  .notification-modal-message {
    font-size: 1.2rem;
  }
  .notification-modal-button {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
  }
}/*# sourceMappingURL=style.css.map */