:root {
  --primary: #009bb3;
  --secondary: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


body {
  color: var(--gray-800);
  background: #fff;
  min-width: 320px;
}


.container {
  max-width: 1152px;
  margin: auto;
  padding: 0 16px;
}

/* HEADER */
.header {
  border-bottom: 1px solid var(--gray-200);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}


.logo-small {
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
}

.logo-main {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}

/* HERO */
.hero {
  background: var(--gray-50);
  padding: 80px 0;
}

.hero-box {
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  text-align: center;
}

.hero-image {
  height: 470px;
  background-image: url("../img/hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 24px;
  padding-right: 81px;
}
.hero-box h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-box p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 32px;
}


/* DIGITAL */
.digital {
  padding: 64px 0;
  text-align: center;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 16px;
  font-size: 32px;
}

/* STEPS */
.steps {
  background: var(--gray-50);
  padding: 64px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.step span {
  text-align: center;
  font-size: 56px;
  color: var(--primary);
  font-weight: bold;
}

.step {
  text-align: center;
  max-width: 320px;
  margin: auto;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  line-height: 1.6;
  color: var(--gray-600);
}

/* CONTACT */

.contact h2 {
  text-align: center;
  margin-bottom: 24px;
  width:100%;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact {
  padding: 64px 0;
}
.contact-cta{
	text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.contact-image {
  height: 320px;
  background: url("../img/contato.webp") no-repeat center;
  background-size: contain;
  background-color: var(--gray-100);
  border-radius: 8px;
}

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: #fff;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-copy {
  text-align: center;
  margin-top: 32px;
  color: #9ca3af;
  font-size: 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer h4 {
  margin-bottom: 12px;
}

.footer p,
.footer li {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.newsletter label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-600);
}


/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 24px;
}

.primary {
  background: var(--primary);
  color: #fff;
}

.secondary {
  background: var(--secondary);
  color: #000;
}

/* RESPONSIVO */
@media (max-width: 640px) {
  .hero-image {
    height: 150px;
    padding-right: 0;
  }

  .digital-grid,
  .steps-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.header-contact {
  font-size: 14px;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .header-contact {
    display: none;
  }
}
@media (max-width: 640px) {
  .logo-main {
    font-size: 36px;
  }
  .logo{
	  padding:12px;
  }

  .hero-box {
    padding: 24px;
  }

  .hero-box h1 {
    font-size: 24px;
  }

  .hero-box p {
    font-size: 16px;
  }
}
