:root {
    --primary: #15803d;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #0f172a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --radius-lg: 1.5rem;
    --radius-md: 0.75rem;
    --radius-sm: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, .logo__text {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    height: 48px;
    border-radius: var(--radius-md);
}

.button--primary {
    background-color: #FFB301;
    color: #000000;
}

.final-cta__actions .button {
    padding: 32px;
}

.button--primary:hover {
    background-color: #FFBF2A;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(111, 188, 79, 0.25);
}

.button--dark {
    background-color: #FFB301;
    color: #000000;
}

.button--dark:hover {
    background-color: #FFBF2A;
    transform: translateY(-2px);
}

.button--white {
    background-color: #ffffff;
    color: var(--primary);
}

.button--white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.button--sm {
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.button--lg {
    height: 3.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

.button--full {
    width: 100%;
}

.link-button {
    display: inline-flex;
    align-items: center;
    color: #FFB301;
    font-weight: 600;
    text-decoration: none;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.link-button:hover svg {
    transform: translateX(4px);
}

.link-button svg {
    transition: transform 0.2s;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: #FFF7E0;
    border: 1px solid #FFB301;
    color: #EEA804;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}


.commitment-badge {
  width: 120px;              /* ajuste fino: 110-140 */
  height: 120px;
  margin: 0 auto 18px;       /* centraliza + espaço antes do título */
  border-radius: 999px;
  overflow: hidden;
  background: #fff;

  /* borda/sombra estilo “selo” */
  border: 3px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  display: grid;
  place-items: center;
}

.commitment-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* se for um selo quadrado, ele “corta” bem */
  display: block;
}

/* responsivo */
@media (max-width: 768px) {
  .commitment-badge {
    width: 104px;
    height: 104px;
    margin-bottom: 14px;
  }
}


/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo__icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo__text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--slate-100);
    z-index: 1000;
    padding: 0.75rem 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.hero__container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.hero__title--gradient {
    background: linear-gradient(to right, var(--primary), #A7E38D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    max-width: 30rem;
}

.hero__features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--slate-700);
    font-weight: 500;
}

.hero__feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__actions {
    margin-bottom: 2rem;
    max-width: 28rem;
}

.hero__trust {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(111, 188, 79, 0.14) 80%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.dashboard-preview {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dashboard-preview__header {
    height: 3rem;
    background-color: var(--slate-50);
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot--red { background-color: #f87171; }
.dot--amber { background-color: #fbbf24; }
.dot--green { background-color: #34d399; }

.dashboard-preview__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: var(--slate-300);
}

.dashboard-preview__icon {
    width: 5rem;
    height: 5rem;
    background-color: #ffffff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dashboard-preview__text {
    font-weight: 700;
    color: var(--slate-400);
}

.floating-card {
    position: absolute;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.floating-card--top {
    top: 6rem;
    right: -1.5rem;
    animation: float 5s ease-in-out infinite;
}

.floating-card--bottom {
    bottom: 6rem;
    left: -1.5rem;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card__icon--green {
    background-color: #dcfce7;
    color: #166534;
}

.floating-card__icon--blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.floating-card__label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
}

.floating-card__value {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 1.125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator__mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--slate-200);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding: 0.25rem;
}

.scroll-indicator__dot {
    width: 0.25rem;
    height: 0.5rem;
    background-color: var(--slate-300);
    border-radius: 9999px;
    animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-indicator svg {
    color: var(--slate-200);
}

/* Challenge Section */
.challenge {
    background-color: #ffffff;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.challenge__container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .challenge__container {
        grid-template-columns: 1fr 1.2fr;
    }
}

.challenge__visual {
    position: relative;
}

.challenge__glow {
    position: absolute;
    inset: -2rem;
    background: linear-gradient(to bottom right, rgba(255, 237, 213, 0.5), rgba(251, 207, 232, 0.5));
    filter: blur(40px);
    border-radius: 1.5rem;
}

.challenge__card {
    position: relative;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow);
}

.challenge__card-icon {
    width: 4rem;
    height: 4rem;
    background-color: #ffffff;
    color: #ea580c;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.challenge__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.challenge__card-text {
    color: var(--slate-500);
    font-size: 0.875rem;
}

/* Pricing Section */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
        min-width: 0;
background-color: #E0FFD2;
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding-top: 3rem;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card--popular {
    border-color: var(--primary);
    background-color: #15803d !important;
    box-shadow: 0 25px 50px -12px #7aff4137;
    transform: scale(1.04) translateY(-12px);
}

.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card__popular {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #15803d !important;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card__off {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    background-color: #15803d; 
    color: #dcfce7;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}


.pricing-card__title {
    color:#000000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-card__desc {
    font-size: 0.875rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.pricing-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--slate-50);
    border: 1px dashed var(--slate-200);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__image-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ffffff;
    color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__price-wrap {
    margin-bottom: 1.5rem;
}

.pricing-card__old {
    font-size: 0.875rem;
    color: #000000;
    opacity: 0.7;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-card__period {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    opacity: 0.7;
}

.pricing-card__divider {
    height: 1px;
    background-color: #000000;
    opacity: 0.1;
    margin-bottom: 1.5rem;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #000000;
}

.pricing-card__feature span {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #166534; 
    color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card__payments {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0.5;
    filter: grayscale(1);
}

.pricing-card__payments span {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.payment-divider {
    width: 1px;
    height: 0.75rem;
    background-color: #000000;
    opacity: 0.5;
}

.pricing-card__guarantee {
    text-align: center;
    font-size: 0.625rem;
    color: var(--slate-400);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Force emoji visibility */
.emoji,
.final-cta__title .emoji,
.pricing-card__popular .emoji {
    color: #FFB301;
}


/* Commitment Section */
.commitment {
    background-color: var(--slate-50);
    border-top: 1px solid var(--slate-100);
}

.commitment__container {
    text-align: center;
}

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .commitment-grid {
        gap: 4rem;
    }
}

.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.commitment-circle {
    width: 5rem;
    height: 5rem;
    background-color: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-300);
    box-shadow: var(--shadow-sm);
}

.commitment-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: none;
}

/* Final CTA Section */
.final-cta__box {
    position: relative;
    background-color: var(--primary);
    border-radius: 2.5rem;
    padding: 4rem 1.5rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(111, 188, 79, 0.35);
}

@media (min-width: 768px) {
    .final-cta__box {
        padding: 5rem;
    }
}

.final-cta__glow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta__glow.top-left { top: -10rem; left: -10rem; }
.final-cta__glow.bottom-right { bottom: -10rem; right: -10rem; }

.final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
}

.final-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.final-cta__text {
    font-size: 1.125rem;
    color: #EEFBE8;
    margin-bottom: 2.5rem;
}

.final-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.final-cta__micro {
    font-size: 0.875rem;
    color: #DDF5D1;
    font-weight: 500;
}

/* NEW: Product Image (below Final CTA) */
.final-image {
  padding:0px 0 56px;
}

.final-image__img {
  display: block;
  width: min(100%, 980px);
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}


/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #ffffff;
    border-top: 1px solid var(--slate-100);
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__nav {
    display: flex;
    gap: 2rem;
}

.footer__nav a {
    color: var(--slate-600);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--primary);
}

.footer__copy {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Footer (BuyGoods screenshot style) — scoped to the new HTML class */
.footer.footer--legal {
    background: #ffffff;
    color: #0f172a;
    border-top: 0;
    padding: 34px 0 26px;
}

.footer.footer--legal .logo__text {
    color: #0f172a;
}

.footer.footer--legal .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.footer.footer--legal .footer__nav.footer__links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer.footer--legal .footer__nav.footer__links a {
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    opacity: 0.92;
}

.footer.footer--legal .footer__nav.footer__links a:hover {
    opacity: 1;
}

.footer.footer--legal .footer__legal {
    margin: 22px auto 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    padding: 22px 22px;
}

.footer.footer--legal .footer__legal-text {
    font-size: 12px;
    line-height: 1.65;
    opacity: 0.9;
    text-align: center;
    margin: 0;
}

.footer.footer--legal .footer__bottom {
    text-align: center;
}

.footer.footer--legal .footer__copy {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.75);
    margin: 0;
}

@media (max-width: 768px) {
    .footer.footer--legal .footer__top {
        justify-content: center;
    }
}

/* (unchanged) */
.pricing-card--popular .pricing-card__guarantee {
    display: none;
}

/* =========================================================
   HERO FIXES (layout + microcopy alignment)
   NOTE: scoped to .hero to avoid touching pricing cards.
   ========================================================= */

.hero .hero__container{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: clamp(32px, 4vw, 64px);
  row-gap: 18px;
  align-items: center;
}

/* Left column stack */
.hero .badge,
.hero .hero__title,
.hero .hero__description,
.hero .hero__features,
.hero .hero__actions{
  grid-column: 1;
}

/* Right visual spans the left stack */
.hero .hero__visual{
  grid-column: 2;
  grid-row: 1 / span 6;
}

/* Scroll indicator lives under everything */
.hero .scroll-indicator{
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 18px;
}

/* Make CTA + microcopy align perfectly */
.hero .hero__actions{
  width: 100%;
  max-width: none; /* full column width (per request) */
}

.hero .hero__actions .button--full{
  width: 100%;
}

.hero .hero__trust{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

/* Tablet + Mobile: single centered column in the required order */
@media (max-width: 1023px){
  .hero .hero__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 0;
  }

  .hero .hero__visual{
    width: 100%;
    margin-top: 18px;
  }

  .hero .hero__features{
    width: 100%;
    max-width: 620px;
    text-align: left;
    margin-top: 16px;
  }

  .hero .hero__actions{
    width: 100%;
    margin-top: 14px;
  }

  .hero .hero__trust{
    gap: 18px;
    margin-top: 8px;
  }

  .hero .scroll-indicator{
    margin-top: 14px;
  }
}

/* Mobile: tighten typography/spacing to fit above the fold */
@media (max-width: 480px){
  .hero{
    padding-top: 38px;
    padding-bottom: 26px;
  }

  .hero .hero__title{
    font-size: 44px;
    line-height: 1.03;
  }

  .hero .hero__description{
    font-size: 18px;
    line-height: 1.45;
    margin-top: 12px;
  }

  .hero .hero__visual{
    margin-top: 16px;
  }

  .hero .dashboard-preview{
    height: 260px;
  }

  .hero .hero__features{
    margin-top: 14px;
    gap: 12px;
  }

  .hero .hero__actions{
    margin-top: 12px;
  }

  .hero .scroll-indicator{
    margin-top: 10px;
  }
}

/* Tablet: reduce vertical whitespace; ensure scroll doesn't overlap */
@media (min-width: 481px) and (max-width: 1023px){
  .hero{
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .hero .hero__title{
    font-size: 54px;
    line-height: 1.05;
  }

  .hero .hero__description{
    font-size: 18px;
    line-height: 1.5;
  }

  .hero .dashboard-preview{
    height: 320px;
  }
}

/* =========================================================
   HERO TUNING (spacing + scroll placement) — 2026-01-12
   Only affects .hero. Does NOT touch pricing.
   ========================================================= */

.hero .badge{
  width: fit-content;
  justify-self: start;
}

/* Button full width so microcopy aligns perfectly */
.hero .hero__button{
  width: 100%;
}

/* Trust microcopy aligned and closer to the button */
.hero .hero__trust{
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* Scroll indicator must stay in flow (no overlap / no absolute positioning) */
.hero .scroll-indicator{
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: fit-content;
  margin: 12px auto 0;
}

/* Tighten vertical rhythm inside left column (desktop) so scroll stays above fold */
@media (min-width: 1024px){
  .hero{
    padding-top: 40px;
    padding-bottom: 72px;
  }
  .hero .badge{ margin-bottom: 14px; }
  .hero .hero__title{ margin-bottom: 14px; }
  .hero .hero__description{ margin-bottom: 18px; }
  .hero .hero__features{ margin-top: 10px; margin-bottom: 18px; }
  .hero .hero__actions{ margin-top: 10px; }
  .hero .scroll-indicator{ 
    margin-top: -50px; 
  }
}

/* Tablet: keep correct order, make image a bit wider, avoid scroll on top of button */
@media (min-width: 481px) and (max-width: 1023px){
  .hero{
    padding-top: 44px;
    padding-bottom: 28px;
  }
  .hero .hero__visual{
    max-width: 760px;
  }
  .hero .dashboard-preview{
    height: 340px;
  }
  .hero .hero__features{ margin-top: 10px; margin-bottom: 14px; }
  .hero .hero__actions{ margin-top: 10px; }
  .hero .hero__trust{ margin-top: 8px; }
  .hero .scroll-indicator{ margin-top: 12px; }
}

/* Phone: reduce spacing so CTA + trust + scroll are all above the fold */
@media (max-width: 480px){
  .hero{
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .hero .badge{
    margin-bottom: 12px;
  }

  .hero .hero__title{
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .hero .hero__description{
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero .dashboard-preview{
    height: 210px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .hero .hero__features{
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .hero .hero__feature{
    margin-bottom: 10px;
  }

  .hero .hero__actions{
    margin-top: 10px;
  }

  .hero .hero__trust{
    margin-top: 8px;
    gap: 12px;
    font-size: 14px;
    line-height: 1.2;
    flex-wrap: wrap;
  }

  .hero .scroll-indicator{
    margin-top: 10px;
  }
}

/* Workflow Section */
.workflow {
    background-color: var(--slate-50);
}

.workflow-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.workflow-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    text-align: center;
    transition: transform 0.3s ease;
}

.workflow-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workflow-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #E0FFD2;
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
}

.workflow-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.workflow-desc {
    color: var(--slate-500);
    line-height: 1.6;
}

/* Features Section */
.features {
  background-color: #E0FFD2
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #BEF9A3;
    border-color: #D0FFBA;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--slate-50);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 2rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--slate-900);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--slate-500);
}

/* FAQ Section */
.container--narrow {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

details[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-600);
    line-height: 1.6;
}



/* =========================================================
   Image placeholders + containers (Hero/Challenge/Features/Commitment/Testimonials)
   Only changes requested elements. No other sections touched.
   ========================================================= */

/* HERO: background container + rounded corners + floating PNG */
.hero__visual{
  background-color: transparent;
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero__floating-image{
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 560px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

/* Desktop: hero visual fills the full column space (width + height) */
@media (min-width: 1024px){
  .hero__visual{
    width: 100%;
    height: 100%;
    align-self: stretch;
  }
  .hero__floating-image{
    width: 100%;
  }
}

/* Tablet + Mobile: keep the hero visual size as it is currently (so it stays above the fold) */
@media (min-width: 481px) and (max-width: 1023px){
  .hero__visual{
    height: 340px;
  }
  .hero__floating-image{
    width: 30%;
    max-width: 460px;
  }
}

@media (max-width: 480px){
  .hero__visual{
    height: 210px;
  }
  .hero__floating-image{
    width: 40%;
    max-width: 340px;
  }
}

/* CHALLENGE: prepare visual to receive an image (keep container size/shape) */
.challenge__card{
  overflow: hidden;
  padding: 0;
}

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

/* ===============================
   WORKFLOW — NUMBERED STEPS
   =============================== */

.workflow-icon.workflow-step{
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #dcfce7;
  background: #15803d;
  border: 1px solid rgba(111, 188, 79, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ajuste fino mobile */
@media (max-width: 768px){
  .workflow-icon.workflow-step{
    font-size: 24px;
  }
}

/* =========================
   INGREDIENTS / SCIENCE
   ========================= */
.science {
  padding: 64px 0;
  background: #ffffff;
}

.science .section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
}

.science .badge {
  display: inline-block;
  margin-bottom: 14px;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.science-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.science-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}

.science-media {
  padding: 14px;
}

.science-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #f4f6f8;
}

.science-body {
  padding: 0 18px 18px;
}

.science-title {
  font-size: 18px;
  line-height: 1.2;
  margin: 6px 0 10px;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.science-desc {
  margin: 0;
  color: rgba(15, 23, 42, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.science-footnote {
  margin: 18px auto 0;
  max-width: 860px;
  text-align: center;
  color: rgba(15, 23, 42, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
  .science-grid {
    grid-template-columns: 1fr;
  }
  .science-media img {
    height: 240px;
  }
}




/* FEATURES: replace SVG with Font Awesome icon placeholders */
.feature-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* COMMITMENT: replace SVG with image (keep size + circle) */
.commitment-circle{
  overflow: hidden;
}

.commitment-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* TESTIMONIALS: avatar prepared for image (keep size + circle) */
.testimonial-avatar{
  overflow: hidden;
  background-color: var(--primary);
}

.testimonial-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* PRICING: replace SVG icon with image placeholder (no layout changes) */
.pricing-card__image-icon{
    overflow: hidden;
}

.pricing-card__image-placeholder{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0.5rem;
}


/* =========================================================
   FINAL ADJUSTMENTS (tablet hero spacing + pricing image fill)
   Only the requested elements are affected.
   ========================================================= */

/* HERO (tablet only): push content that comes after the image slightly down */
@media (min-width: 481px) and (max-width: 1023px){
  .hero__visual{
    margin-bottom: 28px;
  }
}

/* PRICING: make pricing-card__image-icon fill the entire parent container */
.pricing-card__image-icon{
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: transparent;
}


/* =========================================================
   PATCH: Pricing image cover (no height growth) + Testimonial stars
   Only affects pricing image placeholder and testimonial rating row.
   ========================================================= */

/* PRICING: image fills the whole placeholder area and is cropped by parent */
.pricing-card__image{
  overflow: hidden;
}

.pricing-card__image-icon{
  width: 100% !important;
  height: 100% !important;
  border-radius: inherit;
  background-color: transparent;
}

.pricing-card__image-placeholder{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* TESTIMONIALS: 5-star rating row */
.testimonial-rating{
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-rating .fa-star{
  font-size: 1.125rem;
  color: #f59e0b;
}

/* === Overrides requested: Orange for "Most Popular" pricing card === */
.pricing-card--popular {
  border-color: #15803d !important;
  box-shadow: 0 25px 50px -12px rgba(255, 179, 1, 0.22) !important;
}

.pricing-card--popular * {
  color: #ffffff;
}

.popular, .popular * {
    color: #000000
}

.popular-off {
    background-color: #dcfce7; 
    color: #15803d;
}

.pricing-card--popular .pricing-card__popular {
  background-color: #15803d !important;
  color: #FFB301 !important;
}


