* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #b1c1c5;
  color: #222;
  scroll-behavior: smooth;
}

header {
  background: #0a0f1f;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-weight: 700;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}



/* ========================= */
/* 🎯 HERO SECTION RESPONSIVA */
/* ========================= */

.hero {
  background: url('./assets/fundo.jpg') no-repeat center center/cover;
  height: 130vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Fundo levemente translúcido para legibilidade */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* Conteúdo principal */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Imagem */
.hero-content img {
  width: 80%;
  max-width: 1000px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.hero-content img:hover {
  transform: scale(1.03);
}

/* Título */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0c0c0c;
  line-height: 1.2;
}

/* Texto */
.hero-content p {
  font-size: 1.2rem;
  color: #333;
  max-width: 700px;
  line-height: 1.6;
}

/* ========================= */
/* 📱 Responsividade */
/* ========================= */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 4rem 2rem;
  }

  .hero-content img {
    width: 80%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 8rem 1.5rem;
  }

  .hero-content img {
    width: 100%;
    max-width: 200px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    gap: 1rem;
  }

  .hero-content img {
    max-width: 350px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}


/* ============================= */
/*   SEÇÃO QUEM SOMOS OTIMIZADA  */
/* ============================= */

.about-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  /*  reduz altura da seção */
  margin: 80px auto;
  /*  reduz espaço entre seções */
  max-width: 1000px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease-in-out;
}

/*  Animação suave ao rolar */
.about-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Título */
.about-section h2 {
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Texto interno */
.about-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  /* 🔹 espaçamento ideal entre linhas */
  margin-bottom: 15px;
  /* 🔹 reduz espaço entre parágrafos */
  font-weight: 400;
}

/* Efeito sutil nos parágrafos */
.about-text span {
  color: #0088cc;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-section {
    padding: 30px 15px;
    margin: 30px 10px;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.btn-ficha {
  font-size: 1.2rem;
  color: #000;
  border-radius: 20px;
 
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #0ef;
  color: #000;
  padding: 12px 24px;
  margin-top: 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #00c6ff;
}

 but-section {

  padding: 50px 10%;
  text-align: center;
}


section {

  padding: 65px 10%;
  text-align: center;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0a0f1f;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 2rem;
  color: #0ef;
  margin-bottom: 10px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background: #fff;
  padding: 1.5rem;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step span {
  background: #0ef;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}



.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1rem auto;
  width: 80%;
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.form-contato input,
.form-contato textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-contato button {
  background: #0ef;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-contato button:hover {
  background: #00c6ff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  text-decoration: none;
}

footer {
  background: #0a0f1f;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* ===================== */
/* RESPONSIVIDADE GERAL */
/* ===================== */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

@media (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }

  section {
    padding: 50px 5%;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .testimonial {
    width: 95%;
  }

  .form-contato {
    width: 90%;
  }

  .whatsapp-float {
    font-size: 2rem;
    bottom: 15px;
    right: 15px;
  }
}
}
