/* ==================== INTRO SEO ==================== */
.landing-intro {
    background: #ffffff;
    padding: 48px 16px 8px;
}

.landing-intro__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.landing-intro__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    line-height: 1.15;
}

.landing-intro__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 auto;
    max-width: 720px;
}

@media (max-width: 640px) {
    .landing-intro__title { font-size: 1.8rem; }
    .landing-intro__text { font-size: 1rem; }
}

/* ==================== PROMO SECTION ==================== */
.promo-section {
    padding: 0 16px;
    background: #ffffff;
}

.promo-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 24px;
}

/* ==================== CARROSSEL ==================== */
.promo-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
}

.promo-carousel__track {
    display: flex;
    transition: transform 0.5s ease;
    height: 480px;
}

.promo-carousel__slide {
    min-width: 100%;
    position: relative;
    min-height: 0;
    height: 100%;
}

.promo-carousel__slide > .promo-card {
    height: 100%;
}

/* ==================== PROMO CARD ==================== */
.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    --promo-accent: #FACC15;
    background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #fff;
}

.promo-card--wide {
    min-height: 380px;
}

.promo-card--square {
    min-height: 100%;
}

.promo-card--brand {
    min-height: 380px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}

/* Brush decorativo */
.promo-card__brush {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 12%, var(--promo-accent) 0%, transparent 50%);
    opacity: 0.08;
    pointer-events: none;
}

.promo-card__brush--brand {
    background: radial-gradient(circle at 50% 50%, #2563eb 0%, transparent 60%);
    opacity: 0.2;
}

/* Badge */
.promo-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--promo-accent);
    color: #0f0f1a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Body layout */
.promo-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    min-height: inherit;
}

.promo-card--wide .promo-card__body {
    justify-content: space-between;
}

.promo-card--square .promo-card__body {
    justify-content: center;
}

.promo-card__body--brand {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Reverse layout (card mini na direita) */
.promo-card--reverse .promo-card__body {
    flex-direction: row-reverse;
}

/* Art (gift card miniatura) */
.promo-card__art {
    flex-shrink: 0;
}

.promo-card__art-card {
    width: 200px;
}

/* Content */
.promo-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Imagem hero do primeiro slider — colada à direita, sem espaçamento */
.promo-card--wide .promo-card__hero {
    flex: 0 0 auto;
    align-self: center;
    width: 460px;
    max-width: 46%;
    margin-right: -32px;
    z-index: 0;
}

.promo-card--wide .promo-card__hero img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-card__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.promo-card__eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--promo-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--promo-accent);
}

.promo-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.15;
}

.promo-card__title-accent {
    color: var(--promo-accent);
}

.promo-card__subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.promo-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 8px 0 0;
    line-height: 1;
}

.promo-card__price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

.promo-card__price-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.promo-card__price-suffix {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.promo-card__pill {
    display: inline-block;
    background: rgba(22, 163, 74, 0.15);
    color: #4ade80;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-top: 4px;
    width: fit-content;
}

.promo-card__note {
    font-size: 0.78rem;
    color: #64748b;
    margin: 4px 0 0;
}

.promo-card__note-struck {
    text-decoration: line-through;
}

.promo-card__note-text {
    color: #4ade80;
    font-weight: 600;
}

.promo-card__desc {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 6px 0 0;
}

/* Link invisível sobre o card */
.promo-card__link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

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

/* Brand slide */
.promo-card__brand-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.promo-card__brand-tagline {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin: 0;
    max-width: 520px;
}

.promo-card__brand-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 14px;
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-card__brand-support {
    margin: 12px 0 0;
    max-width: 520px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.promo-card__brand-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.promo-card__brand-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 600;
}

.promo-card__brand-trust i {
    color: #60a5fa;
}

/* ==================== GIFT CARD MINI (dentro do promo) ==================== */
.gift-card-mini__body {
    background: #000000;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
}

.gift-card-mini__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1;
}

.gift-card-mini__badge-days {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.gift-card-mini__badge-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.gift-card-mini__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.gift-card-mini__logo {
    width: 150px;
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
}

.gift-card-mini__brand {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.gift-card-mini__period {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gift-card-mini__shipping {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 6px 0 0;
}

.gift-card-mini__lip {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin-top: auto;
}

/* ==================== GRID SLIDE 2 ==================== */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 16px;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.promo-grid__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    overflow: hidden;
}

.promo-card--compact {
    min-height: 0;
    max-height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.promo-card--compact > .promo-card__body {
    flex: 1;
}

.promo-card--square {
    min-height: 0;
    height: 100%;
}

.promo-card--compact .promo-card__body {
    padding: 14px;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.promo-card--compact .promo-card__art {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card--compact .gift-card-mini {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card--compact .gift-card-mini__body {
    box-sizing: border-box;
}

.promo-card--compact .promo-card__art-card {
    width: 140px;
    height: 100%;
}

.promo-card--compact .gift-card-mini__body {
    min-height: 0;
    padding: 10px 8px;
}

.promo-card--compact .gift-card-mini__logo {
    width: 80px;
    max-height: 60px;
    margin-bottom: 3px;
}

.promo-card--compact .gift-card-mini__brand {
    font-size: 0.78rem;
    line-height: 1.15;
}

.promo-card--compact .gift-card-mini__shipping {
    font-size: 0.55rem;
    margin: 2px 0 0;
}

.promo-card--compact .gift-card-mini__badge {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
}

.promo-card--compact .gift-card-mini__badge-days {
    font-size: 1rem;
}

.promo-card--compact .gift-card-mini__badge-label {
    font-size: 0.5rem;
}

.promo-card--compact .promo-card__title {
    font-size: 1.3rem;
}

.promo-card--compact .promo-card__price-value {
    font-size: 1.8rem;
}

/* ==================== CONTROLES DO CARROSSEL ==================== */
.promo-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.promo-carousel__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-carousel__btn:hover {
    background: rgba(15, 23, 42, 0.12);
}

.promo-carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.2);
    cursor: pointer;
    padding: 0;
    transition: width 0.2s, background 0.2s;
}

.promo-carousel__dot--active {
    width: 24px;
    background: var(--promo-accent, #FACC15);
}

/* ==================== PRODUTOS (GC-CARD) ==================== */
.landing-products {
    background: #f8fafc;
    padding: 80px 0;
}

.landing-products__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-products__header {
    text-align: center;
    margin-bottom: 56px;
}

.landing-products__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.landing-products__subtitle {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.55;
}

.landing-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* GC-CARD */
.gc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.gc-card__frame {
    aspect-ratio: 3 / 4;
    width: 100%;
}

.gc-card__viewport {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease-out;
}

.gc-card:hover .gc-card__viewport {
    transform: scale(1.05);
}

.gc-card__visual {
    width: 100%;
    height: 100%;
    background: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.gc-card--popular .gc-card__visual {
    background: #000000;
}

.gc-card--best .gc-card__visual {
    background: #000000;
}

.gc-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    position: relative;
}

.gc-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1;
}

.gc-card__badge-days {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.gc-card__badge-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.gc-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gc-card__logo {
    width: 210px;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
}

.gc-card__logo--unitv {
    width: 230px;
    max-height: 160px;
}

.gc-card__brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.gc-card__period {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gc-card__shipping {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 8px 0 0;
}

.gc-card__lip {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin-top: auto;
}

.gc-card__title {
    margin: 16px 0 8px;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gc-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.gc-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 0;
    line-height: 1;
}

.gc-card__price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 2px;
}

.gc-card__price-int {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.gc-card__price-cents {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    vertical-align: super;
    margin-left: 2px;
}

.gc-card__cta {
    width: 100%;
    padding: 12px 20px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid #1d4ed8;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.gc-card__cta:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.gc-card--popular .gc-card__cta {
    background: #2563eb;
    border-color: #1d4ed8;
}

.gc-card--best .gc-card__cta {
    background: #16a34a;
    border-color: #15803d;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.gc-card--best .gc-card__cta:hover {
    background: #15803d;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

/* Empty state */
.landing-products__empty {
    text-align: center;
    padding: 60px 24px;
    color: #64748b;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
    }

    .promo-card--square {
        min-height: 320px;
    }

    .promo-carousel__track {
        height: auto;
    }

    .promo-carousel__slide {
        min-height: auto;
        height: auto;
    }

    .promo-carousel__slide > .promo-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .promo-section { padding: 0 12px; }
    .promo-section__inner { padding-top: 40px; }

    .promo-card__body {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center;
        align-items: center;
    }

    .promo-card--reverse .promo-card__body {
        flex-direction: column;
    }

    .promo-card__art-card { width: 160px; }

    .promo-card--wide .promo-card__hero {
        width: calc(100% + 40px);
        max-width: none;
        align-self: stretch;
        margin: 4px -20px -24px -20px;
    }

    .promo-card--wide .promo-card__hero img {
        width: 100%;
        height: auto;
    }

    .promo-carousel__slide:first-child {
        display: none;
    }

    .promo-card__title { font-size: 1.4rem; }
    .promo-card__price-value { font-size: 2rem; }
    .promo-card__brand-title { font-size: 2rem; }
    .promo-card--compact .promo-card__body { padding: 16px; }
    .promo-card--compact .promo-card__art-card { width: 120px; }
    .promo-card--compact .gift-card-mini__body { min-height: 170px; }

    .landing-products { padding: 48px 0; }
    .landing-products__title { font-size: 1.6rem; }
    .landing-products__grid { grid-template-columns: 1fr; gap: 24px; }
    .gc-card__price-int { font-size: 2rem; }

    .promo-carousel__btn { display: none; }
}

@media (max-width: 480px) {
    .promo-card__title { font-size: 1.2rem; }
    .promo-card__price-value { font-size: 1.6rem; }
    .landing-products__container { padding: 0 16px; }
}
