/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/hero.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
/* HERO CAROUSEL */

.hero-carousel {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* SLIDES */

.hero-slides {
  position: relative;
  height: 450px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* BACKGROUND */

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  object-fit: cover;
  object-position: center;
}

/* OVERLAY (contraste pro texto) */

.hero-overlay {
    background: linear-gradient
        ( 90deg, 
        rgba(8, 12, 22, 0.7) 0%, 
        rgba(8, 12, 22, 0.5) 40%, 
        rgba(8, 12, 22, 0.2) 100% 
    );
}


/* CONTENT */

.hero-content {
  position: relative;
  z-index: 3;
  height: 450px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

/* TEXTO */

.hero-copy h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 12px 0;
}

.hero-copy p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 20px;
}

/* BOTÕES */

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* DOTS */

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dots button.active {
  width: 28px;
  background: #ffffff;
}

.hero-logo-content {
    position: relative;
    z-index: 3;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

    .hero-logo-content p {
        max-width: 480px;
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.95;
    }



/* RESPONSIVO */

@media (max-width: 768px) {
  .hero-carousel,
  .hero-slides,
  .hero-content {
    height: 380px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/home.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
.home-page {
  min-height: 100vh;
}

/* seção base */

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 700px;
}

/* grid */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 18px;
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.feature-card p {
  color: var(--muted);
}

.operation-section {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 34%), radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.16), transparent 34%), linear-gradient(135deg, #050711 0%, #0f172a 55%, #020617 100%);
    color: #ffffff;
    overflow: hidden;
}

    .operation-section::before {
        content: "";
        position: absolute;
        inset: 24px;
        border: 1px solid rgba(148, 163, 184, 0.16);
        border-radius: 32px;
        pointer-events: none;
    }

.operation-head {
    position: relative;
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.operation-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.28);
    color: #38bdf8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.operation-head h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.operation-head p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
}

.operation-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-gap: 24px;
    gap: 24px;
    align-items: stretch;
}

.operation-card {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    overflow: hidden;
}

    .operation-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -70px;
        top: -70px;
        border-radius: 999px;
        background: rgba(56, 189, 248, 0.14);
    }

.operation-card-main {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(15, 23, 42, 0.86)), rgba(15, 23, 42, 0.9);
    border-color: rgba(56, 189, 248, 0.32);
}

.operation-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 26px;
}

.operation-card h3 {
    position: relative;
    margin: 0 0 14px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.operation-card p {
    position: relative;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.operation-card ul {
    position: relative;
    display: grid;
    grid-gap: 12px;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.operation-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.45;
}

    .operation-card li::before {
        content: "✓";
        flex: 0 0 auto;
        width: 22px;
        height: 22px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 197, 94, 0.14);
        color: #22c55e;
        font-size: 13px;
        font-weight: 900;
    }

@media (max-width: 900px) {
    .operation-section {
        padding: 72px 0;
    }

        .operation-section::before {
            inset: 14px;
            border-radius: 24px;
        }

    .operation-layout {
        grid-template-columns: 1fr;
    }

    .operation-card {
        padding: 26px;
    }
}

/* responsivo */

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/landing/wodgym-pre-lancamento/prelaunch.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************/
.landing-page {
    min-height: 100vh;
    background: #05060a;
    color: #fff;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    padding: 28px min(5vw, 72px) 80px;
    background: radial-gradient(circle at 15% 20%, rgba(236, 72, 153, 0.22), transparent 32%), radial-gradient(circle at 85% 15%, rgba(34, 197, 94, 0.13), transparent 28%), linear-gradient(135deg, #05060a 0%, #10111a 50%, #05060a 100%);
}

.landing-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.35;
    pointer-events: none;
}

.landing-header {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    width: 180px;
    height: auto;
}

.landing-login {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: calc(100vh - 120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-gap: 48px;
    gap: 48px;
    align-items: center;
}

.landing-badge,
.section-head span,
.about-copy span,
.lead-copy span {
    display: inline-flex;
    color: #22c55e;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.landing-copy h1 {
    max-width: 760px;
    margin: 0;
}

    .landing-copy h1 {
        font-size: clamp(2.4rem, 4.5vw, 4.4rem);
        line-height: 0.95;
        letter-spacing: -0.06em;
        text-transform: uppercase;
    }

    .landing-copy p {
        max-width: 650px;
        margin: 28px 0 0;
        color: rgba(255,255,255,0.72);
        font-size: 1.18rem;
        line-height: 1.75;
    }

    .landing-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 34px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 900;
    }

    .btn-primary {
        color: #05060a;
        background: linear-gradient(135deg, #22c55e, #ec4899);
        box-shadow: 0 18px 60px rgba(236,72,153,0.32);
    }

    .btn-secondary {
        color: #fff;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.14);
    }

    .countdown-card {
        padding: 28px;
        border-radius: 30px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        -webkit-backdrop-filter: blur(18px);
                backdrop-filter: blur(18px);
        box-shadow: 0 30px 90px rgba(0,0,0,0.38);
    }

    .countdown-label {
        display: block;
        color: #ec4899;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        margin-bottom: 18px;
    }

    .countdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
        gap: 12px;
    }

        .countdown-grid div {
            padding: 20px 12px;
            border-radius: 22px;
            text-align: center;
            background: rgba(0,0,0,0.28);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .countdown-grid strong,
        .countdown-live {
            display: block;
            font-size: clamp(2.5rem, 5vw, 4.3rem);
            line-height: 1;
            color: #fff;
            letter-spacing: -0.08em;
        }

        .countdown-grid small {
            display: block;
            margin-top: 8px;
            color: rgba(255,255,255,0.62);
            text-transform: uppercase;
            font-weight: 800;
            font-size: 0.72rem;
            letter-spacing: 0.14em;
        }

    .countdown-card p {
        margin: 20px 0 0;
        color: rgba(255,255,255,0.66);
    }

    .system-section,
    .features-section,
    .about-section,
    .lead-section,
    .landing-footer {
        width: min(1280px, calc(100% - 40px));
        margin: 0 auto;
    }

    .system-section {
        padding: 100px 0 70px;
    }

    .section-head {
        max-width: 760px;
        margin-bottom: 34px;
    }

        .section-head h2,
        .about-copy h2,
        .lead-copy h2 {
            font-size: clamp(1.9rem, 3.6vw, 3.4rem);
        }

    .features-section h3 {
        font-size: 1.08rem;
    }

    .mockups-grid {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        grid-gap: 20px;
        gap: 20px;
    }

    .mockup-card {
        position: relative;
        min-height: 320px;
        border-radius: 28px;
        overflow: hidden;
        background: #111827;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    }

        .mockup-card.large {
            min-height: 660px;
            grid-row: span 2;
        }

    .mockup-image {
        object-fit: cover;
        object-position: top center;
    }

    .features-section {
        padding: 40px 0 90px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 18px;
        gap: 18px;
    }

        .features-section article {
            padding: 26px;
            border-radius: 26px;
            background: rgba(255,255,255,0.045);
            border: 1px solid rgba(255,255,255,0.1);
        }

            .features-section article span {
                font-size: 2rem;
            }

        .features-section h3 {
            margin: 18px 0 10px;
            font-size: 1.2rem;
        }

        .features-section p {
            margin: 0;
            color: rgba(255,255,255,0.66);
            line-height: 1.6;
        }

    .about-section {
        padding: 80px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 60px;
        gap: 60px;
        align-items: start;
    }

        .about-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-section li {
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.78);
            font-size: 1.08rem;
        }

    .lead-section {
        margin-bottom: 80px;
        padding: 38px;
        border-radius: 34px;
        background: radial-gradient(circle at top right, rgba(236,72,153,0.2), transparent 34%), rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.12);
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 36px;
        gap: 36px;
        align-items: center;
    }

    .lead-copy p {
        color: rgba(255,255,255,0.68);
        line-height: 1.7;
        margin: 18px 0 0;
    }

    .lead-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 12px;
        gap: 12px;
    }

        .lead-form input {
            height: 56px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(0,0,0,0.28);
            color: #fff;
            border-radius: 16px;
            padding: 0 16px;
            outline: none;
        }

        .lead-form button {
            grid-column: span 2;
            height: 58px;
            border: none;
            border-radius: 16px;
            background: linear-gradient(135deg, #22c55e, #ec4899);
            color: #05060a;
            font-weight: 950;
            cursor: pointer;
        }

    .landing-footer {
        padding: 0 0 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255,255,255,0.5);
    }

    @media (max-width: 920px) {
        .landing-hero-content,
        .about-section,
        .lead-section,
        .mockups-grid {
            grid-template-columns: 1fr;
        }

        .mockup-card.large {
            min-height: 420px;
        }

        .features-section {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 620px) {
        .landing-hero {
            padding: 22px 18px 60px;
        }

        .landing-logo {
            width: 140px;
        }

        .landing-login {
            font-size: 0.78rem;
            padding: 10px 13px;
        }

        .landing-copy h1 {
            font-size: 2.8rem;
        }

        .landing-buttons {
            flex-direction: column;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
        }

        .features-section {
            grid-template-columns: 1fr;
        }

        .lead-form {
            grid-template-columns: 1fr;
        }

            .lead-form button {
                grid-column: span 1;
            }

        .landing-footer {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }
    }

