:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #141417;
    --accent-orange: #ff6b00;
    --accent-yellow: #ffb703;
    --accent-gradient: linear-gradient(135deg, #ff6b00 0%, #ffb703 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography base */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
}

/* Partículas no fundo */
#sparksCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 30px;
    background: radial-gradient(circle at center 30%, rgba(255, 107, 0, 0.08) 0%, var(--bg-primary) 60%);
}

/* 4️⃣ O QUE VOCÊ VAI ENCONTRAR - PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.projects-carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.drag-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    /* Firefox */
}

.drag-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.drag-slider.active-drag {
    cursor: grabbing;
}

.new-projects-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px 10px 40px 10px;
    /* Extra bottom padding for hover effects */
}

/* Responsividade adicional para a largura dos cards */
@media (max-width: 768px) {
    .new-projects-track {
        gap: 20px;
        padding: 20px 10px 30px 10px;
    }
}

.project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
    width: 250px;
    /* Standardize card width */
    flex-shrink: 0;
}

.project-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.project-img-full {
    width: 100%;
    /* Recortando as sobras pretas das imagens verticalmente */
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Responsividade adicional para a largura dos cards */
@media (max-width: 768px) {
    .project-item {
        width: 200px;
        /* Cards menores no mobile */
    }
}


.hero .hero-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero .headline {
    font-size: 3.5rem;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero .subheadline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #dfdfdf;
    text-align: left;
}

.hero-bullets i {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

/* Botoes Premium */
.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    border: none;
}

.primary-cta {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.5);
}

.secondary-cta {
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.secondary-cta:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

/* Mockup Imagem Hero */
.hero-image-wrapper {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.mockup-glass {
    position: relative;
    display: inline-block;
    perspective: 1000px;
}

.mockup-img {
    width: 100%;
    max-width: 600px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

.tilt-3d {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    }

    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
}

.mockup-labels {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.mockup-labels .label {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    color: var(--accent-yellow);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #a0a0ab);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Drag Sliders (Carousels) */
.drag-slider {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    cursor: grab;
    scrollbar-width: none;
    /* Firefox */
}

.drag-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Edge */
}

.drag-slider:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 24px;
    padding: 0 5%;
    width: max-content;
}

/* Review Cards */
.review-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    width: 350px;
    flex-shrink: 0;
    user-select: none;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    object-fit: cover;
}

.stars {
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Pain Points */
.pain-points {
    margin: 40px auto;
    max-width: 600px;
}

.pain-points ul {
    list-style: none;
}

.pain-points li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #dfdfdf;
}

.error-icon {
    color: #ef4444;
    font-size: 1.5rem;
}

.problem-text,
.problem-highlight {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.problem-highlight {
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 24px;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.rounded-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.shadow-glow {
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

/* Includes Tags */
.tags-track {
    gap: 16px;
}

.include-tag {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    white-space: nowrap;
    user-select: none;
}

.include-tag i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.includes-footer {
    text-align: center;
    margin-top: 32px;
    color: var(--text-secondary);
}

/* Gallery Slider */
.gallery-card {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
    flex-shrink: 0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-note {
    text-align: center;
    margin-top: 32px;
    color: var(--text-secondary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.4);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* For Who */
.for-who-list ul {
    list-style: none;
    text-align: center;
}

.for-who-list li {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.for-who-list i {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

/* Delivery */
.delivery-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.delivery-icon {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.delivery-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

.step {
    background: var(--bg-primary);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.step i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

.delivery-footer {
    color: var(--text-secondary);
}

/* Offer */
.offer-box {
    padding: 60px 40px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), var(--glass-bg));
}

.glow-border {
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.1);
}

.badge {
    background: var(--accent-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.offer-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.offer-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.pricing {
    margin-bottom: 40px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.new-price {
    font-size: 1.1rem;
    color: var(--accent-yellow);
    margin-bottom: -10px;
    margin-top: 10px;
    font-weight: 600;
}

.price {
    font-size: 5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.guarantee-badge i {
    font-size: 3rem;
    color: #10b981;
    /* Verde garantia */
}

.guarantee-badge strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.guarantee-badge span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-box {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1), var(--glass-bg));
}

.final-box h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero .hero-content {
        padding: 0 20px;
        margin-bottom: 60px;
        max-width: 100%;
    }

    .hero .headline {
        font-size: 2.2rem;
    }

    .hero-bullets li {
        justify-content: flex-start;
    }

    .hero-image-wrapper {
        padding-right: 0;
        margin: 30px 0;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-title,
    .solution-text h2 {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .btn-cta {
        width: 100%;
        padding: 16px;
    }

    .hero .headline {
        font-size: 1.8rem;
    }

    .hero .subheadline {
        font-size: 1rem;
    }

    .price {
        font-size: 4rem;
    }
}