/* ============================= */
/* RESET */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #ffffff, #f4f6f9);
  color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================= */
/* HEADER */
/* ============================= */

header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  z-index: 1000;
}

header img {
  height: 50px;
}

nav a {
  margin-left: 2rem;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #ff6600;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
  background-image: url("imagens/aguia.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 100vh;
  padding-top: 80px;
  text-align: center;
  color: rgb(211, 26, 26);
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #ff6600;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;

  opacity: 0;
  transform: translateY(-40px);
  animation: fadeUp 2.5s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 2.2rem;
  color: #ff6600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6600;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;

  opacity: 0;
  filter: blur(10px);
  animation: blurReveal 1.5s ease-out forwards;
}

@keyframes blurReveal {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* ============================= */
/* SEÇÕES GERAIS */
/* ============================= */

section {
  padding: 5rem 5%;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ff6600;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6600;
  margin: 0.7rem auto 0;
  border-radius: 5px;
}

/* ============================= */
/* QUEM SOMOS */
/* ============================= */

.about p {
  max-width: 850px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
}

/* ============================= */
/* SERVIÇOS */
/* ============================= */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  width: 260px;
  padding: 2rem;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.07);
  transition: 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #ff6600;
}

/* ============================= */
/* CLIENTES */
/* ============================= */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-card {
  padding: 1rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.client-card img {
  max-width: 100%;
  height: auto;
}

/* ============================= */
/* MISSÃO VISÃO VALORES */
/* ============================= */

.company-values {
  background: #ffffff;
  text-align: center;
}

.company-values h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #ff6600;
}

.company-values .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.company-values .card {
  width: 280px;
  padding: 2rem;
  border-radius: 18px;
  background: #fff7f0;
  border: 2px solid #ff6600;
  transition: 0.3s;
}

.company-values .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.company-values .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

/* ============================= */
/* MAPA */
/* ============================= */

.mapa-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================= */
/* CONTATO */
/* ============================= */

.contact {
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* força largura total */
}

.contact input,
.contact textarea {
  width: 100%; /* garante alinhamento */
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
  font-size: 16px;
}

.contact textarea {
  resize: vertical; /* impede distorção lateral */
}

.contact input:focus,
.contact textarea:focus {
  border-color: #ff6600;
  outline: none;
}

.contact button {
  align-self: center; /* centraliza botão */
  width: 200px;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #ff8c42;
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn i {
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

/* ============================= */
/* ANIMAÇÃO SCROLL */
/* ============================= */

.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .company-values .cards {
    flex-direction: column;
    align-items: center;
  }
}

.rodape {
  background-color: #111;
  color: white;
  padding: 25px 20px;
}

.rodape-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.rodape-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.rodape-item i {
  color: #ff8c42;
  font-size: 16px;
}

.rodape-copy {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ============================= */
/* SEÇÃO ARP */
/* ============================= */

.arp-section {
  text-align: center;
  padding: 5rem 5%;
  background: #ffffff;
}

.arp-text {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.btn-download {
  display: inline-block;
  padding: 14px 32px;
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.btn-download:hover {
  background: #ff8c42;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.btn-download i {
  margin-right: 8px;
}
html, body {
  margin: 0;
  padding: 0;
}

footer {
  margin: 0;
}



