/* ============================================
   EUROKIDS - LANDING PAGE LISTA VIP
   Mobile First | Colorful | Kids Park Theme
   ============================================ */

/* ============== VARIÁVEIS ============== */
:root {
    /* Cores principais */
    --color-purple: #5B1AAF;
    --color-purple-light: #7B2CBF;
    --color-purple-dark: #3E0F7E;
    --color-orange: #FF6B1A;
    --color-orange-light: #FF8C42;
    --color-yellow: #FFC93C;
    --color-yellow-light: #FFE082;
    --color-pink: #FF3D7F;
    --color-pink-light: #FF6B9D;
    --color-green: #43A047;
    --color-blue: #00B0FF;

    /* Cores neutras */
    --color-bg: #FFF8E7;
    --color-bg-alt: #FFFFFF;
    --color-bg-soft: #F3E5F5;
    --color-text: #1A1A2E;
    --color-text-soft: #4A4A68;
    --color-border: #E5D5F0;

    /* Tipografia */
    --font-heading: 'Fredoka', system-ui, sans-serif;
    --font-body: 'Nunito', system-ui, sans-serif;

    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(91, 26, 175, 0.1);
    --shadow-md: 0 8px 24px rgba(91, 26, 175, 0.15);
    --shadow-lg: 0 16px 48px rgba(91, 26, 175, 0.2);
    --shadow-cta: 0 8px 0 var(--color-purple-dark), 0 12px 24px rgba(91, 26, 175, 0.3);

    /* Layout */
    --container-max: 1200px;
    --header-height: 70px;
}

/* ============== RESET & BASE ============== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ============== UTILITÁRIOS ============== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.highlight {
    display: inline-block;
    padding: 0 0.15em;
    border-radius: 8px;
    color: var(--color-text);
    transform: rotate(-2deg);
}
.highlight--yellow { background: var(--color-yellow); }
.highlight--pink   { background: var(--color-pink); color: #fff; }
.highlight--purple { background: var(--color-purple-light); color: #fff; }

.badge {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
}
.badge--pulse {
    background: var(--color-pink);
    color: #fff;
    animation: pulse-badge 3s ease-in-out infinite;
}

/* ============== BOTÕES ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: none;
}
.btn--small {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}
.btn--large {
    font-size: 1.05rem;
    padding: 1.1rem 2rem;
}
.btn--block {
    width: 100%;
}
.btn--primary {
    background: var(--color-orange);
    color: #fff;
    box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
    background: var(--color-orange-light);
    transform: translateY(-2px);
}
.btn--primary:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--color-purple-dark), 0 6px 12px rgba(91, 26, 175, 0.2);
}
.btn--secondary {
    background: var(--color-purple);
    color: #fff;
    box-shadow: 0 4px 0 var(--color-purple-dark);
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
}
.btn--secondary:hover {
    background: var(--color-purple-light);
}
.btn--pulse {
    animation: pulse-cta 2s infinite;
}
.btn__icon { font-size: 1.2em; }
.btn__arrow {
    transition: transform 0.2s ease;
}
.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ============== HEADER ============== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-sm);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header__actions .btn {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
}
.header__logo img {
    height: 50px;
    width: auto;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: linear-gradient(135deg, #FFE082 0%, #FF8C42 50%, #FF3D7F 100%);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__shape {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}
.hero__shape--1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero__shape--2 { top: 20%; right: 8%; animation-delay: 1s; font-size: 2.5rem; }
.hero__shape--3 { bottom: 15%; left: 10%; animation-delay: 2s; }
.hero__shape--4 { bottom: 25%; right: 5%; animation-delay: 3s; font-size: 2.2rem; }

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.hero__content {
    color: #fff;
    text-align: center;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 7vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin: var(--space-md) 0;
    color: #fff;
    text-shadow: 2px 4px 0 rgba(62, 15, 126, 0.6), 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero__title .highlight {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.hero__title .highlight--yellow {
    color: var(--color-text);
    background: var(--color-yellow);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.hero__title .highlight--pink {
    color: #fff;
    background: var(--color-pink);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.hero__subtitle {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: #fff;
    text-shadow: 1px 2px 0 rgba(62, 15, 126, 0.5), 0 1px 6px rgba(0, 0, 0, 0.2);
}
.hero__subtitle strong {
    color: #fff;
    background: var(--color-purple);
    padding: 0.1em 0.5em;
    border-radius: 8px;
    text-shadow: none;
    font-weight: 800;
}

.hero__bullets {
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    max-width: 480px;
    box-shadow: var(--shadow-md);
}
.hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-weight: 600;
    font-size: 0.95rem;
}
.hero__bullets li span {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero__trust {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero__image {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
.hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.hero__image img:hover {
    transform: rotate(0deg) scale(1.02);
}
.hero__floating-tag {
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--color-yellow);
    color: var(--color-text);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-md);
    transform: rotate(8deg);
    font-size: 0.95rem;
}
.hero__floating-tag-emoji { font-size: 1.3rem; }

/* ============== SECTION HEAD ============== */
.section-head {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.section-head__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-purple);
    background: var(--color-bg-soft);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}
.section-head__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.section-head__desc {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: var(--color-text-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* ============== PRICING (LOTE 1) ============== */
.pricing {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #FFF8E7 0%, #FFFFFF 100%);
    position: relative;
}
.pricing__urgency {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
}
.pricing__urgency-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-sm);
}
.pricing__urgency-item--countdown {
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF6B9D 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.pricing__urgency-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-soft);
    border-radius: 50%;
}
.pricing__urgency-item--countdown .pricing__urgency-icon {
    background: rgba(255, 255, 255, 0.2);
}
.pricing__urgency-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.1;
    color: var(--color-purple);
    margin-bottom: 0.15rem;
}
.pricing__urgency-item--countdown strong {
    color: var(--color-yellow);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.pricing__urgency-item span:not(.pricing__urgency-icon) {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-weight: 600;
}
.pricing__urgency-item--countdown span:not(.pricing__urgency-icon) {
    color: rgba(255, 255, 255, 0.95);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}
.pricing-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
    border-color: var(--color-orange);
    background: linear-gradient(180deg, #FFF8E7 0%, #fff 30%);
}
.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.pricing-card__head {
    text-align: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px dashed var(--color-border);
}
.pricing-card__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--color-bg-soft);
    color: var(--color-purple);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}
.pricing-card__tag--green {
    background: var(--color-green);
    color: #fff;
}
.pricing-card__head h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}
.pricing-card__head p {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}
.pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-card__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}
.pricing-card__list li:last-child {
    border-bottom: none;
}
.pricing-card__period {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
}
.pricing-card__price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-purple);
    white-space: nowrap;
}
.pricing-card__price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-soft);
    margin-left: 0.15rem;
}
.pricing-card__discount {
    margin-top: auto;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-yellow);
    color: var(--color-text);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
}
.pricing-card__discount strong {
    color: var(--color-purple-dark);
    font-weight: 800;
}

.pricing__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    margin-top: var(--space-lg);
}
.pricing__actions .btn {
    width: 100%;
    max-width: 360px;
}
.pricing__note {
    text-align: center;
    color: var(--color-text-soft);
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

/* ============== BENEFÍCIOS ============== */
.benefits {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}
.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
.benefit-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-yellow);
}
.benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: inline-block;
}
.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}
.benefit-card p {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}
.benefit-card--highlight {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
    border-color: var(--color-yellow);
}
.benefit-card__tag {
    position: absolute;
    top: -10px;
    right: var(--space-md);
    background: var(--color-pink);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

/* ============== GARANTIA ============== */
.guarantee {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-soft);
}
.guarantee__card {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-light) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.guarantee__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--color-yellow);
    border-radius: 50%;
    opacity: 0.15;
}
.guarantee__icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(255, 201, 60, 0.5);
    position: relative;
    z-index: 1;
}
.guarantee__icon {
    font-size: 2.5rem;
}
.guarantee__content {
    position: relative;
    z-index: 1;
}
.guarantee__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #fff;
}
.guarantee__text {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-sm);
}
.guarantee__text strong {
    color: var(--color-yellow);
    font-weight: 800;
}
.guarantee__sub {
    font-size: 1rem;
    color: var(--color-yellow);
    font-weight: 700;
}

/* ============== STEPS ============== */
.steps {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}
.steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: stretch;
}
.step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease;
}
.step:hover { transform: translateY(-4px); }
.step__number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-orange);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-bg);
}
.step__icon {
    font-size: 3rem;
    margin: var(--space-md) 0;
}
.step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}
.step p {
    color: var(--color-text-soft);
    font-size: 0.95rem;
}
.step__arrow {
    display: none;
    font-size: 2rem;
    color: var(--color-purple);
    align-self: center;
    justify-self: center;
}

/* ============== ABOUT ============== */
.about {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FFE8D6 100%);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.about__content p {
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}
.about__content p strong {
    color: var(--color-purple);
}
.about__list {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-md);
}
.about__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}
.about__list li:last-child { border-bottom: none; }
.about__list li span {
    font-size: 1.3rem;
}
.about__image {
    position: relative;
}
.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about__badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-yellow);
    color: var(--color-text);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    white-space: nowrap;
}
.about__badge-icon { font-size: 1.5rem; }
.about__badge strong {
    font-size: 1.1rem;
    display: block;
    line-height: 1;
}
.about__badge span {
    font-size: 0.75rem;
    display: block;
    line-height: 1.2;
}

/* ============== FAQ ============== */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-soft);
}
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.faq__item {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq__item[open] {
    box-shadow: var(--shadow-md);
}
.faq__question {
    list-style: none;
    cursor: pointer;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
.faq__question::-webkit-details-marker {
    display: none;
}
.faq__toggle {
    width: 32px;
    height: 32px;
    background: var(--color-purple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease;
}
.faq__item[open] .faq__toggle {
    transform: rotate(45deg);
    background: var(--color-orange);
}
.faq__answer {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--color-text-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}
.faq__answer strong {
    color: var(--color-purple);
}

/* ============== FORMULÁRIO ============== */
.form-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
    position: relative;
    overflow: hidden;
}
.form-section::before,
.form-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}
.form-section::before {
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: var(--color-yellow);
}
.form-section::after {
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-blue);
}
.form-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.form-card__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.form-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text);
    margin: var(--space-md) 0;
    line-height: 1.2;
}
.form-card__title .highlight { text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1); }
.form-card__desc {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}
.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}
.form__input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-body);
}
.form__input:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(91, 26, 175, 0.15);
}
.form__input::placeholder {
    color: #A0A0B0;
}
.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%235B1AAF%22%20d%3D%22M6%208L1%203h10z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form__error {
    color: var(--color-pink);
    font-size: 0.8rem;
    font-weight: 600;
    min-height: 1rem;
}
.form__hint {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    background: rgba(91, 26, 175, 0.1);
    color: var(--color-purple);
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}
.form__input.has-error {
    border-color: var(--color-pink);
    background: #FFF0F5;
}
.form__textarea {
    min-height: 90px;
    resize: vertical;
    font-family: var(--font-body);
    line-height: 1.5;
}
.form__trust {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-soft);
    margin-top: var(--space-xs);
}

/* ============== FORM: FIELDSET (seções do formulário) ============== */
.form-fieldset {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    background: #FAFAFF;
    position: relative;
}
.form-fieldset + .form-fieldset {
    margin-top: var(--space-md);
}
.form-fieldset__legend {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-purple);
    background: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    margin-left: -0.4rem;
    margin-bottom: 0.2rem;
}
.form-fieldset__legend .icon {
    width: 1.1em;
    height: 1.1em;
    color: var(--color-orange);
}

/* ============== FORM: CHECKBOX customizado ============== */
.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
    padding: 0.3rem 0;
}
.form__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.form__checkbox-mark {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}
.form__checkbox-mark::after {
    content: '';
    width: 12px;
    height: 6px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s ease;
}
.form__checkbox input[type="checkbox"]:checked + .form__checkbox-mark {
    background: var(--color-purple);
    border-color: var(--color-purple);
}
.form__checkbox input[type="checkbox"]:checked + .form__checkbox-mark::after {
    opacity: 1;
}
.form__checkbox input[type="checkbox"]:focus-visible + .form__checkbox-mark {
    box-shadow: 0 0 0 3px rgba(91, 26, 175, 0.25);
}

/* ============== FORM: DIAS DA SEMANA (chips) ============== */
.dias-semana-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.dia-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.5rem 0.85rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    background: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-soft);
    transition: all 0.2s ease;
    user-select: none;
}
.dia-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.dia-chip__mark {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid var(--color-border);
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.dia-chip__mark::after {
    content: '';
    width: 10px;
    height: 5px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s ease;
}
.dia-chip input[type="checkbox"]:checked ~ .dia-chip__mark {
    background: var(--color-purple);
    border-color: var(--color-purple);
}
.dia-chip input[type="checkbox"]:checked ~ .dia-chip__mark::after {
    opacity: 1;
}
.dia-chip input[type="checkbox"]:checked ~ .dia-chip__label {
    color: var(--color-purple);
}
.dia-chip:hover {
    border-color: var(--color-purple-light);
}
.dia-chip input[type="checkbox"]:focus-visible ~ .dia-chip__mark {
    box-shadow: 0 0 0 3px rgba(91, 26, 175, 0.25);
}
.dia-chip--selected {
    border-color: var(--color-purple);
    background: #F3E5F5;
}
.datas-loading {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-style: italic;
    padding: 0.3rem 0;
}

/* ============== BUY SUMMARY (resumo do pedido) ============== */
.buy-summary {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE082 100%);
    border: 2px solid var(--color-yellow);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-md);
}
.buy-summary__title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-purple-dark);
    margin: 0 0 var(--space-sm);
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}
.buy-summary__title .icon {
    width: 1.2em;
    height: 1.2em;
    color: var(--color-purple-dark);
}
.buy-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    color: var(--color-text-soft);
    font-size: 0.95rem;
}
.buy-summary__row strong {
    font-family: var(--font-heading);
    color: var(--color-text);
}
.buy-summary__row--discount strong {
    color: var(--color-green);
}
.buy-summary__row--total {
    border-top: 2px dashed rgba(0, 0, 0, 0.15);
    margin-top: 0.4rem;
    padding-top: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.buy-summary__row--total strong {
    color: var(--color-purple);
    font-size: 1.5rem;
}

.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}
.form-success__icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: bounce 1s ease;
}
.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-purple);
    margin-bottom: var(--space-sm);
}
.form-success p {
    color: var(--color-text-soft);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

/* ============== CTA FINAL ============== */
.cta-final {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
    text-align: center;
}
.cta-final__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.cta-final__text {
    color: var(--color-text-soft);
    font-size: clamp(1rem, 3vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* ============== FOOTER ============== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-3xl) 0 var(--space-lg);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}
.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: var(--space-md);
}
.footer__col p {
    line-height: 1.6;
    font-size: 0.9rem;
}
.footer__logo {
    margin-bottom: var(--space-md);
    width: 90px;
    height: auto;
}
.footer__list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.footer__list a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
    border-bottom: 1px dashed transparent;
}
.footer__list a:hover {
    color: var(--color-yellow);
    border-bottom-color: var(--color-yellow);
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============== STICKY CTA MOBILE ============== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-orange);
    color: #fff;
    padding: 0.9rem var(--space-md);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-cta.is-visible {
    transform: translateY(0);
}
.sticky-cta:hover {
    background: var(--color-orange-light);
}
.sticky-cta__icon { font-size: 1.2rem; }

/* ============== ANIMAÇÕES ============== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}
@keyframes pulse-cta {
    0%, 100% { box-shadow: var(--shadow-cta), 0 0 0 0 rgba(255, 107, 26, 0.5); }
    50% { box-shadow: var(--shadow-cta), 0 0 0 12px rgba(255, 107, 26, 0); }
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }
    50% { transform: scale(1.04); box-shadow: 0 6px 18px rgba(255, 61, 127, 0.5); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== RESPONSIVO: TABLET (>=600px) ============== */
@media (min-width: 600px) {
    .container { padding: 0 var(--space-xl); }
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form__row {
        grid-template-columns: 2fr 1fr;
    }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============== RESPONSIVO: DESKTOP (>=900px) ============== */
@media (min-width: 900px) {
    .container { padding: 0 var(--space-xl); }

    /* Hero lado a lado */
    .hero { padding: var(--space-3xl) 0; }
    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-3xl);
    }
    .hero__content { text-align: left; flex: 1.1; }
    .hero__bullets { margin-left: 0; }
    .hero__image { flex: 1; }

    /* Benefits 3 colunas */
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Steps lado a lado */
    .steps__grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: center;
    }
    .step__arrow { display: flex; }

    /* About lado a lado */
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    .about__image { order: 0; }

    /* Footer 4 colunas */
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .header__logo img { height: 60px; }
}

/* ============== RESPONSIVO: LARGE DESKTOP (>=1200px) ============== */
@media (min-width: 1200px) {
    .hero__title { font-size: 3.5rem; }
}

/* ============== ACESSIBILIDADE ============== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero__shape { display: none; }
}

@media (max-width: 599px) {
    /* No desktop o sticky some, no mobile fica visível após o hero */
    .sticky-cta.is-visible { display: flex; }
}

/* ============== RESPONSIVO: TABLET (>=600px) ============== */
@media (min-width: 600px) {
    .pricing__urgency {
        grid-template-columns: 1fr 1fr;
    }
    .pricing__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .header__actions .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ============== ÍCONES (LUCIDE) ============== */
/* Lucide injeta <svg> quando createIcons() é chamado.
   Estes estilos padronizam o tamanho e a cor de todos os ícones do site. */
.icon {
    width: 1.1em;
    height: 1.1em;
    stroke-width: 2.25;
    flex-shrink: 0;
    vertical-align: -0.18em;
    display: inline-block;
}
.icon--arrow {
    width: 1.2em;
    height: 1.2em;
    transition: transform 0.2s ease;
}
.btn:hover .icon--arrow {
    transform: translateX(4px);
}

/* ============== SUBSTITUIÇÕES DE EMOJIS QUE ERAM DECORATIVOS ============== */
/* O hero tinha emojis grandes flutuando. Agora são ícones Lucide. */
.hero__shape .icon {
    width: 2rem;
    height: 2rem;
    color: rgba(255, 255, 255, 0.7);
}
.hero__shape--2 .icon { width: 2.5rem; height: 2.5rem; }
.hero__shape--4 .icon { width: 2.2rem; height: 2.2rem; }

/* Hero bullets: ícone + texto */
.hero__bullets li {
    align-items: center;
}
.hero__bullets li .icon {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--color-green);
    flex-shrink: 0;
}
.hero__bullets li:nth-child(2) .icon { color: var(--color-pink); }
.hero__bullets li:nth-child(3) .icon { color: var(--color-purple); }

/* Botões: ícone de ticket/dinheiro */
.btn .icon {
    width: 1.2em;
    height: 1.2em;
}

/* Badge (eyebrow) com ícone */
.badge .icon,
.section-head__eyebrow .icon {
    width: 1em;
    height: 1em;
    margin-right: 0.35em;
    vertical-align: -0.1em;
}

/* Benefit cards */
.benefit-card__icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-purple);
    stroke-width: 2;
}
.benefit-card--highlight .benefit-card__icon .icon {
    color: var(--color-pink);
}

/* Guarantee icon */
.guarantee__icon {
    font-size: 2.5rem;
    color: var(--color-text);
}
.guarantee__icon.icon {
    width: 2.5rem;
    height: 2.5rem;
}
.guarantee__sub .icon {
    width: 1.2em;
    height: 1.2em;
    color: var(--color-pink);
    margin-left: 0.2em;
    vertical-align: -0.15em;
}

/* Step icons */
.step__icon .icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-orange);
    stroke-width: 2;
}
.step__arrow .icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-purple);
}

/* About list */
.about__list li {
    align-items: center;
}
.about__list li .icon {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--color-purple);
    flex-shrink: 0;
}

/* About badge */
.about__badge-icon {
    font-size: 1.5rem;
}
.about__badge-icon.icon {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--color-purple-dark);
}

/* FAQ toggle */
.faq__toggle .icon {
    width: 1.1rem;
    height: 1.1rem;
    color: #fff;
    transition: transform 0.3s ease;
}
.faq__item[open] .faq__toggle .icon {
    transform: rotate(45deg);
}

/* Form trust (lock) */
.form__trust .icon {
    width: 1em;
    height: 1em;
    margin-right: 0.3em;
    vertical-align: -0.1em;
    color: var(--color-purple);
}

/* Form success icon */
.form-success__icon .icon {
    width: 4rem;
    height: 4rem;
    color: var(--color-purple);
}

/* CTA final heart */
.cta-final__title .icon {
    width: 1em;
    height: 1em;
    color: var(--color-pink);
    margin-left: 0.2em;
    vertical-align: -0.1em;
}

/* Footer */
.footer__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer__list li .icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-yellow);
    flex-shrink: 0;
}
.footer__list a {
    display: inline;
}
.footer__bottom p .icon {
    width: 1em;
    height: 1em;
    color: var(--color-pink);
    vertical-align: -0.1em;
}

/* Sticky CTA */
.sticky-cta__icon.icon {
    width: 1.3rem;
    height: 1.3rem;
}

/* Pricing urgency icon */
.pricing__urgency-icon .icon {
    width: 1.7rem;
    height: 1.7rem;
    color: var(--color-purple);
}
.pricing__urgency-item--countdown .pricing__urgency-icon .icon {
    color: #fff;
}

/* Pricing card badge (with star) */
.pricing-card__badge .icon {
    width: 1em;
    height: 1em;
    margin-right: 0.2em;
    color: var(--color-yellow);
    vertical-align: -0.15em;
}
.pricing-card__discount .icon {
    width: 1.1em;
    height: 1.1em;
    color: var(--color-purple-dark);
    margin-right: 0.3em;
    vertical-align: -0.15em;
}
.pricing__note .icon {
    width: 1.1em;
    height: 1.1em;
    color: var(--color-purple);
    margin-right: 0.3em;
    vertical-align: -0.15em;
}

/* ============= PÁGINA DE SUCESSO ============= */
.success-hero {
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE082 50%, #F3E5F5 100%);
    padding: var(--space-3xl) 0;
    display: flex;
    align-items: center;
}
.success-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: 0 20px 60px rgba(91, 26, 175, 0.15);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-pink), var(--color-purple), var(--color-blue));
}
.success-card__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 107, 26, 0.3);
    animation: successBounce 0.6s ease-out;
}
@keyframes successBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.success-card__icon .icon {
    width: 3rem;
    height: 3rem;
    color: #fff;
}
.badge--success {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: var(--space-md);
}
.badge--success .icon {
    width: 1.1em;
    height: 1.1em;
}
.success-card__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}
.success-card__desc {
    font-size: 1.1rem;
    color: var(--color-text-soft);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto var(--space-xl);
}
.success-card__steps {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE082 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: left;
}
.success-card__steps-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-purple-dark);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.success-card__steps-title .icon {
    width: 1.3em;
    height: 1.3em;
    color: var(--color-purple-dark);
}
.success-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.success-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}
.success-step__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-purple);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.success-step__content strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.success-step__content p {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    line-height: 1.5;
    margin: 0;
}
.success-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
}
.success-card__actions .btn {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}
.success-card__actions .icon {
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.4rem;
    vertical-align: -0.15em;
}
.success-card__trust {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: var(--space-md);
}
.success-card__trust .icon {
    width: 1.1em;
    height: 1.1em;
    color: var(--color-green);
}

@media (max-width: 640px) {
    .success-card {
        padding: var(--space-xl) var(--space-md);
    }
    .success-card__actions .btn {
        flex: 1 1 100%;
    }
}
