@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');

:root {
  --primary: #016c62;
  --primary-hover: #014f48;
  --light: #f1fff0;
  --dark: #153225;
  --text-muted: #5f6f68;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gabarito", Arial, sans-serif;
  text-decoration: none;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

section {
  width: 100%;
  padding-top: -20px;
  border-top: 1px solid #e5e5e5;
}

.image-qs {
  width: 300px;
}

#quem-sou h2 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: var(--dark);
  border-bottom: 1px solid #e5e5e5;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.logo {
  width: 250px;
}

.btn-normal {
  margin-right: 20px;
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
}

.btn-contato {
  color: var(--primary);
  background-color: var(--light);
  padding: 8px 16px;
  border-radius: 1000px;
  font-weight: 600;
  text-decoration: none;
}

.btn-contato:hover {
  background-color: var(--primary);
  color: var(--light);
  transition: 0.25s;
}

/* HERO */
.hero {
  background: var(--dark);
  color: var(--light);
  padding: 120px 0;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* BOTÃO */
.botao {
  display: flex;
  justify-content: center;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.btn-primary:hover {
  background: var(--light);
    color: var(--primary);
  transition: background 0.3s ease;
}

/* SEÇÕES */
.section {
  padding: 90px 0;
}

.section h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 6px 18px var(--shadow);
}

.card h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.1; /* reduz o espaçamento entre linhas */
}

.card h4 .material-symbols-outlined {
  font-size: 1.6rem;   /* ligeiramente maior */
  line-height: 1;      /* remove o espaço estranho */
  position: relative;
  top: -6px;            /* ajuste fino (0 ou 1px) */
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.card p {
  color: var(--text-muted);
}

.card span {
  display: block;
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* SEÇÃO ESCURA */
.dark {
  background: var(--dark);
  color: var(--light);
  text-align: center;
}

.dark h3 {
  color: var(--light);
}

.text-center {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

/* LISTA */
.list {
  list-style: none;
  max-width: 400px;
  margin: auto;
}

.list li {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: bold;
  background-color: var(--light);
  padding: 12px;
    border-radius: 6px;
}

/* CONTATO */
.contact {
  text-align: center;
}

.p-contato {
    margin-top: -30px;
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}

/* === ANIMAÇÕES SUAVES (estilo banco) === */

/* Estado inicial */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Quando aparece */
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover refinado nos links */
.btn-normal {
  position: relative;
}

.btn-normal::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.btn-normal:hover::after {
  width: 100%;
}

/* Cards – microinteração */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Botão – feedback sutil */
.btn-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVIDADE – HEADER
   ========================= */

@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 20px 0;
    gap: 16px;
  }

  .logo {
    width: 180px;
  }

  .nav div,
  .nav nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .btn-normal {
    margin-right: 0;
    font-size: 0.95rem;
  }

  .btn-contato {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

}

@media (max-width: 480px) {

  .logo {
    width: 150px;
  }

  .btn-normal {
    font-size: 0.9rem;
  }

  .btn-contato {
    font-size: 0.9rem;
  }

}

/* =========================
   QUEM SOU
   ========================= */

.quem-sou-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.image-qs {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
}

.quem-sou-text {
  max-width: 500px;
  text-align: left;
}

#quem-sou h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--light);
}

#quem-sou p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light);
}

@media (max-width: 900px) {

  .quem-sou-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .quem-sou-text {
    text-align: center;
  }

  #quem-sou h2 {
    font-size: 2rem;
  }

  #quem-sou p {
    font-size: 1.05rem;
  }
}
