@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(52, 152, 219, 0.22);
  color: var(--text-primary);
}
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", "Raleway", sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.04em;
  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: var(--gradient-brand);
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(52, 152, 219, 0.35);
}
.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%;
}

/* Header 2 Section */
.intro2 {
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  background: url(../img/16050.jpg) center center no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.intro2 img {
  position: sticky;
}
.intro2 .overlay {
  background: var(--background-overlay);
}
.intro2 h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-size: 50px;
  font-weight: 200;
  padding: 0;
  margin: 0;
}

.intro2 .upp {
  text-transform: uppercase;
  font-weight: 700;
}

.intro2 h1 span {
  font-weight: 800;
  color: var(--accent-highlight);
}
.intro2 p {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro2-text {
  padding: 80px;
  padding-left: 0;
  text-align: left;
  display: flex;
  margin: 0;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

/* Gallery Section */
#gallery {
  background-image: radial-gradient(
      ellipse 100% 60% at 100% 20%,
      rgba(52, 152, 219, 0.14) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 50% at 0% 80%,
      rgba(118, 199, 142, 0.12) 0%,
      transparent 45%
    ),
    var(--background-gallery);
  color: white;
}

#gallery h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#gallery h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-transform: none;
  color: var(--white-color);
  font-family: "Plus Jakarta Sans", "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 53px;
}

#gallery h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 72px;
  bottom: 0;
  left: 0;
  background: var(--gradient-brand);
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(118, 199, 142, 0.45);
}

/* Features Section */
#features {
  background: var(--surface-muted);
  background-image: radial-gradient(
    ellipse 120% 80% at 50% 0%,
    rgba(52, 152, 219, 0.06) 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);
}

/* Contact Section */
#contact {
  background: var(--background-contact);
  color: var(--paragraph-color);
  bottom: 0;
  width: 100%;
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-brand);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
  border-radius: 2px;
}
#contact h3 {
  color: var(--text-primary);
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact h5 {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}
#contact .btn-custom:hover {
  color: var(--text-primary);
  background: var(--white-color);
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.42857143;
  color: var(--paragraph-color);
  background-color: var(--white-background);
  background-image: none;
  border: 1px solid rgba(13, 31, 45, 0.1);
  border-radius: var(--radius-sm);
  -webkit-box-shadow: var(--shadow-sm);
  box-shadow: var(--shadow-sm);
  -webkit-transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  -o-transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
#contact .form-control:focus {
  border-color: var(--accent-blue);
  outline: 0;
  -webkit-box-shadow: 0 0 0 1px rgba(52, 152, 219, 0.25);
  box-shadow: 0 0 0 1px rgba(52, 152, 219, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: var(--paragraph-color);
}
.form-control:-moz-placeholder {
  color: var(--paragraph-color);
}
.form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.form-control:-ms-input-placeholder {
  color: var(--paragraph-color);
}

#contact .contact-item span {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  display: block;
}

#contact a {
  color: var(--paragraph-color);
}

#contact a:hover {
  color: var(--primary-color);
}

#contact p {
  margin: 0;
}
#contact .contact-item i.fa {
  margin-right: 10px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}
#contact .social {
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  padding-top: 50px;
  /* margin-top: 50px; */
  text-align: center;
}
#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .social i.fa:hover {
  color: var(--white-color);
  background: var(--gradient-brand);
  border-color: transparent;
}

.lei {
  margin: 0;
  padding: 20px 0px;
}

.lei p {
  font-size: 10px;
}

/* Footer Section */
#footer {
  background: var(--navy);
  padding: 30px 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#footer p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
#footer a {
  color: var(--accent-gold);
}
#footer a:hover {
  border-bottom: 2px solid var(--accent-green);
  color: var(--accent-green);
}

/* 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) {
  #gallery img,
  .about-text {
    margin-top: 10%;
  }

  #gallery img.gallery-phone {
    margin-top: 32px !important;
  }

  .intro h1 {
    font-size: 4rem;
  }

  #header .intro2-text {
    padding: 10%;
  }

  #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;
}