/* =========================
   VARIÁVEIS
========================= */
:root {
  --green: #28b673;
  --green-soft: #e9f7f0;
  --dark: #2f4b5f;
  --text: #333;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 56px;
}

.contact-btn {
  text-decoration: none;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.2s;
}

.contact-btn:hover {
  background: #1e9b5f;
  transform: translateY(-1px);
}

/* =========================
   HERO — MOBILE FIRST
========================= */
.hero {
  text-align: center;
  padding: 90px 20px 70px;
  background-color: #ffffff;
}

.hero h1 {
  font-size: 2.1rem;
  color: var(--green);
}

.subtitle {
  margin-top: 10px;
  font-size: 1.15rem;
  color: var(--dark);
}

.description {
  max-width: 520px;
  margin: 18px auto 0;
  font-size: 1rem;
}

/* =========================
   SEÇÕES
========================= */
.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.container h2 {
  color: var(--dark);
  margin-bottom: 18px;
}

.soft-box {
  background: var(--green-soft);
  border-radius: 16px;
  padding: 40px 30px;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* =========================
   QUEM ESTÁ POR TRÁS
========================= */
.about-founder {
  background: #ffffff;
  padding: 90px 20px;
}

.founder-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* FOTO ORGÂNICA */
.founder-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;

  border-radius: 50%; /* FOTO REDONDA */
  border: 4px solid rgba(40, 182, 115, 0.25);

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.founder-text {
  flex: 1;
  min-width: 280px;
}

.founder-text h2 {
  color: var(--dark);
  margin-bottom: 20px;
}

.founder-text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.highlight-text {
  color: var(--green);
  font-size: 1.1rem;
}

/* =========================
   INSTAGRAM
========================= */
.instagram-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, var(--green-soft));
}

.insta-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.instagram-section h2 {
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 16px;
}

.instagram-section p {
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.instagram-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--green);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1.05rem;
  transition: background 0.3s, transform 0.2s;
}

.instagram-btn:hover {
  background: #1e9b5f;
  transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #777;
  background: #fafafa;
}

/* =========================
   ANIMAÇÃO
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   DESKTOP (SVG SÓ AQUI)
========================= */
@media (min-width: 769px) {

  .hero {
    padding: 120px 20px 100px;
    background-image: url("assets/hero-bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .description {
    font-size: 1.1rem;
  }
}

/* =========================
   MOBILE AJUSTES
========================= */
@media (max-width: 768px) {

  .header {
    flex-direction: column;
    gap: 16px;
  }

   .founder-photo img {
    width: 200px;
    height: 200px;
  }

  .founder-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {

  .hero h1 {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.05rem;
  }
}
