* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #000;
  overflow-x: hidden;
}

.pci{
  width: 140px;
}

.link-pci,
.link-pci:visited,
.link-pci:hover,
.link-pci:active,
.link-pci:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.link-pci {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.link-pci:hover {
  opacity: 1;
}


.hero {
  position: relative;
  height: 100vh;
  background: url('./img/tech2.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease-out forwards;
}

.hero h4 {
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ccc;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ddd;
}

.btn {
  background-color: #ffffff !important;
  color: #000 !important;
  padding: 12px 36px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease !important;
}

.btn:hover {
  background-color: #1a1a1a !important;
  color: #fff !important;
  letter-spacing: 1px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero h2 {
    font-size: 1.2rem;
  }
}

.about-section {
  display: flex;
  height: 100vh;
  width: 100%;
  background-color: #fff;
}

.about-left, .about-right {
  flex: 1;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  color: #111;
}

.about-left .logo {
  margin-bottom: 60px;
}

.about-left .logo img {
  width: 120px;      
  height: auto;      
  object-fit: contain;
}

.about-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-left p {
  font-size: 1.2rem;
  color: #444;
}

.about-right {
  background: url('./img/techsobre.jpg') right center / contain no-repeat;
  background-color: #ffffff;
}

/* Responsivo */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }

  .about-left {
    padding: 60px 30px;
    text-align: center;
  }

  .about-right {
    height: 40vh;
  }
}

.grupo-section {
  width: 100%;
  padding: 0;
  background: #0e1a2b;
  color: #fff;
}

.grupo-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 100vh;
}

.grupo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.grupo-col {
  padding: 60px 50px;
}

.col-left {
  background: #15304d;
}

.col-center {
  background: #183a60;
}

.col-right {
  background: #0c2646;
}

.grupo-title-left,
.grupo-title-center,
.grupo-title-right {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
}

.grupo-title-left,
.grupo-title-center{
  color: #d9a441;
}

.grupo-title-right{
  margin-bottom: 80px;
}

.grupo-title-center{
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.grupo-desc {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.grupo-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.grupo-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grupo-icon {
  width: 108px;
}

.grupo-item span{
  font-size: 1.2rem;
  font-weight: 600;
}

.grupo-box-yellow {
  background: #d9a441;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #000;
}

.empresa {
  margin-bottom: 45px;
  align-items: center; 
  text-align: center;
}

.empresa-logo {
  width: 350px;
  margin-bottom: 12px;
}

.grupo-logo {
  width: 400px;
  margin-bottom: 30px;
}

.contatos {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 60px;
  color: #d9a441;
}

.grupo-foto {
  left: 0%;
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  margin-bottom: 50px;
}

.grupo-footer {
  margin-top: 20px;
  opacity: 0.8;
}


@media (max-width: 992px) {
  .grupo-container {
    grid-template-columns: 1fr;
  }
  .grupo-col {
    padding: 40px 25px;
  }
}


.politica-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #0c2b4a 0%, #1e4d7a 50%, #0b1f36 100%);
  color: #fff;
}

.politica-container {
  max-width: 1100px;
  margin: 0 auto;
}

.politica-titulo {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
}

.politica-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.politica-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.25);
}

.selo-iso {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.texto-iso h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.texto-iso p {
  color: #e4e9f0;
  line-height: 1.6;
}

.politica-revisao {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.7;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .politica-item {
    flex-direction: column;
    text-align: center;
  }
  .selo-iso {
    width: 90px;
  }
}


.contato-section {
  background: linear-gradient(135deg, #0b1f36 0%, #123a61 60%, #0c2b4a 100%);
  color: #ffffff;
  padding: 100px 10%;
  text-align: center;
}

.contato-titulo {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.contato-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contato-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.contato-card {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.contato-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #f1f5fa;
}

.contato-card p {
  color: #cdd5e0;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.social-icons a {
  color: #f1f5fa;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00b4ff;
}

.btn-contato {
  background: transparent;
  border: 1px solid #00b4ff;
  color: #00b4ff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-contato:hover {
  background: #00b4ff;
  color: #0b1f36;
}
.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start; 
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;   
  height: 44px;
  padding: 3px;
  border-radius: 8px;
  background: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none; 
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(2, 45, 80, 0.15);
  background: rgba(255,255,255,0.03);
}

.pw-section {
    position: relative;
    width: 100%;
    padding: 80px 0;

    /* FUNDO — coloque sua imagem AQUI */
    background-image: url('img/fundonovo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pw-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* intensidade do escurecimento */
    z-index: 1;
}

.pw-content {
    position: relative;
    z-index: 2; /* garante que o conteúdo aparece acima do overlay */
    color: #fff;
}

.pw-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2; /* sobe o conteúdo acima do overlay */
}

.pw-logo {
    width: 180px;
    display: block;
    margin: 0 auto 25px auto;
}

.pw-header {
    text-align: center;
    margin-bottom: 50px;
}

.pw-title {
    font-size: 42px;
    font-weight: 900;
}

.pw-title span {
    color: #2A7BFF;
}

.pw-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pw-text {
    flex: 1;
    min-width: 320px;
}

.pw-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pw-list li {
    font-size: 20px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
}

.pw-list li::before {
    content: "▣";
    position: absolute;
    left: 0;
    top: 0;
    color: #2A7BFF;
    font-size: 22px;
}

.pw-container P{
  color: #cdd5e0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 60px;
  text-align: center;
}

.pw-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pw-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    /* border: 2px solid #2A7BFF33; */
}
.pw-img-2 {
    width: 300px;
    height: auto;
    border-radius: 8px;
    /* border: 2px solid #2A7BFF33; */
}

.pw-img-3 {
    width: 800px;
    border-radius: 8px;
	padding-left: 25px;
    /* border: 2px solid #2A7BFF33; */
}

/* ======= ANIMAÇÕES DE SCROLL ======= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.9s ease;
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}






