/* =========================================
   STYLE.CSS - GRUPO PROJECT (ESTÉTICA 2026)
   ========================================= */

:root {
    --bg-base: #050505;
    --bg-navy: #0A1220;
    --primary-blue: #0055FF;
    --primary-hover: #0044cc;
    --cyan-accent: #22d3ee;
    --text-light: #F8FAFC;
    --text-gray: #94A3B8;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1536px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    /* Suporte Firefox */
    scrollbar-width: thin;
    scrollbar-color: #1e293b var(--bg-base);
}

body {
    background-color: var(--bg-base);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* =========================================
   SCROLLBAR CUSTOMIZADA (CHROME, EDGE, SAFARI)
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* UTILITÁRIOS GERAIS */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-premium {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.container {
    width: 95%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding-block: clamp(100px, 12dvh, 200px);
    padding-inline: 0;
}

.section-header {
    margin-bottom: clamp(40px, 6dvh, 80px);
}

.section-header.center {
    text-align: center;
}

/* TIPOGRAFIA FLUIDA */
.section-header h2, .prevendas-text h2, .trafego-text h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-gray);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0, 132, 255, 0.15);
    border: 1px solid rgba(82, 163, 243, 0.4);
    color: #52a3f3;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mt-5 {
    margin-top: 40px;
}

.mb-3 {
    margin-bottom: 15px;
}

.align-center {
    align-items: center;
}

.justify-end {
    justify-content: flex-end;
}

.bg-navy {
    background-color: var(--bg-navy);
}

.bg-base {
    background-color: var(--bg-base);
}

.highlight-blue {
    color: var(--primary-blue);
}

.text-gradient {
    background: linear-gradient(90deg, #52a3f3, #0084ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.822));
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ddd;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.1rem);
    line-height: 1.5;
}

.check-list i {
    color: var(--primary-blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.check-list strong {
    color: #fff;
    margin-right: 5px;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.4);
}

.btn-lg {
    padding: clamp(14px, 2vw, 18px) clamp(24px, 3vw, 36px);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.pulse-btn {
    animation: pulse-soft 3s infinite;
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 85, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 85, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 85, 255, 0);
    }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 30px);
    margin-left: auto;
    margin-right: clamp(15px, 2vw, 30px);
}

.nav-menu a {
    color: var(--text-gray);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-light);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.nav-cta {
    color: #fff;
    padding: 8px 20px;
}

.nav-menu a.nav-cta::after {
    display: none;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
    background-color: var(--primary-blue);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    background-color: var(--primary-blue);
}

/* HERO CUSTOM */
#hero-custom {
    position: relative;
    min-height: max(100dvh, 600px);
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: clamp(60px, 12dvh, 120px);
    background-image: url(../img/hero.webp);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to left, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.505) 45%, rgba(5, 5, 5, 0.1) 100%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 50vw, 700px);
    height: clamp(300px, 50vw, 700px);
    background: var(--primary-blue);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

.hero-code-overlay {
    position: absolute;
    top: 10%;
    left: 5%;
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background-image: linear-gradient(0deg, transparent 24%, var(--text-gray) 25%, var(--text-gray) 26%, transparent 27%, transparent 74%, var(--text-gray) 75%, var(--text-gray) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, var(--text-gray) 25%, var(--text-gray) 26%, transparent 27%, transparent 74%, var(--text-gray) 75%, var(--text-gray) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
}

.hero-content-bottom-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-box {
    max-width: clamp(500px, 55vw, 850px);
    text-align: right;
    background: transparent;
    padding-right: clamp(20px, 4vw, 60px);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    animation: heroTextFadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes heroTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-text-box h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: clamp(15px, 3dvh, 30px);
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-text-box .hero-text {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
    color: #e2e8f0;
    margin-bottom: clamp(25px, 4dvh, 50px);
    line-height: 1.6;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-right: 5px;
}

/* GRIDS GERAIS */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
}

/* CARROSSEL CLIENTES */
.clients-marquee {
    background: var(--bg-navy);
    padding: clamp(30px, 5dvh, 60px) 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-container {
    width: 100vw;
    max-width: 100%;
    margin: 2rem 0 3rem 0;
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee-infinite 60s linear infinite;
}

.marquee-track img {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    margin: 0 clamp(30px, 4vw, 60px);
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    object-fit: contain;
    transform: translateZ(0);
    will-change: filter, opacity;
}

.marquee-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   ESPECIALISTAS (KINETIC GRAB SLIDER)
   ========================================= */
.team-slider-container {
    width: 100%;
    cursor: grab;
    overflow: hidden;
}

.team-slider-container:active {
    cursor: grabbing;
}

.team-slider {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-slider.is-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.team-card {
    flex: 0 0 auto;
    width: clamp(280px, 22vw, 340px);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    user-select: none;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 85, 255, 0.15);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    pointer-events: none;
}

.team-info {
    padding: clamp(20px, 2vw, 30px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-info h3 {
    color: #fff;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-gray);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-more {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: fit-content;
    transition: color 0.3s ease, transform 0.3s ease;
}

.view-more:hover {
    color: var(--cyan-accent);
    transform: translateX(5px);
}

/* MARKETING ACCORDION */
.accordion-flex-container {
    display: flex;
    width: 100%;
    height: clamp(500px, 70dvh, 800px);
    gap: 20px;
}

.acc-item {
    flex: 1;
    min-width: 140px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.acc-item:hover {
    flex: 5;
}

.acc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: 0.3s;
}

.acc-title-vertical {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    text-align: center;
    width: 90%;
    white-space: normal;
    line-height: 1.2;
    transition: 0.3s;
    pointer-events: none;
    z-index: 1;
}

.acc-item:hover .acc-title-vertical {
    opacity: 0;
}

.acc-content {
    position: absolute;
    bottom: clamp(20px, 4dvh, 40px);
    left: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
    z-index: 2;
}

.acc-item:hover .acc-content {
    opacity: 1;
    transform: translateY(0);
}

.acc-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.acc-content p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* PRÉ-VENDAS */
.prevendas-text p {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
    color: var(--text-gray);
    margin-bottom: 15px;
}

.prevendas-image {
    position: relative;
}

.counters-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(30px, 5dvh, 60px);
    border-radius: 16px;
    margin-top: clamp(40px, 6dvh, 80px);
    background: rgba(10, 18, 32, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.counter-box {
    text-align: center;
    flex: 1;
}

.counter-box.border-sides {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-number {
    font-size: clamp(2rem, 4vw, 4rem);
    font-family: var(--font-heading);
    color: var(--cyan-accent);
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-box p {
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
    text-transform: uppercase;
}

/* =========================================
   RH VÍDEO CUSTOMIZADO E TRÁFEGO PAGO
   ========================================= */
.rh-video-container {
    position: relative;
    width: 100%;
    /* Garante que ocupe o espaço da coluna */
    max-width: 100%;
    /* Trava rígida para não vazar */
    height: auto;
    /* Altura se adapta para não distorcer */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    background: #000;
    aspect-ratio: 16 / 9;
    /* Mantém proporção perfeita */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.rh-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botão Flutuante de Play (Canto Inferior Esquerdo) */
.rh-play-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 18, 32, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 24px 8px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.rh-play-overlay .play-circle {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.rh-play-overlay i {
    margin-left: 3px;
    /* Centraliza visualmente o ícone de play */
}

.rh-play-overlay:hover {
    background: rgba(0, 85, 255, 0.15);
    border-color: rgba(0, 85, 255, 0.4);
    transform: translateY(-3px);
}

.rh-play-overlay:hover .play-circle {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.6);
}

@media (max-width: 768px) {
    .rh-play-overlay {
        bottom: 15px;
        left: 15px;
        padding: 6px 18px 6px 6px;
        font-size: 0.9rem;
    }

    .rh-play-overlay .play-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.trafego-text p {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
    margin-bottom: 15px;
}

/* TECNOLOGIA */
#tecnologia {
    position: relative;
    background-color: var(--bg-navy);
    background-image: url('../img/robo.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

#tecnologia::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 18, 32, 0) 0%, rgba(10, 18, 32, 0.8) 50%, rgba(10, 18, 32, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

#tecnologia .container {
    position: relative;
    z-index: 2;
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.tech-card {
    padding: clamp(20px, 3vw, 35px);
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 12px;
}

.tech-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.tech-card i {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

/* MAPEAMENTO DE PROCESSOS (TIMELINE) */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
    animation: flow-line 3s linear infinite;
}

@keyframes flow-line {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.process-step-wrapper {
    position: relative;
    z-index: 2;
    cursor: default;
}

.process-step {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
}

.step-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem auto;
}

.step-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.process-step-wrapper:hover .process-step {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.2);
}

.process-step-wrapper:hover .step-icon {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    transform: scale(1.05) rotate(5deg);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.step-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   CARROSSEL DE DEPOIMENTOS E VÍDEOS VERTICAIS
   ========================================= */

.testimonial-slider-container {
    width: 100%;
    cursor: grab;
    overflow: hidden;
    padding-bottom: 20px;
}

.testimonial-slider-container:active {
    cursor: grabbing;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 5vw 10px 10px;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slider.is-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: clamp(280px, 82vw, 380px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(25px, 4vw, 40px);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    user-select: none;
    cursor: grab;
}

.testimonial-card:active {
    cursor: grabbing;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    pointer-events: none;
}

.testimonial-card p {
    flex-grow: 1;
    margin-bottom: 30px;
    font-size: clamp(1.15rem, 2vw + 0.3rem, 1.26rem);
    line-height: 1.5;
    color: #e2e8f0;
}

.author.typographic {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid var(--primary-blue);
    padding-left: 15px;
    gap: 4px;
    margin-top: auto;
}

.author.typographic strong {
    color: #fff;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.author.typographic span {
    font-size: 0.8rem;
    color: var(--cyan-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* CARD DE VÍDEO VERTICAL (9:16) */
.video-card-vertical {
    flex: 0 0 auto;
    width: clamp(200px, 60vw, 260px);
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
    transition: transform 0.4s ease, border-color 0.4s ease;
    user-select: none;
    cursor: grab;
}

.video-card-vertical:active {
    cursor: grabbing;
}

.video-card-vertical:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.video-card-vertical video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.4s;
    user-select: none;
}

.video-card-vertical:hover video {
    opacity: 1;
}

.video-card-vertical .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-card-vertical:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-card-vertical .play-overlay i {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(0, 85, 255, 0.6));
    transition: transform 0.3s ease;
}

.video-card-vertical:hover .play-overlay i {
    transform: scale(1.1);
}

.video-card-vertical .video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    pointer-events: none;
}

.video-card-vertical .video-info strong {
    display: block;
    font-size: 1.1rem;
}

.video-card-vertical .video-info span {
    font-size: 0.8rem;
    color: var(--cyan-accent);
    text-transform: uppercase;
    font-weight: 700;
}

/* =========================================
   BLINDAGEM DO DRAG E HOVER
   ========================================= */
.testimonial-slider-container *,
.team-slider-container * {
    -webkit-user-drag: none;
}

.testimonial-slider.is-dragging .testimonial-card,
.testimonial-slider.is-dragging .video-card-vertical,
.team-slider.is-dragging .team-card {
    pointer-events: none;
}

/* =========================================
   NOVO LAYOUT DE CONTATO (GRID + REDES SOCIAIS)
   ========================================= */
.contact {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #0f1c35 0%, var(--bg-base) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.contact-info-wrapper {
    margin-bottom: 20px;
}

.contact-direct-info {
    margin-bottom: 30px;
}

.contact-direct-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-direct-info i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.address-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
    transition: color 0.3s ease;
    word-break: break-word;
    /* Resolve o vazamento de emails logos no mobile */
}

.address-link:hover {
    color: var(--primary-blue);
}

.social-links-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 85, 255, 0.4);
}

.form-box {
    padding: clamp(30px, 5vw, 60px);
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

input, .form-select {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

input:focus, .form-select:focus {
    border-color: var(--primary-blue);
    background-color: rgba(0, 0, 0, 0.5);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-select option {
    background-color: var(--bg-navy);
    color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    cursor: pointer;
    text-transform: none;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.form-feedback {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.form-feedback.success {
    display: block;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    animation: fadeIn 0.5s ease forwards;
}

/* =========================================
   FOOTER MINIMALISTA
   ========================================= */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img {
    height: 30px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.footer-links {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.separator {
    opacity: 0.3;
}

.footer-copy {
    color: #555;
    font-size: 0.85rem;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25d366;
    color: #fff;
    width: clamp(50px, 5vw, 70px);
    height: clamp(50px, 5vw, 70px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 3vw, 36px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 4s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    background-color: #20ba5a;
}

/* MODAIS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(20px, 4vw, 50px);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;

    /* Suporte Firefox para Scrollbar no Modal */
    scrollbar-width: thin;
    scrollbar-color: #1e293b var(--bg-navy);
}

.modal-content::-webkit-scrollbar-track {
    background: var(--bg-navy);
    border-radius: 16px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #ef4444;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}

.mini-gallery {
    display: flex;
    gap: 10px;
}

.mini-gallery img {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pack-card {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

/* =========================================
   RESPONSIVIDADE MEDIA QUERIES
   ========================================= */

@media (max-width: 1420px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }

    .navbar.active {
        background: var(--bg-base);
        height: auto;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.active .nav-container {
        flex-wrap: wrap;
    }

    .navbar.active .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin: 20px 0;
        gap: 20px;
        order: 3;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ESCONDE A IMAGEM DO TRÁFEGO NO MOBILE E TABLET */
    .trafego-image {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-info-wrapper p {
        margin-inline: auto;
    }

    .contact-direct-info p {
        justify-content: center;
    }

    .social-links-grid {
        justify-content: center;
    }

    .accordion-flex-container {
        flex-direction: column;
        height: auto;
        min-height: 80dvh;
    }

    .acc-title-vertical {
        transform: translate(-50%, -50%);
        top: 50%;
        bottom: auto;
        width: 90%;
    }

    .counters-grid {
        flex-direction: column;
        gap: 30px;
    }

    .counter-box.border-sides {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
    }

    /* TIMELINE MOBILE */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        top: 15%;
        bottom: 15%;
        height: auto;
    }

    .timeline-progress {
        width: 100%;
        height: 50%;
        background: linear-gradient(180deg, transparent, #3b82f6, #8b5cf6, transparent);
        animation: flow-line-vertical 3s linear infinite;
    }

    @keyframes flow-line-vertical {
        0% {
            top: -50%;
        }

        100% {
            top: 100%;
        }
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    #tecnologia {
        background-position: 30% center;
    }

    #tecnologia::before {
        background: linear-gradient(to bottom, rgba(10, 18, 32, 0.3) 0%, rgba(10, 18, 32, 0.9) 40%, rgba(10, 18, 32, 1) 100%);
    }
}

@media (max-width: 768px) {
    #hero-custom {
        align-items: center;
    }

    .hero-overlay {
        background: linear-gradient(to left, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.85) 40%, rgba(5, 5, 5, 0.6) 100%);
    }

    .hero-content-bottom-right {
        justify-content: center;
    }

    .hero-text-box {
        text-align: center;
        max-width: 100%;
        padding-inline: clamp(15px, 5vw, 30px);
        padding-right: clamp(15px, 5vw, 30px);
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        padding-right: 0;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* OTIMIZAÇÕES DA SEÇÃO DE CONTATO NO MOBILE */
    .form-box {
        padding: 25px 20px;
        /* Reduz o preenchimento para usar melhor a tela */
    }

    .contact-direct-info p {
        flex-direction: column;
        /* Coloca o ícone acima do texto no mobile */
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .address-link {
        flex-direction: column;
        /* Coloca o ícone acima do link no mobile */
        gap: 8px;
        font-size: 0.95rem;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 15px;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* =========================================
   AJUSTES FULL-SCREEN E NOTEBOOKS 1366x768
   ========================================= */
@media (min-width: 992px) {

    #hero-custom {
        background-attachment: fixed;
    }

    #treinamentos, #prevendas, #rh, #marketing, #trafego, #tecnologia, #processos {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    #treinamentos .section-header {
        margin-bottom: 25px;
    }

    #rh .container.grid-2-col {
        align-items: center;
        min-height: 55vh;
    }

    #rh .video-wrapper {
        height: 100%;
        padding-bottom: 0;
        min-height: 350px;
    }

    #rh .rh-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #prevendas .grid-2-col, #trafego .grid-2-col {
        align-items: stretch;
        min-height: 50vh;
    }

    .prevendas-text, .trafego-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .prevendas-image img, .trafego-image img {
        height: 100%;
        object-fit: cover;
    }

    .counters-grid {
        margin-top: clamp(30px, 4vh, 60px);
    }
}

@media (min-width: 992px) and (max-height: 680px) {
    #treinamentos .section-header h2 {
        font-size: 2rem;
    }

    #treinamentos .badge {
        margin-bottom: 10px;
    }
}

/* =========================================
   NOVA SEÇÃO DE PRÉ-VENDAS BENTO GRID (MODAL)
   ========================================= */
.prevendas-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.pv-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: #0A1220;
}

.pv-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.pv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 32, 1) 0%, rgba(10, 18, 32, 0.4) 100%);
    transition: opacity 0.4s ease;
}

.pv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 85, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.15);
}

.pv-card:hover .pv-card-bg {
    transform: scale(1.1);
    opacity: 0.5;
}

.pv-card:hover .pv-card-overlay {
    background: linear-gradient(to top, rgba(0, 85, 255, 0.9) 0%, rgba(10, 18, 32, 0.2) 100%);
}

.pv-card-content {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.pv-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #22d3ee;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.pv-card:hover .pv-icon {
    background: #fff;
    color: #0055FF;
    transform: scale(1.1) rotate(5deg);
}

.pv-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    transition: transform 0.4s ease;
    transform: translateY(20px);
}

.pv-card-content p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
}

.pv-card:hover .pv-card-content h3 {
    transform: translateY(0);
}

.pv-card:hover .pv-card-content p {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .prevendas-cards-grid {
        grid-template-columns: 1fr;
    }

    .pv-card {
        height: 180px;
    }

    .pv-card-content h3 {
        transform: translateY(0);
    }

    .pv-card-content p {
        opacity: 1;
        transform: translateY(0);
        max-height: 100px;
        margin-top: 5px;
    }

    .pv-card-overlay {
        background: linear-gradient(to top, rgba(10, 18, 32, 1) 0%, rgba(10, 18, 32, 0.6) 100%);
    }
}