@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&family=AR+One+Sans:wght@600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ── HEADER ── */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 163px;
  background: #fff;
}

.header-inner {
  width: 100%;
  max-width: 983px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 20px;
}

.logo {
  width: 300px;
  height: auto;
  display: block;
}

/* ── HERO ── */
.hero {
  display: flex;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1182px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.hero-img-col {
  flex: 0 0 55%;
  overflow: hidden;
}

.hero-img-col img {
  width: 100%;
  display: block;
  height: auto;
}

.hero-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px 0 10px;
}

.hero-title-light {
  font-family: 'Roboto', sans-serif;
  font-size: 101px;
  font-weight: 300;
  color: #049c34;
  line-height: 1;
  text-align: left;
}

.hero-title-bold {
  font-family: 'Roboto', sans-serif;
  font-size: 101px;
  font-weight: 700;
  color: #fc6404;
  line-height: 1;
  text-align: left;
}

.btn-whatsapp {
  display: inline-block;
  align-self: flex-start;
  margin: 20px 0 0 20px;
  padding: 12px 24px;
  background-color: #069b32;
  color: #fff;
  font-family: 'AR One Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background-color: #047a27;
}

/* ── FOOTER ── */
.footer {
  background-color: #fc6404;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 211px;
}

.footer-inner {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.footer-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.footer-insta svg {
  width: 48px;
  height: 48px;
  fill: #fff;
  transition: opacity 0.2s;
}

.footer-insta:hover svg {
  opacity: 0.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-title-light,
  .hero-title-bold {
    font-size: 72px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    align-items: center;
  }

  .logo {
    width: 151px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-img-col {
    flex: none;
    width: 100%;
  }

  .hero-img-col img {
    width: 100%;
    max-width: 100%;
  }

  .hero-text-col {
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .hero-title-light,
  .hero-title-bold {
    font-size: 52px;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
}
