/* ==========================================================================
   FIREFLYERS LANDING PAGE - STYLESHEET (VANILLA CSS)
   ========================================================================== */

/* --- Custom Font Declarations --- */
@font-face {
    font-family: 'Durendal';
    src: url('./Fontes/durendal_oliphant/Durendal&Oliphant.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HeyNovember';
    src: url('./Fontes/hey_november/Hey November.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Design Tokens / Custom Properties --- */
:root {
    --color-lime: #d6f949;
    --color-lime-rgb: 214, 249, 73;
    --color-pink: #bc66ad;
    --color-pink-hover: #a54f96;
    --color-dark: #000000;
    --color-dark-gray: #1c1c1e;
    --color-light-gray: #161617;
    --color-white: #000000;
    --color-text: #86868b;
    --color-muted: #6e6e73;
    
    --color-heading: #f5f5f7;
    --color-accent-blue: #bc66ad;
    --color-border-subtle: rgba(255, 255, 255, 0.1);
    
    --font-gothic: 'Sora', sans-serif;
    --font-brush: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-sora: 'Sora', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-dark: none;
    --shadow-lime: none;
    --shadow-pink: none;
    
    --shadow-apple-card: 0 8px 30px rgba(0, 0, 0, 0.5);
    
    --header-height: 0px;
    --container-width: 1200px;
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Custom Fonts Helper Classes */
.gothic-font {
    font-family: var(--font-gothic);
    letter-spacing: 1px;
}

.brush-font {
    font-family: var(--font-brush);
}

/* --- Layout Utility Containers --- */
.section-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--color-dark);
    border: 2px solid var(--color-light-gray);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-pink);
}

/* ==========================================================================
   FLOATING SOCIAL LINKS
   ========================================================================== */
.floating-socials {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.social-item {
    width: 44px;
    height: 44px;
    background-color: rgba(28, 28, 30, 0.8);
    border: 1px solid var(--color-border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: var(--transition-normal);
}

.social-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.social-item:hover {
    transform: translateX(6px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(22, 22, 23, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #86868b !important;
    font-weight: 500;
    letter-spacing: -0.1px;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    display: none !important;
}

.nav-link:hover,
.nav-link.active {
    color: #f5f5f7 !important;
}

/* Language Selector Pill */
.lang-selector {
    display: flex;
    align-items: center;
    background-color: #1c1c1e;
    padding: 6px 12px;
    border-radius: 980px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f5f7;
    gap: 8px;
}

.lang-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: -0.1px;
    opacity: 0.8;
}

.lang-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-select-wrapper select {
    background-color: #2c2c2e;
    color: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 980px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 22px 4px 10px;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.lang-select-wrapper select:hover {
    background-color: #3a3a3c;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
    font-size: 0.7rem;
    pointer-events: none;
}

/* Hamburger menu button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.section-hero {
    margin-top: var(--header-height);
    background-color: var(--color-white);
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
    align-items: flex-start;
}

.hero-title {
    font-size: 6rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 8px;
    color: var(--color-heading);
}

.hero-tagline {
    font-size: 1.35rem;
    color: var(--color-text);
    margin-bottom: 8px;
    max-width: 520px;
    line-height: 1.5;
}

.hero-tagline strong {
    font-weight: 800;
}

/* Buttons Styling */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-brush);
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-lime) !important;
    color: #000000 !important;
    border-radius: 980px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    border: none !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease, box-shadow 0.3s ease;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 0 15px rgba(214, 249, 73, 0.4), 0 0 30px rgba(214, 249, 73, 0.15) !important;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    animation: btn-shine 5s infinite alternate ease-in-out;
}

@keyframes btn-shine {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.btn-primary:hover {
    transform: scale(1.02);
    opacity: 0.95;
    box-shadow: 0 0 25px rgba(214, 249, 73, 0.75), 0 0 50px rgba(214, 249, 73, 0.35) !important;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    background-color: transparent !important;
    color: var(--color-pink) !important;
    border: 1px solid var(--color-pink) !important;
    border-radius: 980px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    box-shadow: none !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background-color: var(--color-pink) !important;
    color: #ffffff !important;
    transform: scale(1.02);
}

.btn-secondary:active {
    transform: scale(0.97);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-bullets {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
}

.hero-bullets li {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--color-heading) !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
}

.hero-bullets li::before {
    content: '+';
    color: var(--color-pink);
    font-size: 1.1rem;
    font-weight: 800;
}

/* Mini CTA with Rocket */
.hero-mini-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-mini {
    background-color: transparent !important;
    color: var(--color-accent-blue) !important;
    border: 1px solid var(--color-accent-blue) !important;
    border-radius: 980px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    box-shadow: none !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.2s, color 0.2s;
}

.btn-mini:hover {
    background-color: var(--color-accent-blue) !important;
    color: #ffffff !important;
    transform: scale(1.02);
}

.rocket-badge {
    position: relative;
    width: 60px;
    height: 60px;
}

.floating-rocket {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-8px) rotate(18deg); }
    100% { transform: translateY(0px) rotate(15deg); }
}

/* Right Side Slanted Flyer Grid Banner */
.hero-right {
    position: relative;
    height: 100%;
    min-height: 500px;
    transform: translate(15%, 10%);
}

.slanted-overlay {
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: 10%;
    right: -5%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: skewX(-12deg);
    z-index: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -15px 15px 45px rgba(0, 0, 0, 0.3);
}

.elevator-showcase {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: 5%;
    right: -10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    overflow: hidden;
    transform: skewX(-12deg);
    z-index: 2;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.elevator-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: max-content;
    will-change: transform;
}

.elevator-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 2px solid var(--color-dark);
}

/* Animations */
.elevator-col.up-1 {
    animation: scroll-up 24s linear infinite;
}

.elevator-col.down {
    animation: scroll-down 22s linear infinite;
}

.elevator-col.up-2 {
    animation: scroll-up 26s linear infinite;
}

.elevator-showcase:hover .elevator-col {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* ==========================================================================
   VITRINE SHOWCASE SECTION (GALLERY)
   ========================================================================== */
.section-showcase {
    background-color: var(--color-light-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    display: none !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter Tabs */
.category-filters {
    display: inline-flex;
    background-color: #1c1c1e;
    padding: 4px;
    border-radius: 980px;
    gap: 4px;
    margin: 0 auto 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#vitrine .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#vitrine .flyers-grid {
    width: 100%;
}

.filter-btn {
    background-color: transparent;
    color: #86868b;
    border: none;
    padding: 8px 20px;
    border-radius: 980px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
    box-shadow: none;
}

.filter-btn:hover {
    color: #f5f5f7;
}

.filter-btn.active {
    background-color: #ffffff;
    color: #000000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filter-btn:active {
    transform: scale(0.97);
}

/* Gallery Grid */
.flyers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1200px) {
    .flyers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .flyers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .flyers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .flyers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.flyer-card {
    background-color: transparent;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    border: none !important;
    cursor: pointer;
    transition: transform var(--transition-normal);
    content-visibility: auto;
    contain-intrinsic-size: 300px;
    will-change: transform;
}

.flyer-card.hidden {
    display: none !important;
}

.flyer-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    width: 100%;
}

.flyer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    transition: transform var(--transition-slow);
}

/* Card Hover States */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transform: scale(0.7);
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.zoom-btn {
    background-color: var(--color-lime);
    color: var(--color-dark);
    box-shadow: 0 4px 10px rgba(184, 255, 0, 0.3);
}

.zoom-btn:hover {
    transform: scale(1.15) !important;
    background-color: #c4ff4d;
}

.pinterest-card-btn {
    background-color: #E60023;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(230, 0, 35, 0.4);
}

.pinterest-card-btn:hover {
    transform: scale(1.15) !important;
    background-color: #ad001a;
    color: #ffffff;
}

.copy-card-btn {
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.copy-card-btn:hover {
    transform: scale(1.15) !important;
    background-color: var(--color-pink);
    color: var(--color-white);
}

.flyer-card:hover {
    transform: scale(1.04);
}

.flyer-card:hover .flyer-image-wrapper img {
    transform: scale(1.06);
}

.flyer-card:hover .card-hover-overlay {
    opacity: 1;
}

.flyer-card:hover .card-action-btn {
    transform: scale(1);
}

.flyer-info {
    display: none !important;
}

.flyer-info h3 {
    display: none;
}

.category-badge {
    display: none;
}
}

/* ==========================================================================
   DETAILS / PACKS SECTION
   ========================================================================== */
.section-details {
    background-color: var(--color-white);
}

.details-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
}

.details-left h2 {
    margin-bottom: 16px;
    text-align: left;
}

.details-description {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-lime);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: none;
}

.feature-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Discount callout badge box */
.details-right {
    display: flex;
    justify-content: center;
}

.badge-discount-box {
    background-color: #1c1c1e;
    color: #ffffff;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-apple-card);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    max-width: 360px;
    width: 100%;
}

.discount-title {
    display: block;
    font-size: 1.1rem;
    letter-spacing: -0.1px;
    color: #86868b;
    margin-bottom: 10px;
}

.discount-percent {
    display: block;
    font-family: var(--font-sora);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.discount-price-old {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.discount-price-new {
    display: block;
    font-family: var(--font-sora);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-lime);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.badge-discount-box p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.badge-discount-box .btn {
    width: 100%;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.section-how-it-works {
    background-color: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-it-works-header .section-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.how-it-works-header .section-subtitle {
    font-family: var(--font-brush);
    font-size: 1.8rem;
    color: var(--color-pink);
    letter-spacing: 1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background-color: #1c1c1e;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-apple-card);
    border-radius: 18px;
    padding: 40px 30px;
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.step-badge {
    position: absolute;
    top: -18px;
    left: 20px;
    background-color: #2c2c2e;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-sora);
    font-weight: 700;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.step-card h3 {
    font-family: var(--font-sora);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.extra-benefits-box {
    background-color: #161617;
    border: 1px solid var(--color-border-subtle);
    box-shadow: none;
    border-radius: 18px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
}

.benefit-text strong {
    display: block;
    font-family: var(--font-sora);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.benefit-text span {
    color: var(--color-muted);
}

/* ==========================================================================
   OFFER & PRICING SECTION
   ========================================================================== */
.section-pricing {
    background-color: var(--color-light-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.offer-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 60px;
}

.offer-badge {
    background-color: var(--color-white);
    border: 3px solid var(--color-lime);
    color: var(--color-dark);
    padding: 12px 36px;
    font-size: 1.8rem;
    border-radius: 6px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
    display: inline-block;
    text-align: center;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-lime);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Guarantee badge with rocket */
.guarantee-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-dark-gray);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--color-border-subtle);
    margin-bottom: 32px;
}

.rocket-decor {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.offer-rocket {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(30deg);
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.4;
}

.offer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-pricing-primary {
    background-color: var(--color-lime) !important;
    color: #000000 !important;
    border-radius: 980px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    box-shadow: none !important;
    border: none !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease;
}

.btn-pricing-primary:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.btn-pricing-secondary {
    background-color: transparent !important;
    color: var(--color-pink) !important;
    border: 1px solid var(--color-pink) !important;
    border-radius: 980px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    box-shadow: none !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.2s, color 0.2s;
}

.btn-pricing-secondary:hover {
    background-color: var(--color-pink) !important;
    color: #ffffff !important;
    transform: scale(1.02);
}

/* Payment Icons Strip */
.payment-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.payment-card-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-card-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.5rem;
    color: var(--color-muted);
}

.payment-card-logo.pix span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: #32bcad;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.payment-card-logo.card i {
    margin-right: 6px;
}

/* Right Pricing values */
.pricing-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.price-container {
    background-color: #1c1c1e;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-apple-card);
    padding: 30px 30px;
    border-radius: 18px;
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 360px;
    position: relative;
}

.price-old {
    font-size: 0.95rem;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-old del {
    color: var(--color-pink);
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    margin-bottom: 10px;
}

.price-big {
    font-size: 9.5rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
}

.price-cents {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 25px;
    margin-left: 2px;
}

.price-accent-bar {
    display: none !important;
}

/* Slanted collage behind price */
.pricing-slant-collage {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg) scale(0.9);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    width: 450px;
}

.pricing-collage-img {
    width: 100%;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.section-about {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
}

.about-left {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 80%;
    max-width: 280px;
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.about-right h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-heading);
}

.about-right p {
    color: var(--color-muted);
    font-size: 1rem;
    margin-bottom: 16px;
}

/* ==========================================================================
   SUPPORT / CONTACT SECTION
   ========================================================================== */
.section-support {
    background-color: var(--color-light-gray);
}

.support-header {
    text-align: center;
    margin-bottom: 48px;
}

.support-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
}

.support-form-wrapper {
    background-color: #1c1c1e;
    padding: 40px;
    border-radius: 18px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-apple-card);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 8px;
    letter-spacing: -0.1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #2c2c2e;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent-blue);
    background-color: #3a3a3c;
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Support Information Cards */
.support-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #1c1c1e;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--color-border-subtle);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.info-card i {
    font-size: 2rem;
    color: var(--color-pink);
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.info-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: #050507;
    color: #ffffff;
    padding: 60px 20px 40px;
    border-top: 3px solid var(--color-pink);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-top p {
    font-size: 0.95rem;
    opacity: 0.7;
    max-width: 500px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-pink);
}

/* ==========================================================================
   LIGHTBOX MODAL FOR VITRINE DETAIL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    background-color: #1c1c1e;
    width: 90%;
    max-width: 900px;
    border-radius: 18px;
    overflow: hidden;
    z-index: 10;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-apple-card);
    border: 1px solid var(--color-border-subtle);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.2rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 20;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-pink);
    transform: scale(1.1);
}

.lightbox-body {
    display: grid;
    grid-template-columns: 50% 50%;
}

.lightbox-image-container {
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    padding: 10px;
}

.lightbox-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.lightbox-details h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.lightbox-details .category-badge {
    margin-bottom: 20px;
}

.lightbox-desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.lightbox-btn {
    width: 100%;
}

.lightbox-discrete-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: 18px;
}

.discrete-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: 1.5px solid var(--color-border-subtle);
    background-color: #13141c;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.discrete-icon-btn.pinterest:hover {
    background-color: #E60023;
    color: #ffffff;
    border-color: #E60023;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.35);
}

.discrete-icon-btn.copy:hover {
    background-color: var(--color-dark);
    color: var(--color-lime);
    border-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Toast Container & Notification */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    background-color: rgba(18, 18, 18, 0.95);
    color: #ffffff;
    border-left: 4px solid var(--color-lime);
    padding: 14px 22px;
    border-radius: 6px;
    font-family: var(--font-sora);
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-notification i {
    color: var(--color-lime);
    font-size: 1.2rem;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Tablet & Smaller Desktop Viewports */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hero-left {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .hero-bullets {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-mini-cta {
        justify-content: center;
    }
    
    .hero-right {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 240px;
        transform: none;
    }
    
    .slanted-overlay {
        position: absolute;
        top: -10%;
        bottom: -10%;
        left: -10%;
        right: -10%;
        width: auto;
        transform: skewY(-6deg) skewX(0);
    }
    
    .elevator-showcase {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 340px;
        height: 200px;
        transform: skewX(-12deg);
        z-index: 2;
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    }

    .elevator-col {
        gap: 8px;
    }

    .elevator-img {
        border-radius: 4px;
        border: 1px solid var(--color-dark);
    }
    
    .floating-socials {
        display: none; /* Hide floating socials on tablets/mobile, add to header/footer */
    }
    
    .details-grid,
    .pricing-layout,
    .about-grid,
    .support-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .details-right,
    .pricing-right {
        justify-content: center;
    }
    
    .about-left {
        order: -1;
    }
    
    .lightbox-body {
        grid-template-columns: 1fr;
    }
    
    .lightbox-details {
        padding: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .extra-benefits-box {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 30px;
    }
    
    .step-card {
        padding: 30px 24px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Mobile Header adjustments */
    .header-container {
        padding: 0 12px;
        gap: 10px;
    }

    .logo-area img {
        height: 28px;
    }

    .lang-selector {
        padding: 4px 6px;
        gap: 0;
    }

    .lang-label {
        display: none; /* Hide label to save space on mobile */
    }

    .lang-select-wrapper select {
        font-size: 0.68rem;
        padding: 4px 18px 2px 8px;
    }

    .select-arrow {
        right: 6px;
        font-size: 0.6rem;
    }

    .mobile-nav-toggle {
        display: flex;
        gap: 4px;
        padding: 4px;
    }

    .mobile-nav-toggle .bar {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
        transition: var(--transition-normal);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-ctas .btn {
        width: 100%;
        margin-bottom: 0;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
    }
    
    .offer-buttons .btn {
        width: 100%;
    }
    
    .price-big {
        font-size: 7.5rem;
    }
    
    .price-cents {
        font-size: 2.8rem;
    }
    
    .support-form-wrapper {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works-header .section-title {
        font-size: 1.8rem;
    }

    .how-it-works-header .section-subtitle {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   CUSTOM BACKGROUND VECTOR GRAPHICS
   ========================================================================== */
.vector-graphic-container {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.65;
}

.hero-vector-left {
    left: -100px;
    top: 0;
    width: 600px;
    height: 600px;
}

.pricing-vector-right {
    right: -100px;
    bottom: -20px;
    width: 800px;
    height: 400px;
}

/* Premium micro-animations for background curves */
@keyframes drawPathWave {
    0% {
        stroke-dashoffset: 1200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes wavePulse {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.65;
    }
    50% {
        transform: translate(20px, -15px) scale(1.05) rotate(2deg);
        opacity: 0.85;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.65;
    }
}

.animated-path-1 {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawPathWave 25s linear infinite;
}

.animated-path-2 {
    animation: wavePulse 12s ease-in-out infinite;
    transform-origin: center;
}

/* ==========================================================================
   TERMS OF USE MODAL
   ========================================================================== */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.terms-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.terms-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.terms-content {
    position: relative;
    background-color: #1c1c1e;
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    border-radius: 18px;
    overflow: hidden;
    z-index: 10;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-apple-card);
    border: 1px solid var(--color-border-subtle);
    display: flex;
    flex-direction: column;
}

.terms-modal.active .terms-content {
    transform: scale(1);
}

.terms-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 20;
    transition: var(--transition-fast);
}

.terms-close:hover {
    color: var(--color-pink);
}

.terms-body {
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-body h2 {
    font-family: var(--font-gothic);
    font-size: 2rem;
    color: #ffffff;
    border-bottom: 2px solid var(--color-lime);
    padding-bottom: 10px;
    margin-right: 30px; /* Leave space for close button */
}

.terms-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.terms-text p {
    margin-bottom: 15px;
}

.terms-text p strong {
    color: #ffffff;
}

.terms-text h3 {
    font-family: var(--font-sora);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
}

/* ==========================================================================
   DEDICATED TERMS OF USE PAGE
   ========================================================================== */
.terms-page-wrapper {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 300px);
    background-color: var(--color-light-gray);
    padding: 60px 20px;
    display: flex;
    align-items: center;
}

.terms-page-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: #1c1c1e;
    padding: 50px 40px;
    border-radius: 18px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-apple-card);
}

.terms-page-container h1 {
    font-family: var(--font-gothic);
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--color-border-subtle);
    padding-bottom: 15px;
    text-transform: uppercase;
}

.terms-page-content {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.terms-page-content p {
    margin-bottom: 20px;
}

.terms-page-content p strong {
    color: #ffffff;
}

.terms-page-content h3 {
    font-family: var(--font-sora);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #ffffff;
    border-left: 4px solid var(--color-pink);
    padding-left: 12px;
}

.nav-back-btn {
    font-family: var(--font-gothic);
    background-color: #13141c;
    color: #ffffff;
    border: 2px solid #13141c;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-back-btn:hover {
    background-color: var(--color-lime);
    color: var(--color-dark);
    border-color: var(--color-lime);
}

@media (max-width: 768px) {
    .terms-page-container {
        padding: 30px 20px;
    }
    
    .terms-page-container h1 {
        font-size: 2rem;
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* --- Designer Premium Card Accents --- */
.step-card {
    border-top: 3px solid var(--color-pink) !important;
}
.badge-discount-box {
    border-top: 4px solid var(--color-lime) !important;
}
.guarantee-block {
    border-top: 3px solid var(--color-pink) !important;
}
.info-card {
    border-top: 3px solid var(--color-lime) !important;
}
.support-form-wrapper {
    border-top: 4px solid var(--color-pink) !important;
}

/* ==========================================================================
   FAQ SECTION (DESIGNER PREMIUM STYLE)
   ========================================================================== */
.section-faq {
    background-color: var(--color-light-gray);
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
}

.faq-item {
    background-color: #1c1c1e;
    border: 1px solid var(--color-border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(188, 102, 173, 0.4);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question-btn h3 {
    font-family: var(--font-sora);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.2px;
}

.faq-toggle-icon {
    font-size: 1rem;
    color: var(--color-pink);
    transition: transform var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-answer-content {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
}

.faq-item.active {
    border-color: var(--color-pink);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* ==========================================================================
   NEON GLOW EFFECT (MESH GRADIENTS)
   ========================================================================== */
.neon-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.glow-pink {
    background-color: var(--color-pink);
}

.glow-lime {
    background-color: var(--color-lime);
}

/* ==========================================================================
   TICKER RIBBON (MARQUEE)
   ========================================================================== */
.ticker-ribbon {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-lime);
    color: #000000;
    font-family: var(--font-gothic);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
    z-index: 100;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.ticker-ribbon strong {
    color: #000000;
    font-weight: 700;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-animation 30s linear infinite;
    will-change: transform;
}

.ticker-content span {
    padding: 0;
    display: inline-block;
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================================================
   PHOTOSHOP SIDEBAR TOOLBAR (HERO DECORATION)
   ========================================================================== */
.hero-header-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.hero-title-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.ps-toolbar {
    background-color: #2b2c2f;
    border: 1px solid #1a1a1c;
    border-radius: 6px;
    width: 44px;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    user-select: none;
    flex-shrink: 0;
    margin-top: 15px; /* Aligns visually with the tall font line height */
}

.ps-toolbar-header {
    font-size: 0.65rem;
    color: #8c8c8c;
    margin-bottom: 6px;
    cursor: pointer;
    transition: color 0.2s;
}

.ps-toolbar-header:hover {
    color: #ffffff;
}

.ps-tools {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #1e1f21;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.ps-tool {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5b5b5;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}

.ps-tool:hover {
    background-color: #3b3c40;
    color: #ffffff;
}

.ps-tool.active {
    background-color: #1a1a1c;
    color: var(--color-lime);
}

/* Custom indicator in tools with submenu */
.ps-tool::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 3px 3px;
    border-color: transparent transparent #7a7a7a transparent;
}

.ps-tool.active::after {
    border-color: transparent transparent var(--color-lime) transparent;
}

/* Overlapping Color Squares Block */
.ps-colors {
    position: relative;
    width: 32px;
    height: 38px;
    margin: 4px 0 8px;
}

.ps-color-square {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1.5px solid #1a1a1c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.ps-color-square.foreground {
    background-color: var(--color-lime);
    top: 2px;
    left: 2px;
    z-index: 2;
}

.ps-color-square.background {
    background-color: #ffffff;
    bottom: 2px;
    right: 2px;
    z-index: 1;
}

.ps-color-switch {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.55rem;
    color: #8c8c8c;
    cursor: pointer;
    z-index: 3;
    transition: color 0.15s;
}

.ps-color-switch:hover {
    color: #ffffff;
}

/* Responsive adjustment */
@media (max-width: 1024px) {
    .ps-toolbar {
        display: none !important;
    }
    .hero-header-wrapper {
        gap: 0;
    }
}

/* Photoshop Type Tool Easter Egg Styles */
.hero-title.ps-editable {
    outline: none;
    border-left: 2px solid var(--color-lime);
    padding-left: 15px;
    caret-color: var(--color-lime);
    cursor: text;
    animation: ps-cursor-blink 1s infinite alternate;
}

@keyframes ps-cursor-blink {
    from { border-left-color: var(--color-lime); }
    to { border-left-color: transparent; }
}

/* Photoshop Paint Bucket Tool Easter Egg Styles */
body.ps-paint-bucket-active * {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' style='font-size:16px'><text y='16'>🪣</text></svg>"), cell !important;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-floating-btn i {
    font-size: 2.2rem;
    line-height: 1;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

.whatsapp-floating-btn:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-floating-btn i {
        font-size: 1.9rem;
    }
}

/* ==========================================================================
   LANGUAGE TOGGLE SWITCH (PT / EN) - VERTICAL LEFT MARGIN
   ========================================================================== */
.lang-switch-container {
    position: absolute;
    left: 24px;
    top: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    background-color: rgba(28, 28, 30, 0.85);
    border: 1px solid var(--color-border-subtle);
    padding: 14px 8px;
    border-radius: 980px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.lang-switch-container:hover {
    background-color: rgba(28, 28, 30, 0.95);
}

.lang-label-switch {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-muted);
    transition: color 0.3s ease;
    user-select: none;
    cursor: pointer;
}

.lang-label-switch.active {
    color: var(--color-lime);
}

.switch {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 36px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2c2c2e;
    transition: .3s ease;
    border: 1px solid var(--color-border-subtle);
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    top: 2px;
    background-color: #ffffff;
    transition: .3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

input:checked + .slider {
    background-color: var(--color-pink);
}

input:checked + .slider:before {
    transform: translateY(16px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .lang-switch-container {
        position: absolute;
        left: 20px;
        top: 20px;
        flex-direction: row;
        gap: 6px;
        padding: 6px 12px;
        z-index: 1100;
    }
    
    .lang-label-switch {
        font-size: 0.7rem;
    }
    
    .switch {
        width: 36px;
        height: 20px;
    }
    
    .slider:before {
        height: 14px;
        width: 14px;
        left: 2px;
        top: 2px;
    }
    
    input:checked + .slider:before {
        transform: translateX(16px);
    }
}

/* ==========================================================================
   RETENTION / INACTIVITY POP-UP
   ========================================================================== */
.retention-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.retention-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.retention-popup-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background-color: #1c1c1e;
    border: 2px solid var(--color-pink);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(254, 44, 85, 0.3), 0 0 30px rgba(0, 0, 0, 0.6);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.retention-popup-overlay.active .retention-popup-content {
    transform: scale(1);
}

.retention-popup-close {
    position: absolute;
    top: 12px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--color-muted);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.retention-popup-close:hover {
    color: var(--color-pink);
    transform: scale(1.1);
}

.retention-popup-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.retention-emoji-container {
    display: flex;
    gap: 16px;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 4px;
}

.animate-eye {
    animation: eye-look 3s infinite ease-in-out;
    display: inline-block;
}

.animate-bug {
    animation: bug-buzz 0.6s infinite linear;
    display: inline-block;
}

@keyframes eye-look {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10%, 20% { transform: scale(1.1) rotate(-6deg); }
    30%, 40% { transform: scale(1.1) rotate(6deg); }
    50% { transform: scale(1); }
}

@keyframes bug-buzz {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-2px, 2px) rotate(-5deg); }
    40% { transform: translate(2px, -2px) rotate(5deg); }
    60% { transform: translate(-2px, -2px) rotate(-2deg); }
    80% { transform: translate(2px, 2px) rotate(3deg); }
}

.retention-title {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.retention-text {
    font-size: 0.95rem;
    color: #b3b3b7;
    line-height: 1.6;
}

.retention-cta-btn {
    width: 100%;
    margin-top: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 16px 24px;
    box-shadow: 0 4px 15px rgba(214, 249, 73, 0.3);
}

.retention-cta-btn:hover {
    box-shadow: 0 6px 20px rgba(214, 249, 73, 0.5);
}

@media (max-width: 480px) {
    .retention-popup-content {
        padding: 35px 20px 25px 20px;
    }
    .retention-title {
        font-size: 1.35rem;
    }
    .retention-text {
        font-size: 0.85rem;
    }
}

/* --- Responsive Layout & Horizontal Overflow Prevention --- */
section {
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pricing-slant-collage,
    .pricing-vector-right,
    .hero-vector-left,
    .vector-graphic-container {
        display: none !important;
    }

    /* Wrap showcase category filters on mobile to prevent cropping */
    .category-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 16px;
        padding: 6px;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        border-radius: 12px;
    }
}
