@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Inter:wght@100..900&display=swap');

:root{
  --bg: #f4f2ea;
  --surface: #ffffff;
  --surface-2: #0f1715;
  --text: #101111;
  --text-soft: #5a615f;
  --white: #ffffff;
  --line: rgba(16, 17, 17, 0.08);
  --green: #c0e24e;
  --green-dark: #0a5e63;
  --green-deep: #10383c;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,0.12);
}

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

html{
  scroll-behavior: smooth;
}

body{
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a{
  text-decoration: none;
  color: inherit;
}

ion-icon{
  pointer-events: none;
}

.page-home{
  position: relative;
}

.section{
  position: relative;
  width: 100%;
}

.section-shell,
.hero-shell,
.cta-band-shell,
.footer-shell{
  width: min(1400px, calc(100% - 2rem));
  margin-inline: auto;
}

.h1{
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.95;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.06em;
}

.h1 span{
  font-family: "PP Editorial Old", "PP Neue Montreal", serif;
  font-style: italic;
  font-weight: 500;
}

p{
  font-family: "Geist Mono", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-kicker,
.footer-kicker,
.footer-label,
.slider-kicker{
  font-family: "Geist Mono", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  opacity: 0.7;
}

.section-title{
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.section-text{
  max-width: 720px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.line{
  overflow: hidden;
}

.line h1,
.line p{
  transform: translateY(120%);
  will-change: transform;
}

.hero{
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  isolation: isolate;
  overflow: clip;
  background: #0c1312;
}

.hero-img{
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-img img{
  transform: scale(1.12);
  will-change: transform;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.45)),
    radial-gradient(circle at 50% 30%, rgba(192,226,78,0.12), transparent 45%);
}

.hero-shell{
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: max(7rem, 14vh);
  padding-bottom: 2rem;
}

.header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.under_text{
  max-width: 700px;
}

.under_text p{
  color: rgba(255,255,255,0.84);
  text-align: center;
  font-size: 0.95rem;
}

.cta{
  width: min(760px, 100%);
  min-height: 66px;
  margin-inline: auto;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  will-change: transform;
}

.cta-label{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.cta-label p{
  color: #111;
  font-weight: 700;
}

.cta-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* INTRO */
.intro{
  padding: 2rem 0 0;
}

.section-shell{
  padding: clamp(1.25rem, 2vw, 2rem);
}

.intro-top{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.intro-copy{
  background: linear-gradient(145deg, #ffffff 0%, #f7f6f1 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.intro-copy .section-kicker{
  margin-bottom: 1rem;
}

.intro-copy .section-title{
  margin-bottom: 1rem;
}

.intro-copy .section-text{
  margin-bottom: 1.5rem;
}

.intro-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.intro-pills span{
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #eef5df;
  color: #233122;
  font-family: "Geist Mono", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(192,226,78,0.35);
}

.intro-visual{
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0a5e63 0%, #102e31 100%);
  box-shadow: var(--shadow);
}

.intro-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(192,226,78,0.2), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 24%);
  z-index: 1;
}

.device-frame{
  position: absolute;
  inset: 10% 12% 12% 12%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  z-index: 2;
}

.device-badge{
  position: absolute;
  z-index: 3;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #102e31;
  font-family: "Geist Mono", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
}

.badge-a{ top: 10%; left: 4%; }
.badge-b{ top: 58%; right: 4%; }
.badge-c{ bottom: 10%; left: 10%; }

.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_icons{
  width: 58px;
  height: 58px;
  color: var(--green-dark);
}

.feature-card h3{
  font-size: 1.35rem;
  margin-top: 1rem;
  margin-bottom: 0.7rem;
}

.feature-card p{
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.feature-link{
  width: fit-content;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "Geist Mono", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

/* SLIDER */
.slider{
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 2rem;
  overflow: hidden;
  background: #0f1413;
}

.slider,
.pin-spacer {
  z-index: 1 !important;
}

.slider-images,
.slider-copy,
.slider-indicator {
  pointer-events: none;
}

.slider-images{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-images::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.42), rgba(0,0,0,0.18));
  z-index: 2;
  pointer-events: none;
}

.slider-images img,
.slider-layer{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform, opacity;
}

.slider-copy{
  position: relative;
  z-index: 3;
  width: min(1400px, calc(100% - 2rem));
  height: 100%;
  min-height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: #fff;
}

.slider-text{
  max-width: 760px;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.slider-indicator{
  position: absolute;
  z-index: 3;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.slider-indices{
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.4rem 0;
}

.slider-indices p{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 0.78rem;
}

.index{
  position: relative;
  width: 1.25rem;
  display: flex;
  justify-content: flex-end;
  opacity: 0.35;
  will-change: opacity;
}

.marker{
  position: relative;
  display: block;
  width: 0.75rem;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  will-change: transform;
}

.slider-progress-bar{
  position: relative;
  width: 2px;
  /*min-height: 240px;*/
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}

.slider-progress{
  position: absolute;
  inset: 0;
  transform-origin: top;
  transform: scaleY(0);
  background: #fff;
}

@media (max-width: 768px){
  .slider{
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .slider-copy{
    height: 100%;
    min-height: 100%;
    justify-content: flex-end;
    padding-bottom: 6rem;
  }

  .slider-indicator{
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1.2rem;
    transform: none;
    justify-content: space-between;
    align-items: flex-end;
  }

  .slider-indices{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
    max-width: calc(100% - 40px);
  }

  .slider-indices p{
    gap: 0.45rem;
  }

  .slider-progress-bar{
    min-height: 84px;
  }
}
/* CTA BAND */
.cta-band{
  padding: 2rem 0;
}

.cta-band-shell{
  background: linear-gradient(135deg, #153539 0%, #0c1615 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-band-shell::before{
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,226,78,0.18), transparent 65%);
  pointer-events: none;
}

.cta-band .section-text{
  color: rgba(255,255,255,0.76);
}

.cta-band-button,
.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: var(--green);
  color: #111;
  font-weight: 800;
  font-family: "Geist Mono", sans-serif;
  position: relative;
  overflow: hidden;
}

/* FOOTER */
.site-footer{
  padding: 0 0 1rem;
}

.footer-shell{
  padding: clamp(1.5rem, 4vw, 4rem);
  background: #111715;
  color: #f4f4ef;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.footer-shell::before{
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,226,78,0.2), transparent 62%);
  pointer-events: none;
}

.footer-top{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2{
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
  max-width: 760px;
  margin: 1rem 0;
}

.footer-text{
  max-width: 620px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
}

.footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.footer-col{
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a,
.footer-col span,
.footer-bottom a,
.footer-bottom p{
  color: rgba(255,255,255,0.78);
}

.footer-bottom{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.footer-bottom-links{
  display: flex;
  gap: 1rem;
}

.reveal-up{
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

/* RESPONSIVO */
@media (max-width: 1100px){
  .intro-top,
  .footer-top,
  .cta-band-shell{
    grid-template-columns: 1fr;
  }

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

  .footer-links{
    grid-template-columns: 1fr 1fr;
  }

  .intro-visual{
    min-height: 420px;
  }
}

@media (max-width: 768px){
  .hero-shell{
    padding-top: 7rem;
    padding-bottom: 1rem;
  }

  .under_text p{
    font-size: 0.82rem;
  }

  .cta{
    width: 100%;
    min-height: 60px;
  }

  .cta-label{
    width: calc(100% - 90px);
    text-align: center;
  }

  .cta-label p{
    font-size: 0.74rem;
  }

  .cta-icon{
    width: 46px;
    height: 46px;
  }

  .intro{
    padding-top: 1rem;
  }

  .intro-visual{
    min-height: 360px;
  }

  .device-frame{
    inset: 12% 10% 16% 10%;
  }

  .device-badge{
    font-size: 0.68rem;
    padding: 0.65rem 0.8rem;
  }

  .slider-indicator{
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1.2rem;
    transform: none;
    justify-content: space-between;
    align-items: flex-end;
  }

  .slider-indices{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
    max-width: calc(100% - 40px);
  }

  .slider-indices p{
    gap: 0.45rem;
  }

  .slider-progress-bar{
    min-height: 84px;
  }

  .footer-links{
    grid-template-columns: 1fr;
    display: none; /*teste*/
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px){
  .section-shell,
  .hero-shell,
  .cta-band-shell,
  .footer-shell{
    width: min(1400px, calc(100% - 1rem));
  }

  .intro-copy,
  .cta-band-shell,
  .footer-shell,
  .intro-visual{
    border-radius: 26px;
  }

  .badge-a,
  .badge-b,
  .badge-c{
    position: static;
  }

  .intro-visual{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    min-height: auto;
  }

  .intro-visual::before{
    display: none;
  }

  .device-frame{
    position: relative;
    inset: auto;
    min-height: 260px;
  }

  .h1{
    font-size: 2.7rem;
  }
}


/* PRODUCT SECTION V2 */
.product-section {
  padding: 2rem 0 0;
}

.product-shell {
  width: min(1400px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 4rem);
  border-radius: 36px;
  background: linear-gradient(135deg, #153539 0%, #0c1615 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.product-shell::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,226,78,0.16), transparent 65%);
  pointer-events: none;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-copy .section-text {
  color: rgba(255,255,255,0.76);
  max-width: 640px;
  margin-top: 1rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.product-tags span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: "Geist Mono", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-actions {
  margin-top: 1.75rem;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-card {
  position: relative;
  min-height: fit-content;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.product-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
}

.product-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-stat {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.product-stat-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Geist Mono", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.68;
}

.product-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  letter-spacing: -0.04em;
}

.product-stat p {
  color: rgba(255,255,255,0.74);
}

.product-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-benefit {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-benefit ion-icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.product-benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.product-benefit p {
  color: rgba(255,255,255,0.74);
}

.product-reveal {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-image-card {
    min-height: fit-content;
  }

  .product-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-shell {
    width: min(1400px, calc(100% - 1rem));
    border-radius: 26px;
    padding: 1.25rem;
  }

  .product-image-card {
    min-height: fit-content;
    border-radius: 22px;
  }

  .product-benefit,
  .product-stat {
    border-radius: 20px;
  }
}
