@charset "UTF-8";
strong {
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus {
  outline: 0;
}

html, body, #root {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "skolar-sans-latin", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  background-color: #171615;
}

body, input, button, textarea {
  font-family: "skolar-sans-latin", sans-serif;
}

p {
  font-size: 1.8rem;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

a {
  text-decoration: none;
  font-size: 1.6rem;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

.only-mobile {
  display: none !important;
}

@media (orientation: portrait) and (max-width: 600px) {
  .only-mobile {
    display: block !important;
  }
  .only-desktop {
    display: none !important;
  }
}
/* ===== header (mesmo do home2026) ===== */
#control-nav {
  display: none;
}

header {
  min-height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #3c3c3c;
  z-index: 9;
  display: flex;
  transition: top 0.3s;
  opacity: 0.9;
}

header .logo {
  display: flex;
  place-items: center;
  justify-content: center;
}

header .logo .logoMenu {
  padding: 20px 50px;
  z-index: 100;
}

header .logo .logoMenu img {
  width: 166px;
}

header nav {
  width: 100%;
  align-self: center;
  opacity: 1;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 5rem;
}

header nav ul li {
  margin-left: 4rem;
  align-self: center;
}

header nav ul li a {
  color: #c8b08b;
  font-weight: 700;
  transition: color 0.2s;
}

header nav ul li a:hover {
  color: #f5f5f7;
}

/* ===== menu mobile (dropdown compacto, redesign 2026) ===== */
@media screen and (max-width: 767px) {
  header {
    opacity: 1;
    transition: background-color 0.3s ease;
  }
  header:has(#control-nav:checked) {
    background: #575656;
  }
  header .logo {
    width: auto;
  }
  header .logo .logoMenu {
    padding: 1.2rem 2rem;
  }
  header .logo .logoMenu img {
    width: 8rem;
    height: auto;
  }
  header .control-nav,
  header .control-nav-close {
    display: none;
  }
  header .menuicon {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: auto;
    cursor: pointer;
    z-index: 12;
  }
  header .menuicon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-top: 0.6rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  header .menuicon span:first-child {
    margin-top: 0;
  }
  header nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    width: 100%;
    background: #575656;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 8;
    transition: opacity 0.3s ease;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    padding: 2.4rem 3.5rem 3rem;
    margin: 0;
  }
  header nav ul li {
    text-align: left;
    margin: 0 0 1.8rem;
    width: auto;
    font-size: inherit;
    align-self: flex-start;
  }
  header nav ul li:last-child {
    margin-bottom: 0;
  }
  header nav ul li a {
    display: inline-block;
    font-family: "skolar-sans-latin", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.7;
    padding-left: 1.5rem;
  }
  header nav ul li.menuactive {
    position: relative;
  }
  header nav ul li.menuactive::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #d9a522;
  }
  header nav ul li.menuactive a {
    font-weight: 500;
    opacity: 1;
  }
  #control-nav:checked ~ nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #control-nav:checked ~ .menuicon span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  #control-nav:checked ~ .menuicon span:nth-child(2) {
    opacity: 0;
  }
  #control-nav:checked ~ .menuicon span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}
/* ===== título em script (Antro Vectra) ===== */
@font-face {
  font-family: "Antro Vectra";
  src: url("../font/antro_vectra/Antro_Vectra_Bolder.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.script {
  font-family: "Antro Vectra", cursive;
  color: #ffffff;
  font-weight: 700;
  font-size: 6.6rem;
}

/* ===== banner ===== */
.tecnologias-banner {
  position: relative;
  height: 50rem;
  margin-top: 8.7rem;
  overflow: hidden;
}
.tecnologias-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tecnologias-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.tecnologias-banner h1 {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .tecnologias-banner {
    aspect-ratio: 36/42;
    margin-top: 6rem;
  }
  .tecnologias-banner .script {
    font-size: 4rem;
  }
}
/* ===== intro ===== */
.tecnologias2026-intro {
  padding: 11rem 2rem 0;
  display: flex;
  justify-content: center;
  text-align: center;
}
.tecnologias2026-intro p {
  max-width: 48rem;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.3;
  text-align: left;
  color: #fff;
  margin-left: 50rem;
}

@media screen and (max-width: 600px) {
  .tecnologias2026-intro {
    padding: 6rem 0 4rem;
  }
  .tecnologias2026-intro p {
    font-size: 1.6rem;
    margin: 0 2rem 0 10rem;
    text-align: left;
    max-width: 80%;
  }
}
/* ===== grid de cards ===== */
.tecnologias2026-grid {
  padding: 0 2rem 9rem;
  position: relative;
}
.tecnologias2026-grid .tecnologia-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem 3rem;
  max-width: 119.4rem;
  margin: 9rem auto 0;
  z-index: 4;
}
.tecnologias2026-grid .especialistas-back {
  position: absolute;
  bottom: 0;
  left: 0;
}

.tecnologias2026-grid .card {
  background: rgba(87, 86, 86, 0.8);
  border-radius: 2rem;
  padding: 2rem 2rem 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.7rem;
}
.tecnologias2026-grid .card img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border-radius: 2rem;
}
.tecnologias2026-grid .card h3 {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
}
.tecnologias2026-grid .card p {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 120%;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .tecnologias2026-grid {
    padding: 0 2rem 3rem;
  }
  .tecnologias2026-grid .tecnologia-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .tecnologias2026-grid .especialistas-back {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .tecnologias2026-grid .tecnologia-container {
    grid-template-columns: 1fr;
    margin-top: 0rem;
    gap: 2rem;
  }
  .tecnologias2026-grid .tecnologia-container .card {
    border-radius: 16px;
    padding: 1.7rem 1.7rem 3rem;
    gap: 3rem;
  }
  .tecnologias2026-grid .tecnologia-container .card h3 {
    font-size: 2.2rem;
    line-height: 1;
  }
  .tecnologias2026-grid .tecnologia-container .card p {
    font-size: 1.6rem;
  }
  .tecnologias2026-grid .especialistas-back {
    width: 100%;
  }
}
/* ===== footer (mesmo do home2026) ===== */
footer {
  background-color: #171615;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  width: 80vw;
  margin: auto;
}
footer .logo-footer {
  margin-bottom: 7rem;
  margin-top: 8rem;
  width: 276px;
}
footer .top {
  display: flex;
  justify-content: space-between;
}
footer .top p, footer .top a {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 120%;
}
footer .top .left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
footer .top .left a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
footer .top .right {
  display: flex;
  gap: 5rem;
}
footer .top .right .menu {
  display: flex;
  gap: 5rem;
}
footer .top .right .menu div {
  display: flex;
  flex-direction: column;
}
footer .top .right .menu div a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 200%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
footer .top .right .social-buttons {
  display: flex;
  justify-content: end;
  margin-top: auto;
  gap: 2.4rem;
}
footer .top .right .social-buttons img {
  margin: 0;
}

footer .bottom {
  width: 80vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 0.8rem;
  padding-bottom: 1.8rem;
  margin-top: 4rem;
}

footer .bottom p {
  font-size: 1.2rem;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 85vw;
    margin: 0 auto;
  }
  footer .logo-footer {
    margin: 5rem 0 5.4rem;
    width: 166px;
  }
  footer .top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  footer .top p, footer .top a {
    font-size: 1.5rem;
  }
  footer .top .left {
    gap: 9px;
  }
  footer .top .left a {
    gap: 1rem;
  }
  footer .top .left a svg {
    width: 15px;
    height: 15px;
  }
  footer .top .right {
    margin-top: 3.6rem;
    flex-direction: column;
    gap: 4rem;
  }
  footer .top .right .menu {
    gap: 4rem;
  }
  footer .top .right .menu div a {
    font-size: 1.2rem;
  }
  footer .top .right .social-buttons {
    margin-top: 0;
    gap: 1.6rem;
    justify-content: flex-start;
  }
  footer .top .right .social-buttons img {
    height: 16px;
  }
}
.zap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  cursor: pointer;
}
.zap img {
  height: 65px;
}

@media screen and (max-width: 600px) {
  .zap {
    right: 20px;
    bottom: 20px;
  }
  .zap img {
    height: 40px;
    width: 40px;
  }
}

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