/* ==========================================================================
   OGuiViera Mídia Kit - Master Stylesheet
   ========================================================================== */

/* --- Importação de Fontes Google --- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;600;700;800;900&display=swap');

/* --- Variáveis Globais (Fontes Solicitadas) --- */
:root {
    --font-display: 'Impact', 'Anton', sans-serif;
    /* Fonte Título */
    --font-body: 'Helvetica Neue', 'Helvetica', 'Inter', sans-serif;
    /* Fonte Corpo */

    --h-text: #111111;
    --h-bg: #FAFAFA;
    --h-grey-dark: #4a4a4a;
    --h-grey-medium: #777777;
    --h-grey-light: #f5f5f7;
    --h-orange: #FF4500;
    --h-orange-glow: rgba(255, 69, 0, 0.4);
    --white: #ffffff;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   1. TRAVA ABSOLUTA DE ROLAGEM HORIZONTAL (REQUISITO STACK OVERFLOW)
   ========================================================================== */
html,
body {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    background-color: var(--h-bg);
    color: var(--h-text);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

.site-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

.site-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. HERO SECTION (dynamic-hero)
   ========================================================================== */
.dynamic-hero-section {
    padding: 40px 0 20px;
    position: relative;
}

.dynamic-hero {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    padding-left: 2%;
    z-index: 10;
    position: relative;
}

.hero-super-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7.5rem);
    line-height: 0.9;
    color: var(--h-text);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--h-orange);
    position: relative;
    display: inline-block;
}

.outline-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: inherit;
    color: transparent;
    text-shadow: 0 0 15px var(--h-orange-glow);
    z-index: -1;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.5;
    max-width: 420px;
    color: var(--h-grey-dark);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    border-left: 4px solid var(--h-orange);
    padding-left: 15px;
    transition: transform var(--transition-fast);
}

.stat-box:hover {
    transform: translateX(5px);
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    display: block;
    color: var(--h-orange);
    font-family: var(--font-body);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--h-grey-dark);
    font-weight: 700;
    font-family: var(--font-body);
}

/* Coluna Direita: Composição 3 Fotos */
.hero-visuals {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.photo-cluster {
    position: relative;
    width: 480px;
    height: 520px;
}

.gui-photo {
    position: absolute;
    bottom: 0;
    transition: all var(--transition-normal);
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
}

.photo-main {
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    bottom: -10px;
}

.photo-sec-1 {
    z-index: 2;
    left: 0;
    bottom: 8%;
    width: 55%;
    opacity: 0.8;
    filter: grayscale(100%);
    transform: rotate(-6deg);
}

.photo-sec-2 {
    z-index: 1;
    right: 0;
    bottom: 12%;
    width: 50%;
    opacity: 0.6;
    filter: grayscale(100%);
    transform: rotate(6deg);
}

.hero-visuals:hover .photo-sec-1 {
    transform: translateX(-40px) rotate(-12deg);
    opacity: 1;
    filter: grayscale(0%);
}

.hero-visuals:hover .photo-sec-2 {
    transform: translateX(40px) rotate(12deg);
    opacity: 1;
    filter: grayscale(0%);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.shape-circle-big {
    width: 500px;
    height: 500px;
    border: 2px solid var(--h-orange);
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation: pulseBorder 8s infinite alternate;
    opacity: 0.5;
}

.shape-fill-grey {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
    top: 15%;
    right: 5%;
    opacity: 0.6;
    animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes pulseBorder {
    0% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(255, 69, 0, 0.3);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.04);
        border-color: var(--h-orange);
    }
}

/* ==========================================================================
   3. CROSS TAPES MARQUEE (100% Largura sem rolagem horizontal)
   ========================================================================== */
.cross-tapes-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
    padding: 20px 0;
}

.cross-tapes-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 170px;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    z-index: 5;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tape-strip {
    position: absolute;
    width: 130%;
    height: 42px;
    background: var(--h-text);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.tape-1 {
    transform: rotate(3deg);
    z-index: 2;
}

.tape-2 {
    transform: rotate(-3deg);
    z-index: 1;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.tape-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 40px;
    display: flex;
    align-items: center;
}

.tape-text::after {
    content: "•";
    margin-left: 40px;
    opacity: 0.5;
    color: var(--h-orange);
}

.scroll-left {
    animation: scrollText 22s linear infinite;
}

.scroll-right {
    animation: scrollTextReverse 22s linear infinite;
}

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

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

@keyframes scrollTextReverse {
    0% {
        transform: translateX(-50%);
    }

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

/* ==========================================================================
   4. MANIFESTO (REQUISITO: LADO A LADO NO DESKTOP)
   ========================================================================== */
.profile-manifesto-section {
    padding: 60px 0;
    position: relative;
}

.profile-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.gui-photo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    perspective: 1000px;
    padding: 10px;
}

@keyframes floatIdle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.gui-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    cursor: pointer;
    transition: transform var(--transition-bounce), filter 0.3s ease;
    animation: floatIdle 6s ease-in-out infinite;
    will-change: transform;
}

.gui-photo-element {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    border-radius: 12px;
}

.gui-img-wrapper.is-expanded {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-10px);
    z-index: 10;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.25));
}

.manifesto-text-container {
    position: relative;
    padding: 20px;
    text-align: left;
}

/* Tag Profile // Manifesto em uma linha acima do Título */
.manifesto-header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.pre-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--h-grey-medium);
    letter-spacing: 2px;
    white-space: nowrap;
    font-family: var(--font-body);
}

.pre-title::before {
    content: "";
    width: 25px;
    height: 3px;
    background: var(--h-orange);
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--h-text);
    margin: 0;
    text-align: left;
}

.manifesto-copy p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--h-grey-dark);
    margin-bottom: 20px;
    font-family: var(--font-body);
    text-align: left;
}

.floating-asset {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.asset-crown {
    width: 75px;
    top: -40px;
    right: 20px;
    animation: floatIdle 5s ease-in-out infinite;
}

.asset-megaphone {
    width: 85px;
    top: 45%;
    left: -75px;
    animation: floatIdle 7s ease-in-out infinite reverse;
}

.asset-chess {
    width: 60px;
    bottom: 0px;
    right: -55px;
    animation: floatIdle 6s ease-in-out infinite 1s;
}

.orange-highlight {
    position: relative;
    white-space: nowrap;
    z-index: 1;
    font-weight: 700;
    color: #000;
    padding: 0 4px;
}

.orange-highlight::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 69, 0, 0.35);
    z-index: -1;
}

/* ==========================================================================
   5. TÍTULO DE MÉTRICAS & SOCIAL ORBIT
   ========================================================================== */
.metrics-header-container {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.metrics-title-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
    cursor: default;
    transform: rotate(-3deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.metrics-title-wrapper:hover {
    transform: rotate(-1deg) scale(1.02);
}

.metrics-title-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    color: var(--h-text);
    background: #ffffff;
    padding: 15px 40px;
    border: 3px solid var(--h-text);
    box-shadow: 10px 10px 0px var(--h-orange);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.orbit-icon {
    position: absolute;
    font-size: 3rem;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.8;
    animation: floatOrbit 6s ease-in-out infinite;
    z-index: 1;
}

.icon-ig {
    top: -40px;
    left: -60px;
    color: #E1306C;
    transform: rotate(-15deg);
    animation-delay: 0s;
    font-size: 3.5rem;
    filter: blur(3px);
    z-index: -1;
}

.icon-yt {
    bottom: -30px;
    right: -50px;
    color: #FF0000;
    transform: rotate(15deg);
    animation-delay: 2s;
    font-size: 4rem;
    filter: blur(1px);
    z-index: 11;
}

.icon-tt {
    top: -50px;
    right: 10%;
    color: #000;
    font-size: 2.5rem;
    filter: blur(4px);
    animation-delay: 4s;
    opacity: 0.6;
}

@keyframes floatOrbit {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot-start, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rot-start, 0deg));
    }
}

@media (max-width: 768px) {
    .metrics-title-text {
        white-space: normal;
        font-size: 2.2rem;
        padding: 10px 20px;
        box-shadow: 6px 6px 0px var(--h-orange);
    }

    .icon-ig {
        left: -10px;
        top: -30px;
        font-size: 2.5rem;
    }

    .icon-yt {
        right: -10px;
        bottom: -20px;
        font-size: 3rem;
    }

    .icon-tt {
        display: none;
    }
}

/* Grid de Dados */
.data-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 50px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: stretch;
}

.macro-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-card {
    background-color: var(--h-text);
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.impact-value {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 5.5vw, 5.5rem);
    line-height: 1;
    color: var(--h-orange);
    margin-bottom: 8px;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    font-family: var(--font-body);
}

.cities-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 28px;
    border-radius: 16px;
}

.card-header {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--h-text);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header i {
    color: var(--h-orange);
}

.city-row {
    margin-bottom: 14px;
}

.city-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 4px;
}

.city-bar-bg {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.city-bar-fill {
    height: 100%;
    background: var(--h-orange);
    border-radius: 5px;
}

.demo-card {
    background-color: var(--h-grey-light);
    border: 2px solid var(--h-text);
    padding: 24px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-info h4 {
    margin: 0 0 4px 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--h-text);
}

.demo-info span {
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.demo-badge {
    background: var(--h-orange);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.social-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.insta-profile-card {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.insta-avatar-wrapper {
    width: 85px;
    height: 85px;
    min-width: 85px;
    border-radius: 50%;
    padding: 3px;
    background: #ffffff;
}

.insta-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.insta-username {
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #3897f0;
    font-size: 1rem;
}

.insta-stats-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #efefef;
    padding-top: 16px;
}

.insta-stat-item {
    text-align: center;
}

.i-num {
    display: block;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--h-text);
}

.i-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
}

.social-row {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.social-row:hover {
    border-color: var(--h-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.social-id {
    display: flex;
    align-items: center;
    gap: 16px;
}

.s-icon {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--h-grey-light);
}

.social-row:hover .s-icon {
    background: var(--h-orange);
    color: #ffffff !important;
}

.s-name {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    text-transform: uppercase;
}

.s-stat {
    text-align: right;
}

.s-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--h-text);
}

.s-sub {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   6. MARQUEE DE BRANDS & CARROSSEL INFINITO DE LOGOS (LADO A LADO PERFEITO)
   ========================================================================== */
.brands-section-container {
    width: 100%;
    max-width: 100%;
    padding: 30px 0 40px;
    overflow: hidden !important;
    position: relative;
}

.brands-wrapper {
    display: flex;
    width: max-content;
    animation: infiniteMarquee 25s linear infinite;
    will-change: transform;
}

.brands-wrapper:hover {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
}

.brand-logo-item {
    height: 48px;
    width: auto;
    max-width: 140px;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-logo-dark {
    filter: invert(1) brightness(0.2) !important;
}

.brand-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.2);
    cursor: pointer;
}

.brand-logo-dark:hover {
    filter: invert(0) drop-shadow(0 0 3px var(--h-orange)) !important;
}

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

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

/* ==========================================================================
   STICKER BOX (CASES DE SUCESSO)
   ========================================================================== */
.sticker-header-container {
    position: relative;
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.sticker-box-wrapper {
    position: relative;
    z-index: 10;
    background: #ffffff;
    border: 5px solid var(--h-text);
    box-shadow: 15px 15px 0px var(--h-orange);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 30px;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticker-box-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 20px 20px 0px var(--h-text);
}

.box-title-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4.5rem);
    text-transform: uppercase;
    color: var(--h-text);
    line-height: 1;
    text-align: center;
    letter-spacing: 1px;
    word-spacing: 5px;
}

.sticker {
    position: absolute;
    filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    z-index: 20;
    pointer-events: none;
}

@keyframes floatSticker {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--rot, 0deg));
    }
}

.s-crown {
    width: 70px;
    top: -40px;
    left: -20px;
    --rot: -20deg;
    transform: rotate(var(--rot));
    animation: floatSticker 4s ease-in-out infinite;
}

.s-mega {
    width: 90px;
    right: -50px;
    bottom: -20px;
    --rot: 15deg;
    transform: rotate(var(--rot));
    animation: floatSticker 5s ease-in-out infinite 1s;
}

.social-sticker {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--h-text);
    font-size: 2rem;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    z-index: 25;
    animation: floatSticker 6s ease-in-out infinite 0.5s;
}

.s-insta {
    top: -30px;
    right: -30px;
    background: var(--h-orange);
    color: #fff;
    --rot: 10deg;
    transform: rotate(var(--rot));
}

.s-tt {
    top: -40px;
    right: 40%;
    background: #fff;
    color: #000;
    --rot: -5deg;
    transform: rotate(var(--rot));
    z-index: 5;
}

.s-yt {
    bottom: -30px;
    left: -30px;
    background: #fff;
    color: #FF0000;
    --rot: -15deg;
    transform: rotate(var(--rot));
}

@media (max-width: 768px) {
    .sticker-header-container {
        padding: 60px 15px;
    }

    .sticker-box-wrapper {
        padding: 15px;
        width: 90%;
        max-width: 350px;
        flex-direction: column;
    }

    .box-title-text {
        font-size: 2.1rem;
        line-height: 1.1;
        white-space: normal;
    }

    .s-crown {
        width: 50px;
        top: -25px;
        left: -10px;
    }

    .s-mega {
        width: 70px;
        right: -20px;
        bottom: -10px;
    }

    .social-sticker {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .s-insta {
        top: -20px;
        right: -15px;
    }

    .s-yt {
        bottom: -20px;
        left: -15px;
    }

    .s-tt {
        display: none;
    }
}

/* ==========================================================================
   7. CASES DE SUCESSO (SWIPER 3D AJUSTADO)
   ========================================================================== */
.cases-section-container {
    padding: 40px 0 60px;
    overflow: visible !important;
}

.mobile-drag-hint {
    display: none;
}

.cases-swiper-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
    perspective: 1200px;
}

.cases-swiper-container {
    overflow: visible !important;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.swiper-slide {
    width: 240px;
    height: 426px;
    /* Proporção exata 9:16 de celular */
    opacity: 0.35;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.swiper-slide-active {
    opacity: 1;
    z-index: 10;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    border: 6px solid #222;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 18px;
    background: #222;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 20;
}

.swiper-slide-active .phone-mockup {
    border-color: #333;
    box-shadow: 0 0 0 2px var(--h-orange), 0 25px 60px rgba(255, 69, 0, 0.25);
    transform: scale(1.02);
}

.video-inner {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    background: #000;
}

.video-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 69, 0, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 10;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
    transition: transform 0.2s;
}

.video-inner:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-inner.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.case-tag {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--h-orange);
    color: var(--h-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 15;
}

.swiper-button-nextSOLID,
.swiper-button-prevSOLID {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--h-orange) !important;
    color: #ffffff !important;
    border: 2px solid var(--h-orange) !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.swiper-button-nextSOLID:hover,
.swiper-button-prevSOLID:hover {
    background-color: #ffffff !important;
    color: var(--h-orange) !important;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prevSOLID {
    left: -10px;
}

.swiper-button-nextSOLID {
    right: -10px;
}

.swiper-button-prevSOLID::after {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.swiper-button-nextSOLID::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

/* ==========================================================================
   8. RPG SERVICES CARD DECK & SERVICES TITLE W/ KEYBOARD KEYS
   ========================================================================== */
.services-header-container {
    position: relative;
    width: 100%;
    padding: 20px 0px 0px;
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
}

.header-content-wrapper {
    position: relative;
    max-width: 1000px;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--h-orange);
    border: 1px solid var(--h-orange);
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(255, 69, 0, 0.05);
    margin-bottom: 12px;
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1;
    color: var(--h-text);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-bottom: 6px;
}

.service-title span {
    color: var(--h-orange);
}

.keyboard-keys-img {
    position: relative;
    display: block;
    width: 350px;
    max-width: 80%;
    height: auto;
    margin-top: -145px;
    z-index: 11;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
    transform: rotate(-2deg);
}

@media (max-width: 768px) {
    .services-header-container {
        padding: 0px 20px 20px;
    }

    .service-title {
        font-size: 2.2rem;
    }

    .keyboard-keys-img {
        width: 200px;
        margin-top: -75px;
        margin-bottom: -75px;
    }
}

.deck-section-container {
    width: 100%;
    padding: 50px 0;
}

/* --- Configurações da Faixa Laranja --- */
:root {
    --ot-bg: #FF4500;
    --ot-text: #ffffff;
    --ot-height: 45px;
    --ot-font-size: 16px;
}

.orange-tape-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 25px;
    margin-bottom: 35px;
    padding: 0;
    height: var(--ot-height);
    background: var(--ot-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 15;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ot-marquee-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: scrollTextOrange 25s linear infinite;
    flex-shrink: 0;
}

.ot-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: var(--ot-font-size);
    color: var(--ot-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.ot-text::after {
    content: "•";
    margin-left: 50px;
    opacity: 0.6;
    font-size: 10px;
}

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

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

.deck-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    /* Efeito de Fade nas Bordas */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.deck-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px calc(50% - 140px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    align-items: center;
}

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

/* A CARTA (RPG CARD) */
.rpg-card {
    position: relative;
    border: 2px solid var(--h-text);
    border-radius: 20px;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;

    /* Tamanho para exibir 5 cartas com clareza */
    width: 280px;
    min-width: 280px;
    max-width: 300px;
    height: 470px;

    scroll-snap-align: center;
    flex-shrink: 0;
    background: #ffffff;
    transform: scale(0.9);
    opacity: 0.75;
}

/* Estado Ativo/Central (Destaque Automático e Maior) */
.rpg-card:hover,
.rpg-card.is-active {
    transform: scale(1.06) translateY(-10px);
    opacity: 1;
    box-shadow: 0 20px 0px var(--h-orange);
    border-color: var(--h-orange);
    z-index: 10;
}

/* Elementos de Canto */
.card-corner {
    position: absolute;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: #ccc;
    transition: color 0.3s;
}

.rpg-card:hover .card-corner,
.rpg-card.is-active .card-corner {
    color: var(--h-orange);
}

.top-left {
    top: 15px;
    left: 15px;
}

.bottom-right {
    bottom: 15px;
    right: 15px;
    transform: rotate(180deg);
}

/* Conteúdo da Carta */
.card-main-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--h-text);
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 1;
    position: relative;
    z-index: 2;
    min-height: 55px;
    display: flex;
    align-items: center;
}

.card-icon-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 4.8rem;
    color: var(--h-text);
    transition: transform 0.4s ease, color 0.3s ease;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.1));
}

.rpg-card:hover .card-icon,
.rpg-card.is-active .card-icon {
    transform: scale(1.2) rotate(-5deg);
    color: var(--h-orange);
    filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    font-weight: 500;
    border-top: 2px solid #eee;
    padding-top: 14px;
    width: 100%;
    font-family: var(--font-body);
}

/* Botões de Navegação */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 2px solid var(--h-text);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    font-size: 1.1rem;
    color: var(--h-text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.nav-btn:hover {
    background: var(--h-orange);
    color: #fff;
    border-color: var(--h-orange);
}

.nav-prev {
    left: 15px;
}

.nav-next {
    right: 15px;
}

@media (max-width: 768px) {
    .deck-section-container {
        padding: 40px 10px;
    }

    .rpg-card {
        width: 82vw;
        min-width: 82vw;
        height: 430px;
        transform: scale(1);
        opacity: 1;
    }

    .deck-track {
        padding: 20px 9vw;
    }

    .nav-btn {
        display: none;
    }

    .rpg-card:hover,
    .rpg-card.is-active {
        transform: translateY(-5px) scale(1);
        box-shadow: 0 15px 0px var(--h-orange);
    }

    .rpg-card:hover .card-icon,
    .rpg-card.is-active .card-icon {
        transform: scale(1.1) rotate(-5deg);
    }
}

/* ==========================================================================
   9. CTA FINAL SECTION
   ========================================================================== */
.main-hero-wrapper {
    background-color: transparent;
    font-family: var(--font-body);
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 30px 0 60px;
    box-sizing: border-box;
    margin: 30px 0 0;
}

.hero-content-limit {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

/* --- LADO ESQUERDO: VISUAL --- */
.visual-section-container {
    width: 50%;
    height: 580px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cta-model-img {
    height: 100%;
    width: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    object-fit: contain;
}

.gen-z-tag {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    padding: 10px 35px;
    text-transform: uppercase;
    border-radius: 12px;
    white-space: nowrap;
    z-index: 20;
    animation: pulseTag 4s infinite;
}

.stat-bubble {
    position: absolute;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: floatBubble 6s ease-in-out infinite;
    z-index: 10;
    color: #fff;
}

.stat-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-bubble h4 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.stat-bubble span {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3px;
    z-index: 2;
    opacity: 0.9;
}

.b1 {
    width: 110px;
    height: 110px;
    top: 10%;
    left: 0%;
    animation-delay: 0s;
    background: rgba(255, 69, 0, 0.6);
    border-color: rgba(255, 69, 0, 0.4);
}

.b2 {
    width: 130px;
    height: 130px;
    top: 15%;
    right: 0%;
    animation-delay: 2s;
}

.b3 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: -5%;
    animation-delay: 1s;
}

.b4 {
    width: 140px;
    height: 140px;
    bottom: 20%;
    right: -10%;
    animation-delay: 3s;
    background: rgba(255, 255, 255, 0.1);
    color: var(--h-text);
}

.b4 h4 {
    color: var(--h-orange);
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseTag {
    0% {
        transform: translateX(-50%) rotate(-5deg) scale(1);
    }

    50% {
        transform: translateX(-50%) rotate(-5deg) scale(1.02);
    }

    100% {
        transform: translateX(-50%) rotate(-5deg) scale(1);
    }
}

/* --- LADO DIREITO: TEXTO --- */
.cta-text-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding-bottom: 40px;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 25px;
    color: var(--h-text);
}

.cta-title span {
    color: var(--h-orange);
}

.cta-desc {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.6;
    font-weight: 300;
    font-family: var(--font-body);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: var(--h-orange);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    border: 2px solid var(--h-orange);
    margin-bottom: 40px;
}

.btn-contact:hover {
    transform: translateY(-5px) scale(1.02);
    background: #fff;
    color: var(--h-orange);
}

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 900px) {
    .main-hero-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        padding: 40px 20px;
    }

    .hero-content-limit {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .visual-section-container {
        width: 100%;
        max-width: 450px;
        height: 420px;
        order: 1;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .cta-model-img {
        object-fit: contain;
        object-position: bottom;
        height: 350px;
    }

    .gen-z-tag {
        display: none !important;
    }

    .cta-text-container {
        width: 100%;
        order: 2;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .cta-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .btn-contact {
        width: 100%;
        max-width: 300px;
    }

    .stat-bubble {
        transform: scale(0.58);
    }

    .b1 {
        left: -35px;
        top: -15px;
    }

    .b2 {
        right: -35px;
        top: 0%;
    }

    .b3 {
        left: -40px;
        bottom: 25%;
    }

    .b4 {
        right: -40px;
        bottom: 15%;
    }
}

/* ==========================================================================
   10. FOOTER MINIMALISTA
   ========================================================================== */
.footer-wrapper-center {
    width: 100%;
    margin-top: 60px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
}

.minimal-footer-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    box-sizing: border-box;
}

.footer-left {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #888888;
}

.footer-garra-link {
    color: #888888;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-garra-link:hover {
    color: #333333;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    color: #888888;
    font-size: 1.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.footer-right a:hover {
    color: #333333;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE COMPLETA (< 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .dynamic-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        order: 2;
    }

    .hero-visuals {
        order: 1;
        margin-bottom: 20px;
    }

    .photo-cluster {
        width: 320px;
        height: 340px;
    }

    .photo-main {
        width: 62% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 3;
    }

    .photo-sec-1 {
        display: block !important;
        width: 48% !important;
        left: 2% !important;
        z-index: 2;
    }

    .photo-sec-2 {
        display: block !important;
        width: 45% !important;
        right: 2% !important;
        z-index: 1;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 15px;
    }

    .profile-manifesto-grid,
    .manifesto-header-row,
    .data-section-container,
    .main-hero-wrapper,
    .hero-content-limit {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .manifesto-text-container,
    .cta-text-container {
        text-align: center;
        align-items: center;
    }

    .pre-title {
        justify-content: center;
        flex-direction: row;
    }

    .visual-section-container {
        width: 100%;
        height: 350px;
        margin-bottom: 20px;
    }

    .minimal-footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-drag-hint {
        display: block;
        width: max-content;
        margin: 20px auto 10px;
        background: #ffffff;
        border: 2px solid var(--h-text);
        padding: 6px 16px;
        font-family: var(--font-display);
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--h-text);
        box-shadow: 4px 4px 0px var(--h-orange);
        transform: rotate(-3deg);
        z-index: 15;
        position: relative;
    }

    .swiper-button-nextSOLID,
    .swiper-button-prevSOLID,
    .nav-btn {
        display: none !important;
    }
}