/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
}

body {
  background: #ffffff;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5em;
}

.sobre-texto h2 {
  font-size: 1.2em;
}

.sobre-texto p {
  margin-top:15px;
}

h2 {
  font-size: 2.5em;
}

h4 {
  margin: 10px;
  font-size: 1.3em;
  color: #1A3568;
}

/* CONTAINERS */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOPBAR */
.topbar {
  background: #e9eef4;
  padding: 20px;
}

.topbar .logo {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}

.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline {
  padding: 8px 18px;
  border: 2px solid #1a1a1a;
  border-radius: 30px;
  text-decoration: none;
  color: #1a1a1a;
}

/* HERO */
.hero {
  background-image: url(header_back.jpg);
  background-position: bottom;
  padding: 100px 0;
  text-align: center;
  color: white;
}

.slogan {
  font-size: 13px;
  display: block;
  font-weight: normal;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-blue {
  color: #47c3ff;
}

.hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 35px;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn,
.btn-white {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.btn {
  background: #47c353;
  color: white;
}

.btn-white {
  background: white;
  color: #0d1b33;
}

/* SOBRE */
.sobre {
  display: flex;
  align-items: center;
  padding: 80px 0;
  gap: 50px;
}

.sobre-texto {
  flex: 1;
}

.sobre-img {
  flex: 1;
  position: relative;
}

.sobre-img img {
  width: 100%;
  border-radius: 18px;
}

.tag {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #0d1b33;
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
}

.numbers {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.numbers div strong {
  font-size: 26px;
  display: block;
}

/* BENEFÍCIOS */
.beneficios {
  background: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  padding: 60px 0;
}

.beneficios-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  text-align: center;
}

.beneficio-item {
  flex: 1;
}

.icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* CATEGORIAS */
.categorias {
  padding: 80px 0;
  text-align: center;
}

.subtitulo {
  font-size: 14px;
  color: #606060;
}

.categorias h2 {
  margin: 10px 0 5px;
  font-size: 36px;
}

.desc {
  max-width: 600px;
  margin: auto;
  opacity: 0.7;
}

.grid-categorias {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.categoria {
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  text-decoration: none;
  color: #1a1a1a;
  text-align: left;
  border: 1px solid #F2F2F2;
  transition: 0.2s;
}

.categoria:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.categoria h4 {
  margin-left:0px;
}

.categoria .arrow {
  display: block;
  margin-top: 10px;
  color: #0d65ff;
}

/* CTA WHATSAPP */
.cta {
  text-align: center;
  background: linear-gradient(180deg, #0d1b33 0%, #10407a 100%);
  padding: 80px 20px;
  color: white;
}

.btn-whats {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

/* FOOTER */
.footer {
  background: #0d1b33;
  color: white;
  padding: 40px 0;
  text-align: center;
}












/* ----------------------------- */
/* RESPONSIVIDADE CRAME          */
/* ----------------------------- */

/* Tablets (até ~992px) */
@media (max-width: 992px) {

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

  .sobre-texto {
    order: 2;
  }

  .sobre-img {
    order: 1;
    width: 100%;
  }

  .beneficios-grid {
    flex-direction: column;
    gap: 40px;
  }

  .grid-categorias {
    grid-template-columns: repeat(2, 1fr);
  }

  h1, h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 70px 0;
  }
}

/* Celulares grandes (até ~768px) */
@media (max-width: 768px) {

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .grid-categorias {
    grid-template-columns: 1fr;
  }

  .sobre {
    padding: 40px 0;
  }

  .categoria {
    text-align: center;
  }

  .cta {
    padding: 60px 20px;
  }
}

/* Celulares pequenos (até ~480px) */
@media (max-width: 480px) {

  .hero p {
    padding: 0 15px;
    font-size: 0.95rem;
  }

  .btn,
  .btn-white {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 1.7rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  .topbar .logo img {
    max-width: 140px;
  }

  .sobre {
    gap: 20px;
  }
}
