/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&display=swap');

:root {
    --bg: #050505;
    --card-bg: #111111;
    --accent: #00ffd2;
    /* Vibrant Cyan/Mint */
    --accent-glow: rgba(0, 255, 210, 0.4);
    --text: #ffffff;
    --text-dim: #b0b0b0;
    --font-mono: 'IBM Plex Mono', monospace;
    --container: 1100px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
}

.parallax-child {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Floating Elements Variants */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0px);
    }
}

.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
}

.floating-element.reverse {
    animation-name: float-reverse;
}

.floating-element.slow {
    animation-duration: 10s;
}

.floating-element.drift {
    animation: drift 15s ease-in-out infinite;
}

/* Background Dynamic Glows */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    transition: opacity 1.5s ease;
}

body.no-glow::before {
    opacity: 0;
}

/* Film Grain */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.logo-container {
    padding: 30px 0;
    text-align: center;
}

.logo {
    height: 70px;
    width: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img, video, iframe, a {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

input, textarea, select {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Sections */
section {
    padding: 60px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    /* Center everything by default in containers */
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(180deg, #000000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Global Interactive Glow (Flashlight) */
.glass-card,
.testimonial-card,
.bento-item,
.feature-box,
.badge-item,
.review-card-google {
    position: relative;
    overflow: hidden;
}

.glass-card::before,
.testimonial-card::before,
.bento-item::before,
.feature-box::before,
.badge-item::before,
.review-card-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), var(--accent-glow), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover::before,
.testimonial-card:hover::before,
.bento-item:hover::before,
.feature-box:hover::before,
.badge-item:hover::before,
.review-card-google:hover::before {
    opacity: 1;
}

/* Ensure content stays above the glow */
.glass-card>*,
.testimonial-card>*,
.bento-item>*,
.feature-box>*,
.badge-item>*,
.review-card-google>* {
    position: relative;
    z-index: 2;
}

.glass-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    /* Reduzido de 50px para visual industrial */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--accent-glow);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hero Enhancement */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    /* Allow wider content in Hero */
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 400;
    text-transform: none;
    margin-bottom: 25px;
}

.hero .logo-container {
    filter: drop-shadow(0 0 20px var(--accent-glow));
    margin-bottom: 20px;
}

.hero .logo {
    height: 320px;
}

/* Smaller logo */

/* Badges Luxury Style */
.badges-section {
    background: transparent;
    padding: 60px 0;
}

.badges-grid {
    gap: 40px;
}

.badge-item {
    background: var(--glass);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.badge-item:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: var(--accent);
}

.badge-item i {
    transition: var(--transition);
}

.badge-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--accent);
}

/* Carousel */
.carousel-section {
    position: relative;
}

.carousel-track {
    gap: 0;
}

.carousel-item img {
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #333;
}

.carousel-item:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

/* About Refinement */
.about {
    background: #000;
    padding: 100px 0;
}

.about-grid {
    display: flex;
    /* Switched to flex for easier ordering */
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-image {
    flex: 1.5;
    perspective: 1000px;
}

.parallax-wrapper {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateX(10px);
}

/* Flashlight for feature boxes */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(59, 130, 246, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.about-cta-wrapper {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        order: 1;
        text-align: center;
    }

    .about-image {
        order: 2;
        width: 100%;
    }

    .about-cta-wrapper {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .feature-box {
        justify-content: center;
    }
}

.plan-name {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.plan-price-total {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.plan-features li:before {
    content: "✅";
    margin-right: 10px;
}

/* Hero Video */
.video-container {
    width: 100%;
    max-width: 1200px;
    /* Premium Large Proportion */
    margin: 40px auto 0;
    aspect-ratio: 16/9;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 2;
    pointer-events: none;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Infinite Carousel */
.carousel-section {
    overflow: hidden;
    padding: 80px 0;
    background: #080808;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track.is-dragging {
    cursor: grabbing;
}

.carousel-item {
    width: 300px;
    padding: 0 15px;
    flex-shrink: 0;
}

.carousel-item img {
    width: 110%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    /* Reduzido de 20px */
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.carousel-item img:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}


/* Map Section */
.map-section {
    width: 100%;
    min-height: 450px;
    background: #111;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    flex-grow: 1;
}

.map-section iframe:hover {
    filter: none;
    opacity: 1;
    transition: 0.5s;
}

/* Badges Luxury Style */
.badges-section {
    background: transparent;
    padding: 60px 0;
}


/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    position: relative;
}

.testimonial-card:before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--accent);
}

/* Reviews Slider & Arrows */
.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-arrow {
    background: var(--card-bg);
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    z-index: 10;
}

.review-arrow:hover {
    background: var(--accent);
    color: black;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }

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

.main-testimonial-video .video-card {
    transition: transform 0.3s ease;
}

.main-testimonial-video .video-card:hover {
    transform: translateY(-5px);
}

/* Google Reviews Section */
.google-reviews {
    background: #080808;
    padding: 60px 0;
    border-top: 1px solid #222;
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-header h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.trust-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.trust-score strong {
    font-size: 1.5rem;
    color: var(--accent);
}

.trust-stars {
    color: #fbbc05;
    font-size: 1.2rem;
}

.trust-info {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.google-logo {
    height: 30px;
    opacity: 0.8;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.reviews-slider::-webkit-scrollbar {
    height: 6px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.review-card-google {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    min-width: 300px;
    border: 1px solid #333;
    scroll-snap-align: start;
    position: relative;
}

.review-header-google {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-header-google img.pfp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-name-google {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.review-date-google {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.g-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 18px;
    opacity: 0.6;
}

.prints-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.print-item img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #444;
    transition: 0.3s;
}

.print-item img:hover {
    transform: scale(1.05);
    border-color: var(--accent);
}

/* FAQ Exact Layout #FAQ-IMAGE-REF */
.faq {
    background: #fdfdfd;
    background-image: url('https://www.transparenttextures.com/patterns/p6.png');
    /* Subtle paper texture */
    padding: 100px 0;
    color: #1a1a1a;
}

.faq .section-label {
    display: none;
    /* Hide technical label in this specific section */
}

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

.faq-icons {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #1a1a1a;
    opacity: 0.8;
}

.faq .section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    border-color: var(--accent);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: #000000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-question::after {
    content: '—';
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.6s, opacity 0.4s;
    color: #333333;
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
    opacity: 1;
}

/* Top Info Bar (Countdown) */
.top-info-bar {
    background: #050505;
    background: linear-gradient(90deg, #050505 0%, #111 50%, #050505 100%);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-info-bar .countdown {
    margin: 0;
    transform: scale(0.7);
}

/* Floating WhatsApp Pulsating */
.whatsapp-float {
    position: fixed;
    bottom: 185px;
    /* Acima do Widget de Vídeo (140px + 30px + 15px gap) */
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 135px;
        /* Acima do Widget no Mobile (100px + 20px + 15px gap) */
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.2);
    animation: none;
}

/* Modal Lead Capture */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    /* Reduzido de 20px */
    max-width: 450px;
    width: 90%;
    border: 1px solid var(--accent);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
}

.modal-content h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    margin-bottom: 15px;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.count-item {
    text-align: center;
}

.count-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.count-item label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
    background: #050505;
}

@media (max-width: 768px) {

    .about-grid,
    .pricing-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .video-container {
        margin-top: 20px;
    }

    section {
        padding: 60px 0;
    }
}

/* Urgency Bar - Premium Info Header */
.urgency-bar {
    background: linear-gradient(90deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2000;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.urgency-badge {
    background: #fff;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

#timerHours,
#timerMinutes,
#timerSeconds {
    color: var(--accent);
    font-family: var(--font-mono);
}

.urgency-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.technical-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.modern-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    box-shadow: inset 0 0 15px rgba(59, 130, 246, 0.05);
    transition: var(--transition);
}

.timer-unit:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
}

.timer-unit span {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.timer-unit label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin-top: 2px;
}

.timer-separator {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.2rem;
    opacity: 0.3;
}

.urgency-bar i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .urgency-bar {
        font-size: 0.7rem;
        padding: 10px;
        gap: 8px;
    }

    .urgency-badge {
        padding: 2px 6px;
        font-size: 0.65rem;
    }

    /* Reels Style for Mobile - Full Immersion */
    .video-container {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: 9/16 !important;
        margin: 20px 0 !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .video-container iframe,
    .video-card iframe,
    #testimonialVideo {
        aspect-ratio: 9/16 !important;
        width: 100vw !important;
        height: auto !important;
        max-height: 95vh;
        object-fit: cover;
        pointer-events: none;
    }

    .main-testimonial-video .video-card {
        max-width: 100vw !important;
        border-radius: 0;
    }
}

/* Floating Video Widget */
.welcome-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1500;
    border: 4px solid var(--accent);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    background: #000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.welcome-widget video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .welcome-widget {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

/* Advanced Micro-interactions */
@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(2deg);
    }

    66% {
        transform: translateY(-5px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.welcome-widget {
    animation: floating 4s ease-in-out infinite;
}

.whatsapp-float {
    animation: floating 3s ease-in-out infinite, pulse-whatsapp 2s infinite;
}

.carousel-item img {
    transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-item:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

/* Section Glow Overlay */
.carousel-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    pointer-events: none;
    z-index: 5;
}

/* Urgency Progress Bar */
.urgency-progress-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.urgency-progress-bar {
    height: 100%;
    width: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 1s linear;
}

/* Nossa Estrutura Section */
.structure-section {
    background: #050505;
    padding: 80px 0;
}

.structure-image-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.structure-image-container:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.structure-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.structure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero .logo {
        height: 250px;
    }

    .structure-image-container {
        border-radius: 12px;
    }

    .structure-image {
        aspect-ratio: 4/3;
    }
}

/* Remove black borders from Main Testimonial Video */
.main-testimonial-video .video-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.main-testimonial-video .video-card {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.main-testimonial-video .video-card {
    position: relative;
    overflow: hidden;
}

.unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 100;
    cursor: pointer;
    pointer-events: auto;
    /* Required to capture clicks */
}

.unmute-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: 0 0 25px var(--accent-glow);
    animation: pulse-unmute 2s infinite;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.unmute-btn:hover {
    transform: scale(1.1);
}

.unmute-btn i {
    font-size: 1.4rem;
}

@keyframes pulse-unmute {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* --- Modern UI Extensions (Bondioli Style) --- */

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

.section-label::before {
    content: '/// ';
    opacity: 0.6;
}

.section-label span {
    color: #fff;
    opacity: 0.9;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    margin-top: 50px;
}

.bento-item {
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(59, 130, 246, 0.12) 0%, var(--card-bg) 50%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition), background 0s;
    /* Instant background update for smooth movement */
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-5px);
}

.bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-medium {
    grid-column: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: 1;
    transition: var(--transition);
}

.bento-item:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Refined Hero Styles */
.hero .container {
    max-width: 1300px;
    /* Aligned with updated video proportions */
}

.hero h1 {
    font-weight: 900;
    letter-spacing: -2px;
    text-align: center;
}

.hero h2 {
    text-align: center;
}

/* Vertical Dividers */
.modern-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 40px auto;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        /* Adjusted for mobile */
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 1.1rem !important;
    }

    .video-container {
        max-width: 100%;
        margin-top: 20px;
        border-radius: 8px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bento-item-large,
    .bento-item-medium {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }

    .about-features {
        flex-direction: column;
        gap: 15px;
    }

    .feature-box {
        width: 100%;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* /// TECH MARQUEE #MT-01 */
.tech-marquee {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    z-index: 100;
    margin-top: -1px;
    /* Stitch to header */
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    padding: 0 40px;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* /// BACKGROUND SHIFT #BS-01 */
body {
    transition: background 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-state-0 {
    background: #060606 !important;
}

.bg-state-1 {
    background: radial-gradient(circle at center, #0a1120 0%, #060606 100%) !important;
}

.bg-state-2 {
    background: radial-gradient(circle at center, #081a38 0%, #060606 100%) !important;
}

.bg-state-3 {
    background: radial-gradient(circle at bottom, #0a1120 0%, #060606 100%) !important;
}

.bg-state-4 {
    background: #060606 !important;
}