/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    overflow-x: hidden;
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    color: #ffffff;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    min-height: 100%;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'sans-serif', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.body-default {
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    position: relative;
}

.body-default::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(233, 76, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 76, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(233, 76, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 76, 98, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

a {
    color: #091A26;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #E94C62;
}

/* Typography - Inspirado na Muevo */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 200;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* Layout Components - Inspirado na Muevo */
.page-wrap {
    position: relative;
    overflow: hidden;
}

.padding-global {
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
}

.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.spacing-medium {
    height: clamp(4rem, 8vw, 8rem);
}

.spacing-large {
    height: clamp(6rem, 12vw, 12rem);
}

.spacing-small {
    height: clamp(2rem, 4vw, 4rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 76, 98, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.navbar-component {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-label-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo-link {
    display: block;
    width: 9vw;
    position: relative;
    overflow: hidden;
}

.nav-logo {
    width: 100%;
    height: auto;
    filter: brightness(1) drop-shadow(0 2px 8px rgba(233, 76, 98, 0.2));
}

/* Responsive logo sizes */
/* Tablet */
@media (max-width: 991px) {
    .nav-logo-link {
        width: 12vw !important;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .nav-logo-link {
        width: 16vw !important;
    }
}

/* Mobile Small */
@media (max-width: 479px) {
    .nav-logo-link {
        width: 19vw !important;
    }
}





.normal-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
}

.normal-text.is-gray {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menulink-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Menu Mobile Styles */
@media screen and (max-width: 767px) {
    .nav-menulink-wrap.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(9, 26, 38, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 5rem 2rem;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .nav-menulink-wrap.is-open .nav-menulink {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
}

.nav-menulink {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menulink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #de3447, #c42d40);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menulink:hover::after {
    width: 100%;
}

.nav-menulink:hover {
    transform: translateY(-1px);
}

.nav-menulink:hover .normal-text {
    color: #E94C62;
}

.nav-menulink.is-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.875rem 1rem;
    border: 1px solid #de3447;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nav-menulink.is-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-menulink.is-cta:hover::before {
    left: 100%;
}

.nav-menulink.is-cta:hover {
    background: #de3447;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(233, 76, 98, 0.4);
}

.nav-menulink.is-cta:hover .normal-text {
    color: #091A26 !important;
}

.nav-menulink.is-cta::after {
    display: none;
}

.cta-icon {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
}

.normal-text.is-link.is-cta {
    text-align: center;
    display: inline-block;
    margin: 0;
}

.nav-menulink.is-cta:hover .cta-icon {
    transform: translateX(4px);
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(233, 76, 98, 0.1);
    border: 1px solid rgba(233, 76, 98, 0.2);
    z-index: 1001;
    /* Ensure it's above the menu overlay */
}

.nav-menu-toggle:hover {
    background: rgba(233, 76, 98, 0.2);
}

.nav-menu-toggle.is-active {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(233, 76, 98, 0.3);
}

.nav-menu-icon {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
    position: relative;
}

.nav-menu-toggle.is-active .nav-menu-icon {
    background: transparent;
}

.nav-menu-icon::before,
.nav-menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-menu-icon::before {
    top: -8px;
}

.nav-menu-icon::after {
    top: 8px;
}

.nav-menu-toggle.is-active .nav-menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-menu-toggle.is-active .nav-menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    overflow: hidden;
    padding: 4rem 0 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(233, 76, 98, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(233, 76, 98, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
    opacity: 0.8;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-component {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(2rem, 4vw, 4rem) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.h1title-div {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    overflow: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 8px 32px rgba(233, 76, 98, 0.2);
    position: relative;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    word-spacing: 0.03em;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitlehero-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 900px;
}

.mask-text {
    overflow: hidden;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.line-wrap {
    position: relative;
    height: 3px;
    margin: 1.5rem 0;
    width: clamp(300px, 40vw, 400px);
    overflow: hidden;
}

.line-wrap.is-centered {
    justify-content: center;
}

.line-wrap.left {
    justify-content: flex-start;
}

.orange-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.gray-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #de3447 0%, #c42d40 70%, transparent 100%);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

.outline-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1.2rem, 3vw, 1.8rem) clamp(2.5rem, 5vw, 3.5rem);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    color: #E94C62;
    font-weight: 400;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.outline-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.8s ease;
}

.outline-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(233, 76, 98, 0.3), transparent, rgba(233, 76, 98, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.outline-button:hover {
    border-color: rgba(233, 76, 98, 0.6);
    color: #E94C62;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 76, 98, 0.4), 0 5px 15px rgba(233, 76, 98, 0.2);
    background: rgba(233, 76, 98, 0.05);
}

.outline-button:hover::before {
    left: 100%;
}

.outline-button:hover::after {
    opacity: 1;
}

.outline-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Showcase Section */
.showcase-section {
    padding: clamp(10rem, 15vw, 12rem) 0;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(233, 76, 98, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(233, 76, 98, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.005) 50%, transparent 100%);
    pointer-events: none;
}

.showcase-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(233, 76, 98, 0.3), transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.showcase-component {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(233, 76, 98, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    z-index: 2;
}

.showcase-component:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(233, 76, 98, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.showcase-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
}

.showcase-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    display: block !important;
    transition: transform 0.4s ease;
}

.showcase-video:hover iframe {
    transform: scale(1.02);
}

.embed-main-video {
    width: 100%;
    height: 100%;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.showcase-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.showcase-video:hover video {
    transform: scale(1.02);
}

/* Projects Section */
.projects-section {
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    padding: clamp(10rem, 15vw, 14rem) 0;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(233, 76, 98, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(233, 76, 98, 0.02) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.005) 50%, transparent 70%);
    pointer-events: none;
}

.projects-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 100px,
            rgba(233, 76, 98, 0.01) 101px,
            rgba(233, 76, 98, 0.01) 102px);
    pointer-events: none;
}

.projects-component {
    width: 100%;
    position: relative;
    z-index: 2;
}

.projects-headline-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.h2.is-project {
    color: #091A26;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 200;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(233, 76, 98, 0.25);
    letter-spacing: -0.03em;
}

.grid-reel-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    align-items: start;
}

.reel-categories-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
}

.reel-categories-wrap.is-down {
    margin-top: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.reel-internal-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    backdrop-filter: blur(20px);
    aspect-ratio: 16/9;
    min-height: 300px;
    width: 100%;
}

.reel-internal-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(233, 76, 98, 0.2), transparent, rgba(233, 76, 98, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reel-internal-wrap:hover {
    box-shadow:
        0 0 0 2px #de3447,
        0 0 20px rgba(233, 76, 98, 0.8),
        0 0 40px rgba(233, 76, 98, 0.6),
        0 0 60px rgba(233, 76, 98, 0.4);
    border-color: rgba(233, 76, 98, 0.4);
    background: rgba(255, 255, 255, 0.025);
    z-index: 10;
}

.reel-internal-wrap:hover::before {
    opacity: 1;
}

.embed-videoreel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    background: linear-gradient(135deg, #0a0a0a, #000000);
}

.embed-videoreel>div {
    width: 100%;
    height: 100%;
    position: relative;
}

.embed-videoreel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0px;
    transition: all 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    display: block !important;
}

.embed-videoreel:hover iframe {
    transform: scale(1.05);
}

.reel-desc-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 3rem 2rem 2rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.reel-name-category {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}



.fade-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(233, 76, 98, 0);
    transition: background-color 0.3s ease;
}

.fade-link:hover {
    background: rgba(233, 76, 98, 0.1);
}

/* Motion IA ocupa 2 colunas (largura dupla) */
.reel-internal-wrap.is-wide {
    grid-column: span 2;
}



/* About Section */
.about-section {
    padding: clamp(8rem, 15vw, 12rem) 0;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
}

.about-component {
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 8vw, 6rem);
}

.about-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.about-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description {
    color: #556A77;
    line-height: 1.6;
}

.about-description.large {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #091A26;
    margin-bottom: 1rem;
}

.about-stats-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    border-radius: 16px;
    border: 1px solid #333;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: rgba(255, 68, 5, 0.05);
    border: 1px solid rgba(255, 68, 5, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(255, 68, 5, 0.1);
    border-color: rgba(255, 68, 5, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #E94C62;
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .about-content-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-wrap {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        padding: 1rem;
    }
}


transition: transform 0.6s ease;
}

/* Services Section */
.services-section {
    padding: clamp(8rem, 15vw, 12rem) 0;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(233, 76, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.services-component {
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 8vw, 6rem);
    position: relative;
    z-index: 2;
}

.services-headline-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.headline-content {
    overflow: hidden;
}

.h2.is-service {
    color: #091A26;
    font-weight: 200;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(233, 76, 98, 0.25);
    letter-spacing: -0.03em;
}

.grid-services-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media screen and (max-width: 767px) {
    .grid-services-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-internal-wrap {
        max-width: 100%;
    }

    .service-image {
        height: 180px;
    }
}

@media screen and (max-width: 479px) {
    .grid-services-categories {
        gap: 1.25rem;
    }

    .service-image {
        height: 160px;
    }
}

.service-categories-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-categories-wrap.is-down {
    margin-top: 4rem;
}

.service-internal-wrap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-internal-wrap:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(233, 76, 98, 0.3), 0 0 40px rgba(233, 76, 98, 0.15);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-internal-wrap:hover .service-image img {
    transform: scale(1.05);
}

.service-desc-wrap {
    padding: 2rem;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
}

.service-name-category {
    color: #091A26;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.fade-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Brands Section */
.jobs-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.services-component {
    position: relative;
    z-index: 2;
}

.brands-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.h2-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.side-side-div {
    text-align: center;
}

.mask-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 2rem;
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.01) 50%,
            rgba(205, 49, 66, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
    align-items: center;
    justify-items: center;
}

.brand-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(205, 49, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.logo-brand,
.logo-bigger,
.logo-smaller {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: auto;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.3) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    will-change: transform, filter, opacity;
}

.logo-bigger {
    height: 70px;
}

.logo-smaller {
    height: 50px;
}

.brand-logos img:hover {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 35px rgba(205, 49, 66, 0.15);
}

.brand-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.95) 0%,
            transparent 20%,
            transparent 80%,
            rgba(10, 10, 10, 0.95) 100%);
    pointer-events: none;
    z-index: 3;
    border-radius: 24px;
}

.brand-button-wrap {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 4;
}

.outline-button.is-percent.is-20.is-buttonbrand {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.outline-button.is-percent.is-20.is-buttonbrand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(205, 49, 66, 0.1) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.outline-button.is-percent.is-20.is-buttonbrand:hover {
    border-color: rgba(205, 49, 66, 0.4);
    color: #E94C62;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 49, 66, 0.2),
        0 0 20px rgba(205, 49, 66, 0.1);
    background: linear-gradient(135deg,
            rgba(205, 49, 66, 0.08) 0%,
            rgba(205, 49, 66, 0.04) 100%);
}

.outline-button.is-percent.is-20.is-buttonbrand:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
    position: relative;
    padding: 4rem 0 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 68, 5, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-component {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    max-width: 25%;
    height: 25%;
}

.footer-main-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .footer-main-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-column.is-main {
        align-items: center;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media screen and (max-width: 479px) {
    .footer-main-wrap {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }
}

.footer-column.is-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-lootie {
    margin-bottom: 1rem;
}

.footer .footer-logo-img {
    max-width: 110px;
    height: auto;
    filter: none !important;
    opacity: 1 !important;
    -webkit-filter: none !important;
}

.h1.in-footer {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.footer-column.is-main .normal-text.medium {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column.is-main .normal-text.medium:hover {
    color: #E94C62;
}

.socials-wrap {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 767px) {
    .socials-wrap {
        justify-content: center;
    }

    .h1.in-footer {
        font-size: 2.5rem;
    }

    .footer .footer-logo-img {
        max-width: 180px;
    }
}

@media screen and (max-width: 479px) {
    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .h1.in-footer {
        font-size: 2rem;
    }

    .footer .footer-logo-img {
        max-width: 160px;
    }
}

.social-link:hover {
    background: rgba(255, 68, 5, 0.2);
    border-color: rgba(255, 68, 5, 0.5);
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-2column-wrap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-infos-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media screen and (max-width: 767px) {
    .footer-infos-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-content-wrap {
        align-items: center;
    }

    .footer-copyright-wrap {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .normal-text.is-footer {
        text-align: center;
    }
}

@media screen and (max-width: 479px) {
    .footer-infos-wrap {
        gap: 1.25rem;
    }

    .footer-copyright-wrap {
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }
}

.footer-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.h2.in-footer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E94C62;
    margin-bottom: 0.5rem;
}

.footer-content-wrap .normal-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.wraplink-end {
    display: inline-block;
    transition: all 0.3s ease;
}

.wraplink-end:hover {
    transform: translateY(-2px);
}

.end-to-end-icon {
    max-width: 120px;
    height: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.wraplink-end:hover .end-to-end-icon {
    filter: brightness(1);
}

.footer-copyright-wrap {
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-line-wrap {
    position: relative;
    height: 1px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.footer-white-line-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-opacity-line-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, #cd3142 0%, transparent 100%);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.normal-text.is-footer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.5;
}

/* WhatsApp Button */
.main-cta-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: background-color 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

@media screen and (max-width: 767px) {
    .main-cta-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 479px) {
    .main-cta-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 25px;
        height: 25px;
    }
}

.main-cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Ondas pulsantes */
.main-cta-button::before,
.main-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 2px solid #25d366;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    animation: whatsappPulse 1.5s infinite;
    z-index: 0;
    transition: border-color 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

.main-cta-button::after {
    animation-delay: 0.75s;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

/* Animação de pulsação do WhatsApp */
@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Alteração de cor no footer */
.footer-active .main-cta-button::before,
.footer-active .main-cta-button::after {
    border-color: #FFFFFF;
}

.footer-active .main-cta-button {
    background-color: #111;
}

/* Scroll Fix for All Sections */
* {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.projects-section,
.about-section,
.contact-section {
    scroll-margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Projects Section - Media Queries */
@media (max-width: 991px) {
    .padding-global {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .grid-reel-categories {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reel-categories-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .reel-categories-wrap.is-down {
        margin-top: 0;
    }

    .h2.is-project {
        font-size: 2.5rem;
    }

    .projects-headline-wrap {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .embed-videoreel {
        height: 250px;
    }

    .reel-internal-wrap {
        min-height: 250px;
    }

    .grid-services-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-categories-wrap.is-down {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .projects-headline-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .h2.is-project {
        font-size: 2rem;
    }

    .reel-categories-wrap {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .embed-videoreel {
        height: 200px;
    }

    .reel-internal-wrap {
        min-height: 200px;
    }

    /* Em mobile, Motion IA volta a ocupar 1 coluna */
    .reel-internal-wrap.is-wide {
        grid-column: span 1;
    }

    .reel-name-category {
        font-size: 1.2rem;
    }

    .reel-desc-wrap {
        padding: 1.5rem 1rem 1rem;
    }
}

@media (max-width: 479px) {
    .projects-section {
        padding: 3rem 0;
    }

    .h2.is-project {
        font-size: 1.8rem;
    }

    .reel-categories-wrap {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .embed-videoreel {
        height: 180px;
    }

    .reel-internal-wrap {
        min-height: 180px;
    }
}

/* Projects Grid Styles */
.projects-grid-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
        align-items: start;
        justify-items: center;
    }

    @media screen and (max-width: 767px) {
        .projects-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
    }

    @media screen and (max-width: 479px) {
        .projects-grid {
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
    }

    .project-item {
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        max-width: 450px;
        min-height: 400px;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .project-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(233, 76, 98, 0.25), 0 0 25px rgba(233, 76, 98, 0.08);
    }

    .project-image {
        width: 100%;
        overflow: hidden;
    }

    .project-info {
        padding: 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .project-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 0.5rem 0;
    }

    .project-category {
        font-size: 1rem;
        color: #cd3142;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* About Section Styles */
    .about-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        position: relative;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(233, 76, 98, 0.07) 0%, transparent 65%);
        pointer-events: none;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .about-text-wrap h2 {
        color: #ffffff;
        margin-bottom: 2rem;
    }

    .about-text-wrap .normal-text.large {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .about-text-wrap .normal-text {
        color: #556A77;
        line-height: 1.6;
    }



    /* Team Section Styles */
    .team-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        position: relative;
    }

    .team-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 60% 40%, rgba(233, 76, 98, 0.08) 0%, transparent 65%);
        pointer-events: none;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }

    .team-member {
        text-align: center;
    }

    .member-image {
        margin-bottom: 2rem;
    }

    .member-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 0.5rem 0;
    }

    .member-role {
        font-size: 1rem;
        color: #cd3142;
        margin: 0 0 1rem 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .member-desc {
        color: #556A77;
        line-height: 1.6;
        margin: 0;
    }

    /* Section Header Styles */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .h2.centered {
        text-align: center;
        color: #ffffff;
    }

    /* Responsive Design */
    @media screen and (max-width: 991px) {
        .padding-global {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .nav-menulink-wrap {
            gap: 1.5rem;
        }

        .grid-services-categories {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .service-categories-wrap.is-down {
            margin-top: 0;
        }

        .footer-main-wrap {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .projects-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            justify-items: center;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .team-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .brand-logos {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2.5rem 1.5rem;
            padding: 3rem 1.5rem;
        }

        .logo-brand,
        .logo-bigger,
        .logo-smaller {
            height: 50px;
        }

        .logo-bigger {
            height: 55px;
        }

        .logo-smaller {
            height: 45px;
        }
    }

    @media screen and (max-width: 767px) {
        .padding-global {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        .nav-menulink-wrap {
            display: none;
        }

        .nav-menu-toggle {
            display: flex;
        }

        .hero-title {
            font-size: clamp(1.8rem, 5vw, 2.4rem);
            line-height: 1.3;
            text-align: center;
            max-width: 100%;
            letter-spacing: -0.01em;
            word-spacing: 0.02em;
            margin-bottom: 1.5rem;
        }

        .hero-desc {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .outline-button {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }

        .spacing-medium {
            height: 3rem;
        }

        .spacing-small {
            height: 1.5rem;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3rem);
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2rem);
        }

        .normal-text {
            font-size: 1rem;
            line-height: 1.5;
        }
    }

    @media screen and (max-width: 991px) {
        .hero-title {
            font-size: clamp(1.8rem, 4.2vw, 2.8rem);
            line-height: 1.35;
            letter-spacing: -0.015em;
            word-spacing: 0.025em;
        }

        .hero-desc {
            font-size: 1rem;
            padding: 0 1rem;
        }

        .h2.is-project {
            font-size: 2rem;
        }

        .projects-section {
            padding: 4rem 0;
        }

        .services-section {
            padding: 4rem 0;
        }

        .grid-reel-categories {
            gap: 2rem;
        }

        .reel-internal-wrap:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .showcase-video {
            height: 40vh;
            min-height: 300px;
        }

        .service-image {
            height: 200px;
        }

        .service-desc-wrap {
            padding: 1.5rem;
        }

        .client-logos {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .logo-client {
            width: 80px;
            height: 40px;
        }

        .main-cta-button {
            width: 50px;
            height: 50px;
            bottom: 1.5rem;
            right: 1.5rem;
        }

        .whatsapp-icon {
            width: 25px;
            height: 25px;
        }

        .brand-logos {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 2rem 1rem;
            padding: 2.5rem 1rem;
            border-radius: 16px;
        }

        .logo-brand,
        .logo-bigger,
        .logo-smaller {
            height: 40px;
        }

        .logo-bigger {
            height: 45px;
        }

        .logo-smaller {
            height: 35px;
        }

        .brands-wrap {
            gap: 2rem;
        }

        .brand-logos {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem 1.5rem;
            padding: 2rem 1.5rem;
        }

        .logo-brand,
        .logo-bigger,
        .logo-smaller {
            height: 50px;
        }

        .logo-bigger {
            height: 55px;
        }

        .logo-smaller {
            height: 45px;
        }

        .brand-button-wrap {
            margin-top: 2rem;
        }

        .outline-button.is-percent.is-20.is-buttonbrand {
            padding: 0.875rem 2rem;
            font-size: 14px;
        }

        .footer-main-wrap {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-infos-wrap {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cta-component {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }

        .projects-grid {
            grid-template-columns: 1fr;
            justify-items: center;
        }

        .grid-services-categories {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    @media screen and (max-width: 479px) {
        .padding-global {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .spacing-medium {
            height: 2rem;
        }

        .spacing-small {
            height: 1rem;
        }

        .h1.in-footer {
            font-size: 2rem;
        }

        .footer-infos-wrap {
            gap: 1.5rem;
        }

        .client-logos {
            grid-template-columns: repeat(2, 1fr);
        }

        .hero-title {
            font-size: clamp(1.6rem, 4.5vw, 2rem);
            line-height: 1.25;
            margin-bottom: 1.25rem;
        }

        .hero-desc {
            font-size: 1rem;
            line-height: 1.4;
            margin-bottom: 1.25rem;
        }

        .outline-button {
            padding: 0.75rem 1.75rem;
            font-size: 0.9rem;
        }

        h2 {
            font-size: clamp(1.75rem, 4.5vw, 2.5rem);
        }

        h3 {
            font-size: clamp(1.25rem, 3.5vw, 1.75rem);
        }

        .container {
            max-width: 100%;
        }

        .section-title {
            margin-bottom: 1.5rem;
        }
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        color: #091A26;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-component {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .cta-content {
        max-width: 500px;
    }

    .cta-header .h1 {
        font-size: 56px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #fff 0%, #cd3142 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-header .normal-text {
        font-size: 20px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 50px;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 18px 36px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cta-button.primary {
        background: linear-gradient(135deg, #cd3142 0%, #cd3142 100%);
        color: #091A26;
        box-shadow: 0 10px 30px rgba(255, 68, 5, 0.3);
    }

    .cta-button.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 68, 5, 0.4);
    }

    .cta-button.secondary {
        background: transparent;
        color: #091A26;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
    }

    .button-arrow {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .cta-button.primary:hover .button-arrow {
        transform: translateX(5px);
    }

    .cta-visual {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-gradient-orb {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 68, 5, 0.3) 0%, rgba(255, 68, 5, 0.1) 50%, transparent 100%);
        border-radius: 50%;
        position: absolute;
        animation: float 6s ease-in-out infinite;
        filter: blur(1px);
    }

    .cta-grid-pattern {
        width: 100%;
        height: 100%;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
        position: absolute;
        opacity: 0.3;
        animation: gridMove 20s linear infinite;
    }

    @keyframes float {

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

        50% {
            transform: translateY(-20px) scale(1.05);
        }
    }

    @keyframes gridMove {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(30px, 30px);
        }
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, rgba(255, 68, 5, 0.1) 0%, transparent 70%);
        z-index: 1;
    }

    /* Contact Form Section Styles */
    .form-section {
        padding: clamp(8rem, 15vw, 12rem) 0;
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        position: relative;
    }

    .form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(233, 76, 98, 0.09) 0%, transparent 60%);
        pointer-events: none;
    }

    .form-component-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }

    .form-call-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-title.is-contact {
        font-size: clamp(3rem, 8vw, 5rem);
        font-weight: 300;
        line-height: 1.1;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
    }

    .ilustr-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 200px;
        position: relative;
    }

    .ilustr-contact svg {
        width: 100%;
        height: 100%;
        animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {

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

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

    .form-main-wrap {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .call-title {
        font-size: 2rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        line-height: 1.2;
    }

    .line-wrap.left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .orange-line {
        width: 60px;
        height: 2px;
        background: #de3447;
    }

    .gray-line {
        width: 120px;
        height: 1px;
        background: rgba(233, 76, 97, 0.541);
    }

    .normal-text.is-orange {
        color: #E94C62;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }

    .span-white {
        color: #ffffff;
    }

    .form-component {
        width: 100%;
        margin-top: 2rem;
    }

    .form-fields-wrap {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-unique-wrap {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .field-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }

    .field {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .field:focus {
        outline: none;
        border-color: #E94C62;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 2px rgba(233, 76, 98, 0.2);
    }

    .field::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .field.is-message {
        min-height: 120px;
        resize: vertical;
    }

    .form-dropdown {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: inherit;
        cursor: pointer;
    }

    .form-dropdown:focus {
        outline: none;
        border-color: #de3447;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 2px rgba(233, 76, 98, 0.2);
    }

    .form-dropdown option {
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        color: #ffffff;
    }

    .form-button {
        background: #de3447;
        color: #ffffff;
        border: none;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 1rem;
        align-self: flex-start;
    }

    .form-button:hover {
        background: #cd3142;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(233, 76, 98, 0.3);
    }

    .success-message,
    .error-message {
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        font-weight: 500;
    }

    .success-message {
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
        color: #22c55e;
    }

    .error-message {
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.3);
        color: #ef4444;
    }

    .span-orange {
        color: #de3447;
    }

    /* Contact Section Styles */
    .contact-section {
        padding: clamp(8rem, 15vw, 12rem) 0;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
        position: relative;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(233, 76, 98, 0.09) 0%, transparent 60%);
        pointer-events: none;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }

    .contact-info h2 {
        color: #ffffff;
        margin-bottom: 3rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: #1a1a1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-details h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 0.5rem 0;
    }

    .contact-details p,
    .contact-details a {
        color: #556A77;
        text-decoration: none;
        margin: 0;
        transition: color 0.3s ease;
    }

    .contact-details a:hover {
        color: #cd3142;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        color: #556A77;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .social-links a:hover {
        color: #cd3142;
    }

    /* Contact Form Styles */
    .contact-form-wrap h2 {
        color: #ffffff;
        margin-bottom: 2rem;
    }

    .contact-form {
        background: #1a1a1a;
        padding: 3rem;
        border-radius: 12px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-field {
        margin-bottom: 1.5rem;
    }

    .form-field label {
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #091A26 0%, #000000 100%);
        border: 1px solid #333333;
        border-radius: 8px;
        color: #ffffff;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
        outline: none;
        border-color: #de3447;
    }

    .form-field textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: #556A77;
    }

    .form-submit-btn {
        background: #cd3142;
        color: #ffffff;
        border: none;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-submit-btn:hover {
        background: #cd3142;
        transform: translateY(-2px);
    }

    /* Contact Responsive */
    @media screen and (max-width: 991px) {
        .contact-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-form {
            padding: 2rem;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    }

    @media screen and (max-width: 767px) {
        .contact-section {
            padding: 3rem 0;
        }

        .contact-item {
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
        }

        .contact-form {
            padding: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .cta-component {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }

        .cta-header .h1 {
            font-size: 42px;
        }

        .cta-header .normal-text {
            font-size: 18px;
        }

        .cta-buttons {
            justify-content: center;
        }

        .cta-button {
            padding: 16px 32px;
            font-size: 15px;
        }

        .cta-visual {
            height: 300px;
        }

        .cta-gradient-orb {
            width: 200px;
            height: 200px;
        }
    }

    /* Contact Form Responsive */
    @media screen and (max-width: 991px) {
        .form-component-wrap {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .form-call-wrap {
            text-align: center;
            align-items: center;
        }

        .hero-title.is-contact {
            font-size: clamp(2.5rem, 6vw, 4rem);
        }

        .ilustr-contact {
            width: 150px;
            height: 150px;
        }
    }

    @media screen and (max-width: 767px) {
        .form-section {
            padding: 3rem 0;
        }

        .form-component-wrap {
            gap: 2rem;
        }

        .call-title {
            font-size: 1.5rem;
        }

        .normal-text.is-orange {
            font-size: 1rem;
        }

        .form-button {
            width: 100%;
            align-self: stretch;
        }

        .ilustr-contact {
            width: 120px;
            height: 120px;
        }
    }

    @media screen and (max-width: 479px) {
        .form-section {
            padding: 2rem 0;
        }

        .hero-title.is-contact {
            font-size: 2rem;
        }

        .call-title {
            font-size: 1.25rem;
        }

        .field,
        .form-dropdown {
            padding: 0.875rem;
        }

        .form-button {
            padding: 0.875rem 1.5rem;
        }

        .contact-section {
            padding: 2rem 0;
        }

        .social-links {
            flex-direction: column;
            gap: 0.5rem;
        }
    }