/* =========================================================
   DESIGN TOKENS E FONTES
   ========================================================= */
:root {
    /* Primary palette - Joyful Yellow */
    --joy-500: #FFDA03;
    /* accent */
    --joy-400: #ffe05f;
    --joy-300: #ffeda1;
    --joy-200: #fff6d2;

    /* Neutrals */
    --white-000: #FFFFFF;
    --white-100: #F4F4F4;
    --black-400: #666666;
    --black-900: #1A1A1A;
    --black-700: #333333;

    /* Secondary palettes (use sparingly) */
    --blue-700: #4069AA;
    --blue-500: #5B86D0;
    --blue-400: #A9C6F0;
    --blue-300: #D0DEF2;

    --green-600: #6FC35F;
    --green-300: #B0D4AC;
    --green-200: #D7EBD5;

    --red-700: #CA532D;
    --red-300: #F0B7A4;
    --red-200: #F6DDD4;

    /* Layout tokens */
    --container-max: 1200px;
    --radius-lg: 36px;
    --radius-md: 18px;

    /* Escala de espaçamento baseada em 8px */
    --space-1: 0.5rem;  /* 8px */
    --space-2: 1rem;    /* 16px */
    --space-3: 1.5rem;  /* 24px */
    --space-4: 2rem;    /* 32px */
    --space-5: 3rem;    /* 48px */

    /* Tipografia fluida */
    --font-size-base: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    --font-size-lg: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    --font-size-xl: clamp(2rem, 3vw + 1rem, 3rem);
}

html {
  font-size: 16px; /* base desktop */
}

@media (max-width: 768px) {
  html {
    font-size: 14px; /* tudo diminui proporcionalmente */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

/* Font stacks */
:root {
    --font-display: 'Platypi', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Lexend', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* =========================================================
   GLOBALS
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-padding-top: 5rem;
    /* Compensar a altura do header fixo */
    scroll-behavior: smooth;
}

body {
    height: 100%;
    margin: 0;
    font-family: var(--font-body);
    color: var(--black-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    width: 100%;
    /* ocupa toda a largura do pai (normalmente a tela) */
    /* use percentuais em vez de 100vw para evitar overflow causado pela barra de rolagem */
    max-width: 100%;
    /* permitir que a section expanda verticalmente com o conteÃºdo */
    /* overflow-x: hidden;  impede filhos de â€œvazarâ€ lateralmente */
    /* overflow-y: visible; garante que nÃ£o apareÃ§a scroll interno vertical */
    box-sizing: border-box;
    /* padding nÃ£o aumenta a largura total */
}

section * {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    margin: 0rem auto 1rem auto;
}

.card-image {
    border-radius: 36px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.15;
    letter-spacing: -1px;
}

p {
    line-height: 1.5;
}

br {
    display: block;
    margin-bottom: 1rem;
    /* controla o “tamanho” do salto */
    content: "";
}

/* =========================================================
   HEADER
   ========================================================= */
/* Header - mobile first */
/* Header */
.site-header {
    background: var(--white-000);
    padding: 1rem 1rem 0rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.site-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--joy-500);
    border-radius: 0 0 45px 45px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%
}

.brand-link {
    display: inline-block;
    /* permite tamanho natural do conteÃºdo */
    position: relative;
    z-index: 10;
    /* garante que fique acima de outros elementos */
    cursor: pointer;
    text-decoration: none;
    /* remove sublinhado (caso padrÃ£o de <a>) */
}


.logo {
    width: 15rem;
    /* ajuste o tamanho conforme necessÃ¡rio */
    height: 3rem;
    background-size: contain;
    /* mantÃ©m proporÃ§Ã£o */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.main-nav a {
    color: var(--black-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-nav a img {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: -16px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.main-nav a:hover img {
    transform: scale(1.2);
}

.main-nav {
    display: none
}

/* Highlight only the Black Friday menu items */
.main-nav a.nav-blackfriday {
    background: var(--black-900);
    color: var(--white-000);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.main-nav a.nav-blackfriday:hover,
.main-nav a.nav-blackfriday:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    text-decoration: none;
}
.main-nav a.nav-blackfriday[aria-current="page"] {
    outline: 2px solid var(--joy-500);
    outline-offset: 4px;
}

/* Mobile menu variant: full-width stacked button-style */
.mobile-nav-inner a.nav-blackfriday {
    display: block;
    background: var(--black-900);
    color: var(--white-000);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}
.mobile-nav-inner a.nav-blackfriday:focus,
.mobile-nav-inner a.nav-blackfriday:hover {
    background: #000000;
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle {
    display: flex;
    background: transparent;
    border: 0;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle .hamburger {
    width: 22px;
    height: 2px;
    background: var(--black-900);
    display: block;
    position: relative;
    margin-right: 1rem;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--black-900);
}

.menu-toggle .hamburger::before {
    top: -7px
}

.menu-toggle .hamburger::after {
    top: 7px
}

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    max-width: 90%;
    background: var(--joy-500);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(110%);
    transition: transform 320ms ease;
    z-index: 1200;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav-inner a {
    display: block;
    padding: 12px 0;
    color: var(--black-900);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1.25rem;
}

.mobile-menu-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 12px 0;
}

.mobile-menu-social-icons a img {
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    transition: filter 0.3s, transform 0.2s;
}

.mobile-menu-social-icons img {
    display: block;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 1100;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto
}

/* =========================================================
   HERO
   ========================================================= */
/* Hero - mobile first (single column) */
.hero {
    padding: 1rem 1rem;
}

.hero-grid {
    gap: 20px;
    align-items: start
}

.hero-media {
    display: flex;
    justify-content: left;
}

.hero-media .card-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    max-height: 300px;
    background: var(--joy-400);
    border-radius: 24px;
}

.hero-media .card-image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

.hero-content {
    max-width: 100%
}

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

.hero-card {
    flex: 1;
    background: var(--joy-500);
    border-radius: 24px;
    height: auto;
    margin: 2rem 0rem 1rem;
    padding: 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.hero-card .logo {
    width: 5rem;
    height: auto;
    margin: 1rem auto;
}

.hero-card h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* BEGIN: Black Friday hero styles (scoped to .blackfriday-hero) */
.blackfriday-hero {
    background-color: var(--black-900);
    padding: 2.5rem 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blackfriday-hero .inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 1100px;
}

.blackfriday-hero h1 {
    font-family: var(--font-display);
    /* smaller mobile heading */
    font-size: clamp(4rem, 6vw, 4.75rem);
    margin: 0;
    color: var(--white-000);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
}

.blackfriday-hero h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--white-100);
    margin: 0 auto 12px auto;
    font-weight: 700;
    text-align: center;
    width: 90%;
}

.blackfriday-hero h2 span {
    color: var(--joy-500);
}

.blackfriday-hero p.date {
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: 0;
    color: var(--white-100);
    text-align: center;
    margin-bottom: 20px;
}

.blackfriday-hero p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white-100);
    text-align: center;
    margin-top: 4rem;
    padding: 0rem 1rem;
}

.blackfriday-hero p span {
    color: var(--joy-500);
    font-weight: 700;
}

.blackfriday-hero .offer-box {
    padding: 1rem 0rem;
    background: var(--joy-500);
}

#bf-btn-mobile {
    display: flex;
}

#bf-btn-desktop {
    display: none;
}

.blackfriday-hero .offer-box {
    background: var(--joy-500);
    border-radius: 20px 20px 0 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.blackfriday-hero .container {
    margin: 0;
    padding: 0 1rem;
}

.blackfriday-hero .container .btn {
    background-color: var(--joy-500);
    color: var(--black-900);
    max-width: 90%;
    margin: 2rem auto;
    text-align: center;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.blackfriday-hero .offer-box > a,
.blackfriday-hero .offer-box > #countdown {
    flex: 0 0 100%;
}

.blackfriday-hero .offer-box-title {
    flex: 3;
    flex-wrap: wrap;
    text-align: left;
}

.blackfriday-hero .offer-box h3 {
    margin: 16px auto;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--black-900);
    line-height: 1.1;
    text-align: center;
}

.blackfriday-hero .offer-box p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--black-900);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.blackfriday-hero .offer-box p span {
    font-weight: 700;
    color: var(--red-700);
}

.blackfriday-hero .offer-box .sub-description {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-top: 24px;
    color: var(--black-900);
    font-weight: 400;
}

.blackfriday-hero .offer-box span {
    font-weight: 700;
    color: var(--red-700);
}

.blackfriday-hero .offer-box-description {
    flex: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 1rem;
    margin-top: 1rem;
}

.blackfriday-hero .offer-box-description p {
    flex: 1;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    margin: 12px 0px 12px;
    width: 100%;
    padding: 0;
}

.blackfriday-hero .offer-box .btn {
    margin-top: 24px;
}
/* END: Black Friday hero styles (scoped) */

.calendly-badge-widget {
    flex: 1;
    position: relative !important;
}

.display {
    font-family: var(--font-display);
    font-size: 3rem;
    margin: 0 0 8px 0;
    color: var(--black-900);
    white-space: pre-line;
    margin: 1rem 0rem 1rem;
}

.lead {
    color: var(--black-700);
    max-width: 100%;
    margin: 16px 0px;
    font-size: 1.6rem;
}

.btn {
    display: flex;
    padding: 1rem 1.5rem;
    border-radius: 35px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}


.btn.primary {
    margin: 32px 0px;
    max-width: 450px;
    text-align: center;
    justify-content: center;
    background: var(--joy-500);
    color: var(--black-900);
    /* subtle interactive transition */
    transition: transform 180ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 180ms cubic-bezier(.2, .8, .2, 1),
        background-color 180ms ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}


.btn.primary:hover,
.btn.primary:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.20);
    transition: all 0.2s ease;
    background: var(--joy-400);
    transform: scale(1.045) translateY(-2px);
    cursor: pointer;
}

.btn.primary:active {
    /* gentle press feedback */
    transform: scale(0.985);
    transition-duration: 360ms;
}

.btn.primary:focus-visible {
    outline: 3px solid rgba(255, 218, 3, 0.28);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    .btn.primary,
    .btn.primary:hover,
    .btn.primary:focus,
    .btn.primary:active {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

.btn.secondary {
    text-align: center;
    justify-content: center;
    background: var(--blue-700);
    color: var(--white-100);
    margin-top: -16px;
    margin-bottom: 16px;
    /* subtle interactive transition similar to primary */
    transition: transform 180ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 180ms cubic-bezier(.2, .8, .2, 1),
        background-color 180ms ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.btn.secondary:hover,
.btn.secondary:focus {
    /* slightly enlarge and brighten */
    transform: scale(1.04);
    background-color: var(--blue-500);
    cursor: pointer;
}

.btn.secondary:active {
    transform: scale(0.985);
    transition-duration: 120ms;
}

.btn.secondary:focus-visible {
    outline: 3px solid rgba(64, 105, 170, 0.18);
    outline-offset: 4px;
}

.btn.tertiary {
    background: var(--white-100);
    color: var(--black-700);
    margin-bottom: 3rem;
    /* subtle interactive transition similar to primary */
    transition: transform 180ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 180ms cubic-bezier(.2, .8, .2, 1),
        background-color 180ms ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.btn.tertiary:hover,
.btn.tertiary:focus {
    /* slightly enlarge and brighten */
    transform: scale(1.04);
    background-color: var(--white-000);
}

.btn.tertiary:active {
    transform: scale(0.985);
    transition-duration: 120ms;
}

.btn.tertiary:focus-visible {
    outline: 3px solid rgba(64, 105, 170, 0.18);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    .btn.secondary,
    .btn.secondary:hover,
    .btn.secondary:focus,
    .btn.secondary:active {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Utility: visually hidden */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.cta {
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-title {
    margin-top: 0rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--black-900);
}

.cta-sub-title {
    margin-top: 0rem;
    font-family: var(--font-body);
    font-size: 2.5rem;
    color: var(--black-700);
    margin-block-end: 0;
}

.cta-card {
    flex: 1;
    background: var(--white-100);
    /* cinza claro */
    border-radius: 32px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cta-card-text {
    flex: 1;
    text-align: left;
}

.cta-card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black-900);
    margin-bottom: 0rem;
}

.cta-last-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-card-desc {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--black-700);
}

.cta-card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
}

.cta-card-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 24px;
    object-fit: contain;
}

.cta-last {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    flex-direction: column;
    width: 100%;
}

.cta-last-title {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--black-900);
    font-weight: 700;
    margin: 2rem 0 2rem 0;
    text-align: center;
}

.cta-last-body {
    font-family: var(--font-body);
    color: var(--black-700);
    font-size: 1.5rem;
    display: block;
    max-width: 600px;
    text-align: center;
    margin-top: 0;
}

.cta-last-bottom {
    flex: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.cta-last-bottom-card {
    flex: 1;
    background: var(--blue-300);
    border-radius: 24px;
    height: 650px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.cta-last-bottom-card h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0 0 12px 0;
}

.cta-last-bottom-card p {
    font-family: var(--font-body);
    color: var(--black-700);
    font-size: 1.5rem;
    display: block;
    margin-top: 0rem;
}

.cta-last-bottom-card-image {
    position: relative;
    width: auto;
    height: auto;
}

.about {
    padding: 2rem 1rem;
}

.about-content {
    width: 100%;
    margin: 0 auto;
}

.about-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-row .btn {
    margin: 4px;
}

/* Mobile layout for about section */
@media (max-width: 899px) {
    .about-row {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .about-row .marquee {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        animation: none;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .about-row .btn {
        width: 42.5vw;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0;
        font-size: 1rem;
        padding: 0.5rem;
        white-space: normal;
        background-color: var(--joy-200);
    }


    .about-row .btn:hover {
        background-color: var(--joy-500);
    }

    /* Hide duplicated buttons on mobile */
    .about-row .marquee a.btn:nth-child(n+5) {
        display: none;
    }
}

.services {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    padding: 1rem;
}

.services-content {
    flex: 1;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.services-content-card {
    flex: 1;
    background: var(--white-100);
    border-radius: 24px;
    height: auto;
    padding: 2rem;
}

.services-content-card.premium {
    background: var(--green-200);
}

.services-content-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0 0 12px 0;
    text-align: left;
}

.services-content-content {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.services-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.services-content h2 {
    font-family: var(--font-body);
    font-size: 3.2rem;
    color: var(--black-900);
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.services-content-content div {
    margin-top: 1.5rem;
    max-width: 100% !important;
    width: 100% !important;
}

.services-content-content p {
    font-family: var(--font-body);
    font-size: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.services .card-image {
    flex: 1;
    background-color: var(--white-100);
}

.services-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 4rem 0rem;
}

.services-bottom h1 {
    font-family: var(--font-body);
    font-size: 2.75rem;
    color: var(--black-900);
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.services-bottom h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0;
    font-style: italic;
    text-align: center;

}

.services-bottom p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--black-700);
    max-width: 550px;
    text-align: center;
    margin-top: 16px;
}

.services-bottom ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.services-bottom li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1;
  height: 40px;
}

.services-bottom span {
    position: relative;
    transform: translateY(-10%);
}

.services-bottom img {
  height: 0.9em; /* 90% da altura da linha de texto */
  width: auto;   /* mantém proporção do SVG */
  display: block;
}

.services-bottom .btn {
    margin: auto;
    max-width: 600px;
    margin-top: 16px;
}

.comparison-card {
    font-size: 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.card-image {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.who-we-help {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.who-we-help-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.who-we-help-left h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black-900);
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: left;
}

.who-we-help-card-img {
    position: relative;
    width: 650px;
    height: auto;
    margin-top: 2rem;
}

.who-we-help-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-top: 6rem;
}

.who-we-help-content {
    border-radius: 32px;
    padding: 1rem 2rem 4rem 2rem;
    margin-top: -3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.who-we-help-content h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0 0 12px 0;
    text-align: left;
}

.who-we-help-content p {
    font-family: var(--font-body);
    color: var(--black-700);
    font-size: 1.25rem;
    display: block;
}

.testimonials {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonials h1 {
    font-size: 2.5rem;
    margin: 0;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.testimonials h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.testimonials h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: 12px auto 0 auto;
    color: var(--black-700);
}

.testimonials p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    margin: 0 auto;
}

.testimonials-card {
    flex: 0 0 100vw;
    /* ocupa ~90% da largura da tela */
    background: var(--white-100);
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    scroll-snap-align: center;
    margin: 1rem auto;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.testimonials-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black-900);
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.testimonials-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black-400);
    font-weight: 500;
    margin: 0.5rem 0 1.5rem 0;
    text-align: left;
    opacity: 0.3;
}

.testimonials-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--black-700);
    display: block;
    margin-bottom: 1rem;
    width: 100%;
    text-align: left;
    margin: 0;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
    background: var(--joy-300);
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--joy-500);
    border-radius: 4px;
}

.testimonials-wrapper {
  position: relative;
  width: 100%;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background: var(--joy-300);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;

  display: none;
  place-items: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: var(--joy-400);
}

/* Posições */
.testimonial-btn.prev {
  left: -10px;
}

.testimonial-btn.next {
  right: -10px;
}


.contact-us {
    padding: 1rem;
    text-align: center;
    background-color: var(--joy-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us-card-img {
    position: relative;
    width: 400px;
    height: auto;
    margin: 2rem 0rem;
}

.contact-us-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.contact-us-content h2 {
    font-family: var(--font-body);
    font-size: 2.5rem;
    color: var(--black-900);
    font-weight: 700;
    margin: 0 auto;
    width: 100%;
}

.contact-us-content h1 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    color: var(--black-900);
    font-weight: 600;
    margin: 0 auto;
    font-style: italic;
    width: 100%;
}

.contact-us-content p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--black-700);
    max-width: 600px;
    margin: 32px auto 16px;
    width: 100%;
}

.contact-form {
    margin: 3rem auto;
    padding: 2rem;
    background: var(--white-000);
    border-radius: 24px;
    text-align: left;
    max-width: 600px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black-900);
    margin-top: 0rem;
    margin-bottom: 1.5rem;
}

.clarity-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.clarity-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--joy-300);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.5rem;
    background: var(--white-000);
    transition: border-color 0.3s ease;
}

.clarity-form input:focus {
    outline: none;
    border-color: var(--joy-500);
}

/* Footer */
.site-footer {
    background: var(--white-100);
    padding: 40px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 100%;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
    max-width: 100%;
    padding: 1rem 1rem 4rem;
}

.footer-left {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-content: center;
    justify-content: center;
}

.footer-certifications {
    flex: 4;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
}

.footer-certifications img {
    flex: 1;
    max-width: 180px;
    height: 220px;
    object-fit: contain;
}

.footer-logo {
    width: 90vw;
    height: auto;
    display: block
}

.footer-left p {
    margin: 0;
    font-size: 1rem;
}

.footer-left .footer-tag {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-900);
    margin: 0;
    width: 100%;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.footer-left a img {
    display: block;
    width: 32px;
    height: 32px;
    transition: filter 0.3s, transform 0.2s;
    margin-right: 12px;
}

.footer-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0
}

.footer-email {
    color: var(--black-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.footer-copy {
    color: var(--black-700);
    margin-top: 8px
}

/* Desktop breakpoint */
@media (min-width:1024px) {
    /* offer box */
    .blackfriday-hero .container {
        padding: 2rem 8rem 0rem;
    }

    .blackfriday-hero .offer-box {
        margin-top: 32px;
        margin-bottom: 80px;
        background: var(--joy-500);
        border-radius: 20px;
        padding: 1.25rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: row;
        gap: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.03);
        flex-wrap: wrap;
        align-content: space-between;
    }

    .blackfriday-hero .container .btn {
        max-width: 100%;
        background-color: var(--black-900);
        color: var(--white-000);
        margin: 32px 0 0 0;
        justify-content: center;
        font-size: 1.5rem;
    }

    .blackfriday-hero .offer-box-title {
        flex: 3;
        flex-wrap: wrap;
        padding: 16px 16px 16px 16px;
        text-align: left;
    }

    .blackfriday-hero .offer-box h3 {
        margin: 0px;
        margin-top: -1rem;
        margin-bottom: 24px;
        font-family: var(--font-display);
        font-size: 4rem;
        color: var(--black-900);
        line-height: 1.1;
        text-align: left;
    }

    .blackfriday-hero .offer-box p {
        margin: 0;
        margin-top: -16px;
        font-family: var(--font-display);
        font-size: 2.5rem;
        color: var(--black-900);
        font-weight: 600;
        text-align: left;
        width: 90%;
        line-height: 1.3;
    }

    .blackfriday-hero .offer-box .sub-description {
        font-family: var(--font-body);
        font-size: 1.1rem;
        margin-top: 16px;
        width: 100%;
        color: var(--black-900);
        font-weight: 400;
    }

    .blackfriday-hero .offer-box span {
        font-weight: 700;
        color: var(--red-700);
    }

    .blackfriday-hero .offer-box p span {
        font-weight: 700;
        color: var(--red-700);
    }

    .blackfriday-hero .offer-box-description {
        flex: 2;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 16px 16px 16px 16px;
        font-size: 1.25rem;
        align-content: space-between;
        margin: 0;
    }

    .blackfriday-hero .offer-box-description p {
        flex: 1;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 1.5rem;
        text-align: left;
        margin: 0px;
        width: 100%;
        margin-bottom: 16px;
    }

    .blackfriday-hero .offer-box .btn {
        margin-top: 24px;
    }

    #bf-btn-mobile {
        display: none;
    }

    #bf-btn-desktop {
        display: flex;
    }

    .btn.primary {
        max-width: 300px
    }

    .btn {
        font-size: 2rem;
    }

    .site-header {
        padding: 2rem 0;
    }

    .container {
        padding: 0;
        margin: 0rem 6vw;
    }

    .header-inner {
        align-items: center;
    }

    .main-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav a {
        margin-left: 20px;
        /* subtle hover transition for desktop nav */
        transition: color 160ms ease, font-size 160ms ease, letter-spacing 160ms ease, font-weight 160ms ease;
        font-size: 14px;
    }

    .main-nav a:hover,
    .main-nav a:focus {
        /* stronger color and slightly larger text for emphasis */
        color: var(--black-900);
        font-size: 15px;
        /* small, non-disruptive increase */
        font-weight: 700;
        /* tiny extra letter spacing to keep it airy */
        letter-spacing: 0.3px;
    }

    .hero {
        padding: 20px 0;
    }

    .hero-card h1 {
        margin-left: 2rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: center;
        margin-bottom: 6rem;
    }

    .hero-content {
        max-width: none;
        width: 50vw;
        align-items: start;
        justify-content: start;
        text-align: start;
        align-content: center;

    }

    .card-image {
        width: 620px;
        height: 620px;
        border-radius: 36px;
    }

    .display {
        font-size: 3.5rem;
        text-align: left;
    }

    .lead {
        font-size: 1.15rem;
        text-align: left;
        max-width: 75%;
    }

    .hero-card {
        flex: 1;
        height: auto;
        flex-direction: row;
        padding: 2rem;
        margin: 2rem 5rem;
        align-items: center;
        justify-content: space-between;
    }

    .hero-card .logo {
        width: 12rem;
        height: auto;
        margin: auto;
    }

    .hero-card h1 {
        font-size: 2.75rem;
        text-align: left;
    }

    .hero-media .card-image {
        max-height: none;
        width: 45vw;
        height: 45vw;
    }

    .btn {
        padding: 12px 22px;
        font-weight: 800;
        font-size: 14px
    }

    .hero-media .card-image img {
        max-height: none;
    }

    .services .card-image {
        flex: 1;
        width: 90%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .services .card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .services-bottom {
        margin: 4rem 0rem 8rem;
    }

    .display {
        margin-bottom: 8px;
        font-size: 3rem;
    }

    .display-second {
        font-family: var(--font-body);
    }

    .cta {
        text-align: center;
        padding: 0rem 5rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        justify-content: center;
        align-items: center;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-block-start: 0;
        margin-bottom: -1rem;
    }

    .cta-sub-title {
        font-size: 2rem;
        margin-block-end: 0;
        margin-top: 4rem;
        margin-bottom: -2rem;
    }

    .cta-card {
        padding: 2rem;
        margin: 0rem;
    }

    .cta-card-content {
        flex-direction: row;
    }

    .cta-card-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
        width: 90%;
    }

    .cta-card-image img {
        max-width: 400px;
    }

    .cta-card-desc {
        font-size: 1.5rem;
        width: 75%;
    }

    .cta-last {
        justify-content: center;
        align-items: start;
        flex-direction: row;
        gap: 72px;
        width: 100%;
        padding: 2rem 2rem 2rem 2rem;
        margin: 3rem 0rem;
    }

    .cta-last-content {
        margin: auto 0rem;
        align-items: start;
    }

    .cta-last-body {
        text-align: left;
        font-size: 1.25rem;
        margin-bottom: 0rem;
    }

    .cta-last-title {
        font-family: var(--font-display);
        font-size: 8rem;
        color: var(--black-900);
        font-weight: 700;
        margin: auto;
        text-align: left;
    }

    .cta-last-bottom {
        flex-direction: row;
    }

    .cta-last-bottom-card h4 {
        font-size: 2rem;
    }

    .cta-last-bottom-card p {
        font-size: 1rem;
    }

    /* About Section */
    .about {
        padding: 4rem 5rem;
        margin: 3rem 0rem;
    }

    .about-row {
        display: flex;
        width: 100%;
        overflow: hidden;
        margin-bottom: 1rem;
    }

    .about-row .marquee {
        display: flex;
        gap: 1rem;
        align-items: center;
        white-space: nowrap;
    }

    .about-row .marquee>a {
        flex: 0 0 auto;
    }

    .about-row .btn {
        height: 3rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: var(--joy-200);
    }

    .about-row .btn:hover {
        background-color: var(--joy-500);
    }

    /* marquee animations (mobile) */
    @keyframes marquee-left-to-right {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(0%);
        }
    }

    @keyframes marquee-right-to-left {
        from {
            transform: translateX(0%);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .marquee--ltr {
        animation: marquee-left-to-right 36s linear infinite;
    }

    .marquee--rtl {
        animation: marquee-right-to-left 32s linear infinite;
    }

    .about-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-content {
        flex: 1;
        text-align: left;
    }

    .about-content.logo img {
        width: 10rem;
        height: 10rem;
    }

    .about-title {
        font-size: 2.5rem;
        font-family: var(--font-display);
        color: var(--black-900);
        font-weight: 700;
        margin: 0 0 12px 0;
    }

    .about-desc {
        font-family: var(--font-display);
        font-size: 1.6rem;
        color: var(--black-900);
        margin: 0 0 8px 0;
    }

    .about-content p {
        font-family: var(--font-body);
        color: var(--black-700);
        font-size: 1rem;
        display: block;
    }

    .services {
        padding: 2rem 5rem;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 32px;
        width: 100%;
        margin: 0 auto;
    }

    .services-content {
        flex: 1;
        text-align: left;
        padding: 48px 0;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .services-content-content p {
        font-size: 1.1rem;
    }
    .services-bottom ul {
        gap: 32px;
    }

    .services-bottom li {
        gap: 8px;
        font-size: 1.5rem;
    }

    .services-bottom h1 {
        font-size: 4rem;
    }

    .services-bottom h2 {
        font-size: 4.25rem;
    }
    
    .comparison-container {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }

    .comparison-card {
        flex: 1;
        font-size: 1rem;
    }

    .who-we-help {
        padding: 4rem 5rem;
        flex-direction: row;
    }

    .who-we-help-left h1 {
        font-size: 4rem;
    }

    .who-we-help-card-img {
        width: 500px;
    }

    .who-we-help-right {
        margin-top: 0rem;
    }

    .who-we-help-content h4 {
        font-size: 1.5rem;
    }

    .who-we-help-content p {
        font-size: 1.1rem;
    }

    .testimonials {
        padding: 0rem 5rem 4rem;
    }

    .testimonials h1 {
        font-size: 3.2rem;
        margin: 0;
        margin-top: 2rem;
        padding: 2rem 5rem 0rem;
    }

    .testimonials p {
        margin: 0;
        margin-top: 1rem;
        width: 40%;
    }

    .testimonials-card {
        flex: 0 0 60vw;
    }

    .testimonials-card p {
        width: 100%;
    }

    .testimonials-card h3 {
        font-size: 1.5rem;
    }

    .testimonials-card h4 {
        font-size: 0.8rem;
    }

    .testimonials-card p {
        font-size: 1.25rem;
    }

    .testimonial-btn {
        display: grid;
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }

    /* Posições */
    .testimonial-btn.prev {
    left: -64px;
    }

    .testimonial-btn.next {
    right: -64px;
    }
 
     
    .testimonials-carousel {
        padding: 2rem 0;
    }

    .contact-us {
        padding: 4rem 5rem;
    }

    .contact-us-content h2 {
        width: 70%;
        font-size: 3.5rem;
    }

    .contact-us-content h1 {
        width: 60%;
        font-size: 3rem;
    }

    .contact-us-content p {
        max-width: 650px;
        width: 80%;
    }

    .footer-inner {
        flex-direction: row;
        margin: 0rem;
        padding: 2rem 6rem;
    }

    .footer-left .footer-tag {
        width: 70%;
    }

    .footer-certifications {
        justify-content: end;
        gap: 32px;
    }

    .footer-logo {
        width: 25vw;
    }

    .footer-tag {
        font-size: 1.1rem;
    }

    .footer-info-title {
        font-size: 1.2rem;
    }

    .footer-email {
        font-size: 1.1rem;
    }

    /* Make tertiary CTA much larger on desktop without affecting other buttons */
    .btn.tertiary {
        padding: 1.25rem 2.5rem;
        font-size: 1.75rem;
        border-radius: 45px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        max-width: 620px;
        display: inline-block;
        margin-top: 3rem;
    }

    /* Optionally make it full-width in its container on very large screens */
    @media (min-width:1400px) {
        .btn.tertiary {
            display: block;
            width: 80%;
            padding: 1.5rem 3rem;
            font-size: 1.5rem;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
    }

    .btn.secondary {
        margin-top: 0;
    }
}