@import "./theme.css";

body,
html {
  font-family: "Plus Jakarta Sans", "Open Sans", system-ui, sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: var(--paragraph-color);
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
}

::selection {
  background: rgba(0, 212, 255, 0.28);
  color: var(--text-primary);
}
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", "Raleway", sans-serif;
}
h2 {
  text-transform: none;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--paragraph-color);
}
h4 {
  font-size: 18px;
  color: var(--paragraph-color);
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: var(--white-color);
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary-text);
}
.about-text a:hover,
.about-text a:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7); /* Cor branca com 70% de opacidade */
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: var(--gradient-brand);
  margin-bottom: 20px;
  border: 0;
}

#form {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

#form .upp {
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
}

#form .upp-color {
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
}

/* scrollbar personalize */
body::-webkit-scrollbar {
  width: 5px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--menu-header-color); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); /* color of the scroll thumb */
  border-radius: 100px; /* roundness of the scroll thumb */
  border: 1px solid var(--primary-color); /* creates padding around scroll thumb */
}

.pt-2 {
  padding-top: 2%;
}

/* Container site */
#rootApp {
  display: flex;
  flex-direction: column;
}

.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-soft) 100%);
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.45);
}
.section-title p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--paragraph-color);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background-color: white !important;
  color: var(--btn-color) !important;
}

.btn-custom {
  font-family: "Plus Jakarta Sans", "Raleway", sans-serif;
  text-transform: uppercase;
  color: var(--btn-text-on-primary);
  background-color: var(--primary-color);
  box-shadow: var(--shadow-sm), var(--shadow-glow-gold);
  padding: 11px 22px;
  letter-spacing: 0.08em;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    background-color var(--transition-smooth);
  border: 0;
}
.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 6px 28px rgba(255, 193, 7, 0.4);
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section */
.intro {
  display: table;
  width: 100%;
  padding: 0;
  background-color: var(--background-color);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  background-size: cover !important;
  /* background: url(../img/header.png) center center no-repeat; */
  -o-background-size: cover !important;
}

.intro .overlay {
  background: var(--background-linear-color);
  height: 100vh;
  width: 100%;
}

@media (max-width: 768px) {
  .intro h1 {
    font-size: 3rem;
  }
}

@media (min-width: 769px) {
  .intro h1 {
    font-size: 5rem;
  }
}

.intro h1 {
  font-family: "Plus Jakarta Sans", "Raleway", sans-serif;
  color: var(--white-color);
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 28px rgba(13, 31, 45, 0.5);
}

.intro .upp {
  text-transform: uppercase;
}

.intro .color-header {
  color: var(--white-color);
}

.intro .m-top {
  margin-top: 2vh;
}

.intro .m-bottom {
  margin-top: 2vh;
}

.intro h1 span {
  font-weight: 800;
  color: var(--accent-highlight);
}
.intro p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 36em;
  text-shadow: 0 1px 14px rgba(13, 31, 45, 0.4);
}

header .intro-text {
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: left;
  margin: 0;
}

/* prox header  */
.img-slider {
  display: table;
  width: 100%;
  padding: 0;
  background-color: var(--background-color);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  background-size: cover !important;
  /* background: url(../img/bank-metta.jpg) center center no-repeat; */
  -o-background-size: cover !important;
}

.img-slider .overlay {
  background: var(--background-linear-color);
  width: 100%;
}

@media (max-width: 768px) {
  .img-slider h1 {
    font-size: 3rem;
  }
}

@media (min-width: 769px) {
  .img-slider h1 {
    font-size: 5rem;
  }
}

.img-slider h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
}

.img-slider .upp {
  text-transform: uppercase;
}

.img-slider .color-header {
  color: var(--white-color);
}

.img-slider .m-top {
  margin-top: 2vh;
}

.img-slider .m-bottom {
  margin-top: 2vh;
}

.img-slider h1 span {
  font-weight: 800;
  color: var(--accent-highlight);
}
.img-slider p {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

/* header 3  */
.img-slider3 {
  display: table;
  width: 100%;
  padding: 0;
  background-color: var(--background-color);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  background-size: cover !important;
  /* background: url(../img/3slide.png) center center no-repeat; */
  -o-background-size: cover !important;
}

.img-slider3 .overlay {
  background: var(--background-linear-color);
}

@media (max-width: 768px) {
  .img-slider3 h1 {
    font-size: 3rem;
  }
}

@media (min-width: 769px) {
  .img-slider3 h1 {
    font-size: 5rem;
  }
}

.img-slider3 h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
}

.img-slider3 .upp {
  text-transform: uppercase;
}

.img-slider3 .color-header {
  color: var(--primary-text);
}

.img-slider3 .m-top {
  margin-top: 2vh;
}

.img-slider3 .m-bottom {
  margin-top: 2vh;
}

.img-slider3 h1 span {
  font-weight: 800;
  color: var(--accent-highlight);
}
.img-slider3 p {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

/* page title Section */

#titlepage {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.intro3 {
  display: table;
  width: 100%;
  padding: 0;
  background: transparent;
}

.intro3 .overlay {
  background: var(--background-linear-color);
}
.intro3 h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-size: 40px;
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
}

.intro3 .upp {
  text-transform: uppercase;
}

.intro3 .color-header {
  color: var(--primary-text);
}

.intro3 .m-top {
  margin-top: 2vh;
}

.intro3 .m-bottom {
  margin-top: 2vh;
}

.intro3 h1 span {
  font-weight: 800;
  color: var(--accent-highlight);
}
.intro3 p {
  color: var(--paragraph-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.intro3 .sub2 {
  font-size: 15px;
  padding-top: 5%;
}

/* ============================================================
   CORE bank — Features banner (#header .intro2)
   ============================================================ */
.intro2 {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--navy-deep);
  background-image: var(--gradient-mesh);
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.intro2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 22px 22px;
  background-position: 0 0;
  pointer-events: none;
  opacity: 0.5;
}

.intro2 .overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 26, 46, 0.6) 0%,
    rgba(6, 26, 46, 0.85) 100%
  );
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  z-index: 1;
}

.intro2 .intro2-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white-color);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: 0;
  margin: 0 0 18px;
  text-transform: none;
  text-shadow: 0 2px 20px rgba(6, 26, 46, 0.5);
}

.intro2 .intro2-subtitle {
  color: rgba(233, 241, 249, 0.85);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 44px;
  max-width: 62ch;
}

header .intro2-text {
  padding: 0 16px;
  text-align: left;
  display: block;
  margin: 0;
}

/* Selos de confiança */
.trust-seals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-seal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease-reveal),
    border-color 0.35s var(--ease-reveal),
    background 0.35s var(--ease-reveal);
}

.trust-seal:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(0, 212, 255, 0.08);
}

.trust-seal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(0, 212, 255, 0.14);
  color: var(--cyan-soft);
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 212, 255, 0.32);
}

.trust-seal-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-seal-text strong {
  color: var(--white-color);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.trust-seal-text span {
  color: rgba(233, 241, 249, 0.7);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 992px) {
  .trust-seals {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-seals {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section */
/* #gallery — estilos primários ficam em gallery.css (paleta CORE bank) */
#gallery h3 {
  font-size: 22px;
  margin: 0 0 20px;
}

/* Features Section */
#features {
  background: var(--surface-muted);
  background-image: radial-gradient(
    ellipse 120% 80% at 50% 0%,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 55%
  );
}
#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  color: var(--white-color);
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
#features i.fa:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(13, 31, 45, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ============================================================
   CORE bank — Footer brand (texto)
   ============================================================ */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 22px;
}

.footer-brand .footer-brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white-color);
  margin: 0;
  padding: 0;
  text-transform: none;
}

.footer-brand .footer-brand-name::after {
  content: none;
}

.footer-tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  margin: 0;
  padding: 0;
}

/* ============================================================
   CORE bank — Contact / Footer
   ============================================================ */
#contact {
  background: var(--background-contact);
  color: rgba(233, 241, 249, 0.78);
  bottom: 0;
  width: 100%;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
}

#contact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.5) 50%,
    transparent 100%
  );
  pointer-events: none;
}

#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: var(--white-color);
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-soft) 100%);
  height: 3px;
  width: 60px;
  bottom: 0;
  left: 30px;
  border-radius: 2px;
}
#contact h3 {
  color: var(--white-color);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-weight: 600;
}
#contact h5 {
  color: var(--white-color);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  position: relative;
}

#contact h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  border-radius: 2px;
}

#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: #ff6b6b;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan-soft);
}
#contact .btn-custom:hover {
  color: var(--navy);
  background: var(--cyan);
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 1.42857143;
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.05);
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}
#contact .form-control:focus {
  border-color: var(--cyan);
  outline: 0;
  background-color: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18);
}
.form-control::-webkit-input-placeholder {
  color: rgba(233, 241, 249, 0.5);
}
.form-control:-moz-placeholder {
  color: rgba(233, 241, 249, 0.5);
}
.form-control::-moz-placeholder {
  color: rgba(233, 241, 249, 0.5);
}
.form-control:-ms-input-placeholder {
  color: rgba(233, 241, 249, 0.5);
}

#contact .contact-item span {
  color: rgba(233, 241, 249, 0.78);
  margin-bottom: 10px;
  display: block;
}

#contact a {
  color: rgba(233, 241, 249, 0.78);
  transition: color 0.3s ease;
}

#contact a:hover {
  color: var(--cyan-soft);
}

#contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

#contact .contact-item {
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: rgba(233, 241, 249, 0.7);
}
#contact .contact-item i.fa {
  margin-right: 10px;
  color: var(--cyan-soft);
}

.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}

#contact .social {
  padding-top: 36px;
  margin-top: 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#contact .social ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

#contact .social ul li {
  display: inline-block;
  margin: 0;
}

#contact .social i.fa {
  font-size: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.32);
  color: var(--cyan-soft);
  background: rgba(0, 212, 255, 0.06);
  border-radius: 50%;
  transition: all 0.35s var(--ease-reveal);
}

#contact .social i.fa:hover {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-soft) 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

.lei {
  margin: 0;
  padding: 20px 0px;
}

.lei p {
  font-size: 10px;
}

/* Footer Section */
#footer {
  background: #020a14;
  padding: 28px 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#footer p {
  color: rgba(233, 241, 249, 0.7);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}
#footer a {
  color: var(--cyan-soft);
  transition: color 0.3s ease;
}
#footer a:hover {
  color: var(--cyan);
  border-bottom: none;
}

/* Dark mode: já está naturalmente escuro, mantém */
[data-theme="dark"] #contact {
  color: rgba(233, 241, 249, 0.78);
}

[data-theme="dark"] #footer {
  background: #010812;
  border-top-color: rgba(255, 255, 255, 0.05);
}

/* revealUpFade definido em theme.css */

/* Scroll animation para Contact */
#contact .reveal,
#footer.reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
}

/* Animação quando visível */
#contact .reveal.visible,
#footer.reveal.visible {
  animation: revealUpFade var(--dur-reveal) var(--ease-reveal) forwards;
}

/* Delay — stagger */
#contact .reveal:nth-child(1) {
  animation-delay: 0.06s;
}
#contact .reveal:nth-child(2) {
  animation-delay: 0.14s;
}
#contact .reveal:nth-child(3) {
  animation-delay: 0.22s;
}
#contact .reveal:nth-child(4) {
  animation-delay: 0.3s;
}
#contact .reveal:nth-child(5) {
  animation-delay: 0.38s;
}
#footer.reveal {
  animation-delay: 0.46s;
}

@media (max-width: 768px) {
  .about-text {
    margin-top: 10%;
  }

  .intro h1 {
    font-size: 4rem;
  }

  #header .intro2-text {
    padding: 0 12px;
  }

  #app .about-text {
    margin-top: 10%;
  }

  .d-flex-start {
    display: inline !important;
  }

  .d-flex {
    display: inline !important;
  }

  #about img {
    margin: 50px 0;
  }
}

/* gridElements Section */
#gridElements {
  padding: 50px 0;
  color: var(--paragraph-color);
}

#gridElements .color-primary {
  background-color: var(--background-color);
}

#gridElements .color-light {
  background: #cccc !important;
}

#gridElements .service-desc {
  margin: 10px 10px 20px;
}
#gridElements h2 {
  color: var(--paragraph-color);
}
#gridElements .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}

#gridElements .color-clara {
  background-color: var(--surface-muted);
}

#gridElements i.fa {
  font-size: 42px;
  color: var(--primary-color);
}
#gridElements h3 {
  font-weight: 900;
  padding: 5px 0;
  color: var(--paragraph-color);
}
#gridElements p {
  color: var(--paragraph-color);
}
#gridElements .service-desc {
  margin-bottom: 40px;
}

.w-100 {
  width: 100% !important;
}

#bodyContrato .text-just {
  width: 90%;
  text-align: justify;
  padding-right: 15vh;
  padding-left: 15vh;
}

.text-just {
  width: 90%;
  text-align: justify;
  padding-right: 15vh;
  padding-left: 15vh;
}

/* slidershow page */
.each-slide-effect > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  height: 350px;
}

.each-slide-effect span {
  padding: 20px;
  font-size: 20px;
  text-align: center;
}

.react-slideshow-container .default-nav {
  background: transparent !important;
  color: transparent !important;
}

.react-slideshow-container svg {
  color: white;
  fill: white;
}