:root {
    --bg-color: #0A0A0B;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --primary-color: #FF2D55;
    --secondary-color: #AF52DE;
    --accent-color: #FF9500;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-headlines: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-headlines);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-headlines);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 20px rgba(255, 45, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 45, 85, 0.5);
}

/* Smart Navbar */
.smart-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    /* Initially hidden */
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(10, 10, 11, 0.7);
    /* Slightly darker/more opaque for readability */
}

.smart-nav.visible {
    transform: translateX(-50%) translateY(0);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    /* Slightly smaller in nav */
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    /* Reduced padding since nav is hidden */
    padding-bottom: 4rem;
}

.hero-logo {
    height: 60px;
    /* Larger logo for hero */
    width: auto;
    margin-bottom: 2rem;
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-secondary {
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-screen {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide:first-child {
    position: relative;
    /* Let the first slide define the container height */
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    margin: -40px 0;
    /* Symmetrical mask */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 1.5rem;
    user-select: none;
}

.carousel-slide {
    flex: 0 0 calc(31% - 1rem);
    /* Wider items, smaller peek */
    min-width: 300px;
}

.pack-card-detailed {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border-color: rgba(255, 255, 255, 0.05);
}

.carousel-slide:hover .pack-card-detailed {
    transform: translateY(-10px);
    border-color: var(--pack-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px color-mix(in srgb, var(--pack-color) 15%, transparent);
}

.pack-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pack-header span,
.pack-header .mdi {
    font-size: 2.5rem;
    color: var(--pack-color);
}

.pack-header h3 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pack-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pack-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.carousel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .carousel-slide {
        flex: 0 0 calc(46% - 1rem);
        /* Wider on tablets */
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 88%;
        /* Wider on mobile */
    }

    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        gap: 0;
    }
}

.meu-pack {
    padding: 6rem 0;
}

.meu-pack .container {
    padding: 0;
    overflow: hidden;
}

.meu-pack-grid {
    align-items: center;
    gap: 4rem;
}

.meu-pack-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meu-pack-mockups {
    position: relative;
    width: 100%;
    height: 100%;
}

.meu-pack-mockups img {
    position: absolute;
    width: 260px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.mockup-1 {
    top: 50%;
    left: 40%;
    transform: translate(-50%, -55%) rotate(-8deg);
    z-index: 3;
}

.mockup-edit {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 4;
}

.mockup-2 {
    top: 50%;
    right: 5%;
    transform: translate(0, -45%) rotate(8deg);
    z-index: 2;
    opacity: 0.8;
}

.meu-pack-visual:hover .mockup-1 {
    transform: translate(-90%, -55%) rotate(-15deg);
}

.meu-pack-visual:hover .mockup-edit {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 5;
}

.meu-pack-visual:hover .mockup-2 {
    transform: translate(30%, -45%) rotate(15deg);
    opacity: 1;
}

.meu-pack-text {
    padding: 4rem;
}

.meu-pack-text .badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.meu-pack-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-headlines);
}

.feature-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.step:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.step span {
    font-size: 2rem;
    color: var(--secondary-color);
}

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

.footer-msg {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

@media (max-width: 968px) {
    .meu-pack-visual {
        height: 450px;
        order: 2;
    }

    .meu-pack-mockups img {
        width: 160px;
    }

    .mockup-1 {
        left: 35%;
        transform: translate(-50%, -50%) rotate(-10deg);
    }

    .mockup-edit {
        left: 50%;
        transform: translate(-50%, -45%) rotate(0deg);
    }

    .mockup-2 {
        right: 0;
        transform: translate(0, -40%) rotate(10deg);
    }

    .meu-pack-visual:hover .mockup-1 {
        transform: translate(-70%, -50%) rotate(-20deg);
    }

    .meu-pack-visual:hover .mockup-edit {
        transform: translate(-50%, -45%) scale(1.1);
    }

    .meu-pack-visual:hover .mockup-2 {
        transform: translate(15%, -40%) rotate(20deg);
    }

    .meu-pack-text {
        padding: 3rem 1.5rem;
        order: 1;
        text-align: center;
    }

    .meu-pack-text h2 {
        font-size: 2rem;
    }

    .step {
        text-align: left;
    }
}

footer {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

/* Reveal Animation States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.1), rgba(175, 82, 222, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card span {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 300px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

}

/* Golden Packs */
.golden-packs {
    padding: 6rem 0;
}

.golden-packs .container {
    padding: 0;
    overflow: hidden;
}

.golden-pack-grid {
    align-items: center;
    gap: 4rem;
    padding: 4rem;
}

.golden-pack-text {
    text-align: left;
    z-index: 2;
}

.golden-pack-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.golden-packs .container {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.golden-mockup {
    max-width: 100%;
    width: 260px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transform: rotate(-5deg);
    transition: var(--transition-smooth);
}

.golden-mockup:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.25);
}

.gold-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.3);
    margin: 0 0 1.5rem 0;
    /* Align left */
}

.gold-icon span {
    color: #FFD700;
}

.golden-pack-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-headlines);
    line-height: 1.2;
}

.golden-pack-text .intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.golden-subtext {
    font-size: 0.9rem !important;
    opacity: 0.7;
    margin-bottom: 0 !important;
    font-style: italic;
}

.text-gold {
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

@media (max-width: 968px) {
    .golden-pack-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }

    .golden-pack-text {
        text-align: center;
        order: 1;
    }

    .golden-pack-visual {
        order: 2;
        margin-top: 2rem;
    }

    .gold-icon {
        margin: 0 auto 1.5rem;
    }
}

/* Final CTA Section */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.1), rgba(175, 82, 222, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-top: 6rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.15) 0%, transparent 60%);
    z-index: -1;
    animation: pulse 10s infinite ease-in-out;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-headlines);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.25rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-logo {
        margin: 0 auto 2rem;
    }

    .cta-group {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

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

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--secondary-color);
}

.faq-answer a[target="_blank"]::after {
    content: "\e89e";
    /* open_in_new in Material Symbols */
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-left: 4px;
    font-size: 1.1em;
    transform: translateY(-1px);
    text-decoration: none;
    /* Prevent underline on icon */
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    margin-top: auto;
}

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

.footer-logo img {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

footer p {
    font-size: 0.9rem;
}