/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* REMOVE ESPAÇAMENTO GLOBAL */
html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* BODY ESCOPADO */
.site__body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
/* TUDO ESCOPADO */
.site__body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
/* IMAGENS RESPONSIVAS */
.site__body img {
  max-width: 100%;
  height: auto;
  display: block;
}


.site {
  font-family: 'Inter', sans-serif;
  background: #0d5c7a;
  color: #fff;
}

/* CONTAINER */
.site__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site__header {
  background: #fbfbfb;
  height: 90px;
}

.site__header .site__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site__logo img {
  height: 240px;
  width: auto;
  display: block;
  margin-top: 20px;
}

.site__logo span {
  color: #555;
}

/* NAV */
.site__nav {
  display: flex;
  gap: 25px;
  align-items: center;
    margin-top: 20px;

}

.site__nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.site__btn-whatsapp {
  background: #28a745;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
}

/* HAMBURGER */
.site__hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.site__hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* HERO */
.site__hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #040451 0%, #0c1ca9 100%);
  overflow: hidden;
}

/* SLIDER */
.site__slider {
  position: relative;
  overflow: hidden;
}

.site__slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 620px;
}

.site__slide.active {
  display: flex;
}

.site__slide-content {
  flex: 1;
  max-width: 600px;
}

.site__slide-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.site__slide-image img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
  animation: siteHeroFloat 4s ease-in-out infinite;
}

/* BADGE */
.site__badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* TITULO */
.site__slide h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.site__slide h1 span {
  background: linear-gradient(90deg, #e8cd00, #ccc900);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* TEXTO */
.site__slide p {
  color: #b0cbd8;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

/* BOTÕES */
.site__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.site__btn-primary {
  background: linear-gradient(90deg, #1e6eff, #0047ff);
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

.site__btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 24px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

/* ANIMAÇÃO DA IMAGEM */
@keyframes siteHeroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .site__slide {
    min-height: auto;
    gap: 30px;
  }

  .site__slide h1 {
    font-size: 52px;
  }

  .site__slide-image img {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .site__nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
    z-index: 20;
  }

  .site__nav.active {
    display: flex;
  }

  .site__hamburger {
    display: flex;
  }

  .site__slide,
  .site__slide.active {
    flex-direction: column-reverse;
    text-align: center;
    min-height: auto;
  }

  .site__slide-content {
    max-width: 100%;
  }

  .site__slide-image {
    justify-content: center;
  }

  .site__slide-image img {
    max-width: 320px;
  }

  .site__slide h1 {
    font-size: 40px;
  }

  .site__actions {
    flex-direction: column;
    align-items: center;
  }

  .site__btn-primary,
  .site__btn-outline {
    width: 100%;
    max-width: 260px;
  }

  .site__logo img {
    height: 192px;
  }
}
/* infraestrutura*/
.site__about {
  background: #f3f3f3;
  padding: 100px 0;
}

.site__about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.site__about-content {
  max-width: 670px;
}

.site__about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #5f666b;
  color: #16c5f7;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 28px;
}

.site__about-title {
  margin: 0 0 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 800;
  background: linear-gradient(180deg, #00046c 0%, #05208d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.site__about-text {
  margin: 0 0 24px;
  color: #050505;
  font-size: 18px;
  line-height: 1.9;
  max-width: 760px;
}

.site__about-line {
  width: 100%;
  max-width: 670px;
  height: 1px;
  background: #d6edf3;
  margin-top: 42px;
}

.site__about-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site__about-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #017203;
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  
}

.site__about-icon {
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
  margin-top: 2px;
}

.site__about-card-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.site__about-card-content p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .site__about-title {
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  .site__about {
    padding: 72px 0;
  }

  .site__about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site__about-content {
    max-width: 100%;
  }

  .site__about-title {
    font-size: 48px;
    line-height: 1.05;
  }

  .site__about-text {
    font-size: 17px;
    line-height: 1.8;
  }

  .site__about-line {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .site__about {
    padding: 56px 0;
  }

  .site__about-badge {
    font-size: 14px;
    padding: 9px 16px;
    margin-bottom: 22px;
  }

  .site__about-title {
    font-size: 38px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .site__about-text {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .site__about-cards {
    gap: 18px;
  }

  .site__about-card {
    padding: 22px 20px;
    border-radius: 18px;
    gap: 16px;
  }

  .site__about-icon {
    font-size: 24px;
  }

  .site__about-card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .site__about-card-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}
/* infraestrutura*/

.site__ticker {
  background: linear-gradient(180deg, #165f06 0%, #00e441 100%);
  border-top: 1px solid rgba(96, 231, 7, 0.06);
  border-bottom: 1px solid rgba(30, 228, 0, 0.06);
  overflow: hidden;
  padding: 18px 0;
}

.site__ticker-track {
  display: flex;
  width: max-content;
  animation: siteTickerMove 22s linear infinite;
}

.site__ticker-content {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.site__ticker-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #f0f0f0;
  text-transform: uppercase;
}

.site__ticker-dot {
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1;
}

@keyframes siteTickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .site__ticker {
    padding: 14px 0;
  }

  .site__ticker-content {
    gap: 20px;
  }

  .site__ticker-content span {
    font-size: 16px;
  }

  .site__ticker-dot {
    font-size: 18px !important;
  }
}

/*botão whats*/
.site__wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.site__wa-box {
  position: relative;
  width: 290px;
  max-width: calc(100vw - 96px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  padding: 22px 22px 20px;
  animation: siteWaFadeUp 0.35s ease;
}

.site__wa-box::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.site__wa-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #9a9a9a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site__wa-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.site__wa-message-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 3px;
}

.site__wa-message p {
  margin: 0;
  color: #2b2e3a;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.site__wa-button {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.site__wa-button:hover {
  transform: translateY(-2px);
}

.site__wa-button-icon {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.site__wa-box.site__wa-hidden {
  display: none;
}

@keyframes siteWaFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .site__wa-widget {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .site__wa-box {
    width: 240px;
    padding: 18px 18px 16px;
    max-width: calc(100vw - 88px);
  }

  .site__wa-message p {
    font-size: 16px;
  }

  .site__wa-button {
    width: 62px;
    height: 62px;
  }

  .site__wa-button-icon {
    font-size: 28px;
  }
}
/* whatsapp */

.jlweb {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 20px;
}

.jlweb a {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
}

.jlweb a:hover {
  color: #449d3e;
  text-decoration: underline;
}


/* cefeito rolar */
/* estado inicial (escondido) */
/* base */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

/* ativo */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* delays (efeito cascata) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.site__business-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site__business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}