/*
Theme Name: Wilift Landing Page
Theme URI: https://wilift.com.br
Author: Antigravity
Author URI: https://google.com
Description: A high-converting landing page theme for Wilift Black Lift 2025.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wilift-lp
*/

:root {
    --color-primary: #FFD700;
    /* Gold/Yellow for urgency */
    --color-secondary: #000000;
    /* Black */
    --color-text: #ffffff;
    --color-bg: #121212;
    --color-cta: #32CD32;
    /* Lime Green for CTA */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-cta {
    background-color: var(--color-cta);
    color: #000;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
}

.text-highlight {
    color: var(--color-primary);
}

/* Utilities */
.text-center {
    text-align: center;
}

.d-none {
    display: none;
}

.box-container {
    margin-top: 600px;
    margin-bottom: 100px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('assets/img/topo_land_black.webp') no-repeat center center/cover;
}

/* Mobile responsive background */
@media (max-width: 768px) {
    .hero-section {
        background: url('assets/img/banner-mob-black.webp');
        background-position: top center;
        background-repeat: no-repeat;
        background-color: #000;
    }

    .box-container {
        margin-bottom: 10px;
        overflow-x: hidden;
    }

    /* Badges marquee effect */
    .badges-marquee-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .badges-marquee {
        display: flex;
        gap: 1rem;
        animation: marquee 15s linear infinite;
        width: max-content;
    }

    .badges-marquee:hover {
        animation-play-state: paused;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

.combo-section {
    background: linear-gradient(180deg, #000 0%, #121212 100%);
}

.card {
    background-color: #000;
    min-height: 150px;
}

.card-combo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.card-combo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-combo:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.1);
}

.card-combo:hover::before {
    opacity: 1;
}

.card-combo:hover .icon-box i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.card-combo .icon-box i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.text-shadow-soft {
    text-shadow: 2px 2px 4px #000;
}

.btn:hover {
    color: #fff;
}