:root {
    --primary-color: #1a1a1a;
    --accent-color: #242e16;
    --text-color: #333;
    --secondary-color: #111111;
    --tertiary-color: #f4f0ea;
    --background-color: #ffffff;
    --light-text: #ffffff;
    --dark-text: #000;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

body {
    background-color: #000;
    color: #fff;
}

main {
    margin: 0;
    padding: 0;
}

/* ========================================
   HEADER — Menu Split Editorial
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3rem;
    background-color: transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled .logo-text {
    color: #1a1a1a;
}

.header.scrolled .nav-links a {
    color: #1a1a1a;
}

.header.scrolled .nav-divider {
    background-color: rgba(26, 26, 26, 0.2);
}

.header.scrolled .menu-toggle span {
    background-color: #1a1a1a;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo em texto */
.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.logo-media {
    font-weight: 400;
    opacity: 0.7;
}

/* Links de navegação com divisores */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.2rem;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.5;
}

.nav-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

/* Dropdown de serviços */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.8rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem !important;
    color: #1a1a1a !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background-color: rgba(36, 46, 22, 0.08);
    opacity: 1 !important;
}

/* Dropdown no estado scrolled */
.header.scrolled .nav-dropdown-menu {
    background-color: rgba(255, 255, 255, 0.98);
}

/* Menu hambúrguer — escondido no desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 16px;
    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:last-child {
    bottom: 0;
}

.menu-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   HEADER — Mobile
   ======================================== */
@media (max-width: 768px) {
    .header {
        padding: 1.2rem 1.5rem;
    }

    .header.menu-active {
        background-color: #1a1a1a;
    }

    .header.menu-active .logo-text {
        color: #fff;
    }

    .header.menu-active .menu-toggle span {
        background-color: #fff;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #1a1a1a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: #fff;
        padding: 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(7) { transition-delay: 0.25s; }

    .nav-divider {
        display: none;
    }

    /* Dropdown no mobile */
    .nav-dropdown {
        flex-direction: column;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0;
        min-width: auto;
    }

    .nav-dropdown-menu a {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 1rem !important;
        padding: 0.4rem 1rem !important;
        text-align: center;
    }

    .nav-dropdown-menu a:hover {
        background-color: transparent;
        color: #fff !important;
    }

    .nav-links.active .nav-dropdown {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.15s;
    }

    .nav-links.active .nav-dropdown-menu a {
        opacity: 1;
        transform: none;
    }
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.logo-link {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-link:hover h1 {
    color: var(--accent-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease forwards;
}

.main-nav .dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.main-nav .dropdown-content a:hover {
    background-color: var(--background-color);
    color: var(--accent-color);
    padding-left: 2rem;
}

.main-nav .dropdown > a::after {
    content: '▼';
    font-size: 0.8em;
    margin-left: 0.5em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.main-nav .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.bookings-banner {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* Services Section */
.services-section {
    padding: 0;
    background: var(--background-color);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    position: relative;
    padding-left: 2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background-color: var(--text-color);
    opacity: 0.7;
}

.services-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.services-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.service-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.service-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.service-content h2.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.service-content p.visible {
    transform: translateY(0);
    opacity: 1;
}

.explore-btn {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.explore-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

.explore-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF8C00;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    background-color: #111111;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.footer-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer h1 {
    font-size: 8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.02em;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .footer h1 {
        font-size: 4rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
}

.contact-item a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--light-text);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--tertiary-color);
}

/* Clients Section */
.clients-section {
    padding: 6rem 0rem;
    background-color: var(--tertiary-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

/* Minimal variant */
.clients-section-minimal {
    background-color: #242e16;
    padding: 2.5rem 0 2rem;
}

.clients-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.clients-section-minimal .clients-title {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.clients-header {
    max-width: 1200px;
    margin-bottom: 4rem;
}

.clients-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.clients-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.clients-header p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--primary-color);
    max-width: 500px;
    margin: 0;
    padding: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ajuste para slides com 3 logos */
.clients-grid:has(.client-logo:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

/* Ajuste para slides com 2 logos */
.clients-grid:has(.client-logo:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
}

/* Fallback para navegadores sem suporte a :has() */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0);
}

.client-logo:hover {
    transform: translateY(-5px);
}

/* Carousel de rolagem automática infinita (Marquee) - Duas linhas */
.clients-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.clients-section {
    overflow: hidden;
    position: relative;
}

.clients-marquee {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    will-change: transform;
    margin-bottom: 5rem;
}

.clients-marquee:last-child {
    margin-bottom: 0;
}

/* Linha 1: Rola para direita */
.clients-marquee-right {
    animation: clients-marquee-right 40s linear infinite;
}

/* Linha 2: Rola para esquerda */
.clients-marquee-left {
    animation: clients-marquee-left 40s linear infinite;
}

.clients-marquee .client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px; /* Altura fixa do container */
    width: 200px; /* Largura fixa do container */
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

.clients-marquee .client-logo img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Minimal clients section overrides */
.clients-section-minimal .clients-marquee .client-logo {
    height: 55px;
    width: 140px;
    padding: 0.3rem 0.8rem;
}

.clients-section-minimal .clients-marquee .client-logo img {
    max-width: 120px;
    max-height: 45px;
    opacity: 0.3;
    filter: brightness(0) invert(1);
}

.clients-section-minimal .clients-marquee .client-logo:hover img {
    opacity: 0.7;
}

.clients-section-minimal .clients-marquee {
    margin-bottom: 1.5rem;
}

.clients-marquee .client-logo:hover img {
    transform: scale(1.1);
}

/* Pausar animação ao passar o mouse sobre o container */
.clients-marquee-container:hover .clients-marquee-right,
.clients-marquee-container:hover .clients-marquee-left {
    animation-play-state: paused;
}

/* Animação para direita (linha 1) */
@keyframes clients-marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Animação para esquerda (linha 2) */
@keyframes clients-marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Compatibilidade com ugc-clients-section */
.ugc-clients-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.ugc-clients-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.ugc-clients-container h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .header-top {
        padding: 2rem;
    }

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

    .service-item {
        gap: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }

    .services-section {
        padding: 2rem 1rem;
    }

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

    .service-item,
    .service-item:nth-child(2n) {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .service-content p {
        max-width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .service-content h2 {
        font-size: 2.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .explore-btn {
        font-size: 1rem;
    }

    .cases-section {
        padding: 3rem 0;
    }

    .cases-container {
        padding: 0 1rem;
    }

    .cases-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .clients-section {
        padding: 3rem 1rem;
    }

    .clients-section-minimal {
        padding: 2rem 0 1.5rem;
    }

    .clients-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .clients-section-minimal .clients-title {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .clients-section-minimal .clients-marquee .client-logo {
        height: 40px;
        width: 100px;
    }

    .clients-section-minimal .clients-marquee .client-logo img {
        max-width: 85px;
        max-height: 35px;
    }

    .clients-marquee-container {
        padding: 1.5rem 0;
    }

    .clients-marquee {
        gap: 1rem;
        margin-bottom: 3rem;
        animation-duration: 30s;
    }

    .clients-marquee .client-logo {
        height: 50px;
        width: 120px;
        padding: 0.3rem 0.8rem;
    }

    .clients-marquee .client-logo img {
        max-width: 110px;
        max-height: 45px;
        width: auto;
        height: auto;
    }

    .clients-more-indicator {
        bottom: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
    }

    .clients-more-text {
        font-size: 0.75rem;
    }

    /* Estilo da seta indicativa */
    .scroll-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(0);
        }
        40% {
            transform: translateX(10px);
        }
        60% {
            transform: translateX(5px);
        }
    }
}

/* Esconder a seta na versão desktop */
@media (min-width: 769px) {
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .social-links {
        gap: 1.5rem;
    }
}

/* Estilos para a página de Influencer Marketing */
.influencer-section {
    padding: 8rem 2rem;
    min-height: calc(100vh - 200px);
}

/* Cases Grid Section */
.cases-grid-section {
    padding: 0;
    background-color: var(--background-color);
    position: relative;
}

.cases-grid-container {
    width: 100%;
    margin: 0;
}

.cases-grid-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem 2rem;
}

.cases-grid-header h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cases-grid-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.case-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 22px var(--shadow-color);
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover img {
    transform: scale(1.05);
}

.case-card:nth-child(4) {
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card:nth-child(5) {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card:nth-child(4) .case-content,
.case-card:nth-child(5) .case-content {
    color: var(--light-text);
}

.case-card .case-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.case-card .case-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--light-text);
}

.case-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.case-overlay p {
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-grid-section {
        padding: 4rem 1rem;
    }

    .cases-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 1rem 0;
    }

    .case-card {
        flex: 0 0 320px;
        width: 320px;
        height: 400px;
        scroll-snap-align: center;
        margin-right: 1rem;
        border-radius: 12px;
    }

    .case-card img,
    .case-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .case-card:last-child {
        margin-right: 0;
    }

    /* Indicadores de scroll */
    .scroll-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-bottom: 2rem;
    }

    .scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: background 0.3s ease;
    }

    .scroll-dot.active {
        background: #ffffff;
    }

    /* Esconder a barra de rolagem mas manter funcionalidade */
    .cases-grid::-webkit-scrollbar {
        display: none;
    }
    
    .cases-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .cases-grid-header h2 {
        font-size: 2.8rem;
    }

    .case-card {
        height: 300px;
    }
}

.influencer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.influencer-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: #888;
}

.service-item {
    text-align: left;
    padding: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #888;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .influencer-title {
        font-size: 3rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Metodologia Section */
.metodologia-section {
    padding: 3rem 2rem;
    background: var(--background-color);
    position: relative;
}

.metodologia-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.what-i-do {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.metodologia-item {
    padding: 1.5rem 2rem 1.5rem 0;
    position: relative;
}

.metodologia-item:nth-child(2n) {
    padding: 1.5rem 0 1.5rem 2rem;
}

.metodologia-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metodologia-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.7;
    max-width: 90%;
}

/* About Text Section */
.about-text-section {
    padding: 6rem 2rem;
    background-color: var(--tertiary-color);
    position: relative;
}

.about-text-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.about-text-title {
    flex: 1;
}

.about-text-title h2 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary-color);
    margin: 0;
}

.about-text-description {
    flex: 1;
}

.about-text-description p {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-color);
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .about-text-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text-title h2 {
        font-size: 3.5rem;
    }

    .about-text-description p {
        font-size: 1.5rem;
    }
}

/* Cases Section */
.cases-section {
    padding: 4rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cases-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.cases-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.cases-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.cases-track {
    display: flex;
    transition: transform 0.5s ease;
}

.case-item {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
}

.case-media {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    max-height: 400px;
}

.case-media img,
.case-media video {
    width: 100%;
    height: auto;
    display: block;
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-color);
}

.prev-case {
    left: 1rem;
}

.next-case {
    right: 1rem;
}

.carousel-indicators {
    display: none;
}

@media (max-width: 768px) {
    .case-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-media {
        max-height: 300px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
    }

    .carousel-indicators {
        display: flex;
    }
}

/* ========================================
   STORIES SECTION — Feedbacks, Mídia, Blog
   Estilo editorial/minimalista
   ======================================== */
.stories-section {
    padding: 6rem 2rem;
    background-color: var(--tertiary-color);
}

.stories-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.stories-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stories-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(26, 26, 26, 0.4);
}

/* --- Feedbacks (cards coloridos) --- */
.feedback-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feedback-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feedback-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feedback-card:hover {
    transform: translateY(-4px);
}

.feedback-card.visible:hover {
    transform: translateY(-4px);
}

/* Variantes de cor — paleta ORI */
.feedback-card--white {
    background-color: #ffffff;
}

.feedback-card--white .feedback-card-text,
.feedback-card--white .feedback-card-name {
    color: #1a1a1a;
}

.feedback-card--white .feedback-card-role {
    color: rgba(26, 26, 26, 0.5);
}

.feedback-card--white .feedback-card-logo img {
    filter: grayscale(100%);
    opacity: 0.7;
}

.feedback-card--dark {
    background-color: #1a1a1a;
}

.feedback-card--dark .feedback-card-text,
.feedback-card--dark .feedback-card-name {
    color: #ffffff;
}

.feedback-card--dark .feedback-card-role {
    color: rgba(255, 255, 255, 0.5);
}

.feedback-card--dark .feedback-card-logo img {
    filter: grayscale(100%) invert(1);
}

.feedback-card--green {
    background-color: #242e16;
}

.feedback-card--green .feedback-card-text,
.feedback-card--green .feedback-card-name {
    color: #ffffff;
}

.feedback-card--green .feedback-card-role {
    color: rgba(255, 255, 255, 0.5);
}

.feedback-card--green .feedback-card-logo img {
    filter: grayscale(100%) invert(1);
}

/* Nome da marca em texto */
.feedback-card-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    display: block;
}

.feedback-card--white .feedback-card-brand {
    color: #1a1a1a;
}

.feedback-card--dark .feedback-card-brand {
    color: #ffffff;
}

.feedback-card--green .feedback-card-brand {
    color: #ffffff;
}

.feedback-card-logo {
    height: 32px;
    margin-bottom: 2rem;
}

.feedback-card-logo img {
    height: 100%;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

.feedback-card-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.feedback-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feedback-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.feedback-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.feedback-card-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
}

.feedback-card-role {
    font-size: 0.8rem;
    color: rgba(26, 26, 26, 0.5);
}

/* Barra de progresso para navegação */
.feedback-nav {
    margin-top: 2rem;
}

.feedback-progress {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.feedback-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.feedback-progress-bar:hover {
    background: rgba(26, 26, 26, 0.2);
}

.feedback-progress-bar.active {
    background: var(--primary-color);
}

/* --- Seção Conteúdo: Na Mídia + Blog --- */
.content-section {
    padding: 6rem 5rem;
    background-color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.content-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Item estilo lista (Na Mídia) */
.content-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.content-item:hover {
    opacity: 0.7;
}

.content-thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.content-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
}

.content-date {
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-headline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.4;
}

/* Cards estilo Blog */
.content-items--cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.content-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    opacity: 0.7;
}

.content-card-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}

.content-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-card:hover .content-card-thumb img {
    transform: scale(1.03);
}

.content-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.content-card-info .content-date {
    font-size: 0.7rem;
}

.content-card-info .content-headline {
    font-size: 0.95rem;
}

/* --- Stories Section Responsivo --- */
@media (max-width: 1024px) {
    .feedback-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feedback-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .stories-section {
        padding: 4rem 1.5rem;
    }

    .stories-container {
        gap: 4rem;
    }

    .feedback-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feedback-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .feedback-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .feedback-card-text {
        font-size: 1rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

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

    .content-items--cards {
        grid-template-columns: 1fr;
    }

    .content-thumb {
        width: 100px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .feedback-card-text {
        font-size: 0.95rem;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .content-headline {
        font-size: 0.9rem;
    }

    .content-thumb {
        width: 80px;
        height: 55px;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    background-color: var(--tertiary-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

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

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(36, 46, 22, 0.75);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.member-photo:hover img {
    filter: grayscale(0%);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.member-role {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.linkedin-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
}

.linkedin-icon:hover {
    transform: translateY(-2px);
    color: #0077b5;
}

.linkedin-icon::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.linkedin-icon:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230077b5'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
}

.member-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* ========================================
   NÓS — Time + Na Mídia unificados
   ======================================== */
.nos-section {
    background-color: #f5f5f0;
    padding: 8rem 2rem;
}

.nos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* --- Label compartilhado --- */
.nos-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(26, 26, 26, 0.4);
    margin-bottom: 0.75rem;
}

/* --- Coluna esquerda: header + time --- */
.nos-header {
    margin-bottom: 3rem;
}

.nos-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--primary-color);
    margin: 0;
}

.nos-team {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.nos-member {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.nos-member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.nos-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.nos-member:hover .nos-member-photo img {
    filter: grayscale(0%);
}

.nos-member-info {
    flex: 1;
}

.nos-member-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.25rem;
}

.nos-member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.nos-linkedin {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.nos-linkedin:hover {
    opacity: 1;
}

.nos-member-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(26, 26, 26, 0.45);
    margin-bottom: 0.65rem;
}

.nos-member-exp {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: rgba(26, 26, 26, 0.35);
    margin-bottom: 0.65rem;
}

.nos-member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
}

/* --- Coluna direita: Na Mídia --- */
.nos-right {
    padding-top: 0.15rem; /* alinha visualmente com nos-label da esquerda */
}

.nos-media-header {
    margin-bottom: 1.5rem;
}

.nos-media-list {
    display: flex;
    flex-direction: column;
}

.nos-media-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.nos-media-item:last-child {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.nos-media-top {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.4rem;
}

.nos-media-source {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    transition: color 0.25s ease;
}

.nos-media-year {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.35);
    text-transform: uppercase;
}

.nos-media-title {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(26, 26, 26, 0.5);
    grid-column: 1;
    grid-row: 2;
    transition: color 0.25s ease;
}

.nos-media-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.2);
    transition: color 0.25s ease, transform 0.25s ease;
    align-self: center;
}

.nos-media-item:hover .nos-media-source {
    color: var(--accent-color);
}

.nos-media-item:hover .nos-media-title {
    color: rgba(26, 26, 26, 0.8);
}

.nos-media-item:hover .nos-media-arrow {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
    .nos-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 600px) {
    .nos-section {
        padding: 4rem 1.5rem;
    }

    .nos-title {
        font-size: 3.5rem;
    }

    .nos-member {
        gap: 1rem;
    }

    .nos-member-photo {
        width: 64px;
        height: 64px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .concepts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .concepts-grid {
        grid-template-columns: 1fr;
    }

    .case-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .nossa-alma-section,
    .metodologia-section,
    .cases-section,
    .team-section,
    .contact-section {
        padding: 3rem 1rem;
    }

    .cases-section {
        padding: 3rem 0;
    }

    .cases-container {
        padding: 0 1rem;
    }

    .cases-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cta-box {
        padding: 2rem;
        margin: 1.5rem auto;
    }
}

/* CTA Box */
.cta-box {
    background: var(--primary-color);
    padding: 1.5rem;
    text-align: center;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    display: none;
}

.cta-box h3 {
    display: none;
}

.cta-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--light-text);
    color: var(--primary-color);
    border-color: var(--light-text);
}

@media (max-width: 768px) {
    .cta-box {
        padding: 1.2rem;
        margin: 1.2rem auto;
    }

    .cta-box h3 {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

/* Ajustes globais de tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

@media (max-width: 768px) {
    .service-content h2 {
        font-size: 2.5rem;
    }

    .clients-header h2 {
        font-size: 2.5rem;
    }

    .team-section h2 {
        font-size: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .creative-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-content h2 {
        font-size: 2rem;
    }

    .clients-header h2 {
        font-size: 2rem;
    }
}

/* Botões de navegação do slider de serviços */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.services-prev {
    left: 30px;
}

.services-next {
    right: 30px;
}

.services-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .services-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .services-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .services-prev {
        left: 15px;
    }
    
    .services-next {
        right: 15px;
    }
}

/* Metodologia Steps Section */
.metodologia-steps-section, .metodologia-steps-container, .service-intro, .service-main-title, .metodologia-step, .step-content, .step-header, .step-btn {
    display: none;
}

/* Header Styles */
.header-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .header-floating {
        width: 95%;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
    }
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
    color: #8B4513;
    transition: color 0.3s ease;
}

/* Our Services Section - Block Grid */
.our-services-section {
    padding: 0;
    background: #f5f5f0;
    position: relative;
}

.services-section-header {
    padding: 2rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .services-section-header {
        padding: 3rem 1.5rem 2rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-title br {
        display: none;
    }
}

.services-block-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

.service-block {
    background: #f5f5f0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    text-decoration: none;
    color: #000;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.service-block:hover::before {
    transform: translateY(0);
}

.service-block-header,
.service-block-icon,
.service-block-desc {
    position: relative;
    z-index: 1;
}

.service-block-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    color: #000;
    transition: color 0.35s ease;
}

.service-block:hover .service-block-header h3 {
    color: #fff;
}

.service-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.service-block-icon span {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.25);
    transition: color 0.35s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    line-height: 1;
}

.service-block:hover .service-block-icon span {
    color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.service-block-desc p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    font-weight: 400;
    transition: color 0.35s ease;
}

.service-block:hover .service-block-desc p {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .services-block-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-block {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .services-block-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .service-block {
        min-height: 300px;
        padding: 1.8rem;
    }

    .service-block-header h3 {
        font-size: 1.6rem;
    }

    .service-block-desc p {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .services-block-grid {
        grid-template-columns: 1fr;
    }

    .service-block {
        min-height: 280px;
    }
}

.newsletter-section {
    padding: 2rem 2rem;
    background-color: var(--tertiary-color);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.newsletter-content {
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.newsletter-content p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #000;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.newsletter-content .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.newsletter-content input[type="email"] {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
}

.newsletter-section .newsletter-form button {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-section .newsletter-form button:hover {
    background: #242E16 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 1.5rem 1rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }
}

.nossa-alma-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
}

.nossa-alma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nossa-alma-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 3.5rem 3.5rem;
}

.hero-layout {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    padding-bottom: 0.2rem;
}

/* Manifesto Tagline - Hero */
.manifesto-tagline {
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.45;
    text-align: right;
    margin: 0;
    max-width: 620px;
}

@media (max-width: 768px) {
    .nossa-alma-content {
        padding: 0 1.5rem 2.5rem;
    }

    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .manifesto-tagline {
        text-align: left;
        font-size: 1.2rem;
    }
}

.social-link {
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.linkedin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
}

.social-link.instagram {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162S8.597 18.163 12 18.163s6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zM12 16c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.social-link.tiktok {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z'/%3E%3C/svg%3E");
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #242E16;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

.grid-half:first-child {
    background-color: #f4f0ea;
    color: #000;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .split-grid {
        flex-direction: column;
        width: 100%;
        margin: 4rem 0 0 0;
    }

    .grid-half {
        width: 100%;
        padding: 3rem 1.5rem;
    }
    
    .grid-half:last-child .grid-title,
    .grid-half:first-child .grid-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .grid-half:last-child .grid-items-container {
        justify-content: center;
    }

    .grid-items-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-item {
        padding: 0.8rem 1.2rem;
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .grid-item h3 {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-logo {
        max-width: 140px;
    }
}

.split-grid-indicators {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.split-grid-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.split-grid-indicators .indicator.active {
    background-color: #000;
}

@media (max-width: 768px) {
    .split-grid-indicators {
        display: flex;
    }
}

/* Remover estilos personalizados da barra de rolagem */
::-webkit-scrollbar {
    display: none;
}

/* Estilos da split-grid */
.split-grid {
    display: flex;
    width: 100vw;
    margin: 0 0 0 -2rem;
    flex: 1;
}

.grid-half {
    width: 50vw;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0;
}

.grid-half:first-child {
    background-color: #f4f0ea;
    color: #000;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid-half:last-child {
    background-color: #000000;
    color: #ffffff;
}

.grid-half:last-child .grid-title {
    text-align: right;
}

.grid-half:last-child .grid-items-container {
    justify-content: flex-end;
}

.grid-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.grid-half:first-child .grid-title {
    text-align: left;
}

.grid-items-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid-item {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
    text-align: center;
    background-color: #111111;
    border: none;
}

.grid-half:first-child .grid-item {
    background-color: #111111;
    color: #ffffff;
}

.grid-half:last-child .grid-item {
    background-color: #111111;
    color: #ffffff;
}

.grid-item h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.grid-item:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Estilos mobile da split-grid */
@media (max-width: 768px) {
    .split-grid {
        flex-direction: column;
        width: 100%;
        margin: 4rem 0 0 0;
    }

    .grid-half {
        min-width: 100%;
        width: 100%;
        scroll-snap-align: start;
        padding: 2rem;
        margin: 0;
    }

    .grid-half:first-child {
        border-radius: 0;
        margin: 0;
    }

    .grid-half:last-child .grid-title,
    .grid-half:first-child .grid-title {
        text-align: center;
        font-size: 2rem;
    }

    .grid-half:last-child .grid-items-container {
        justify-content: center;
    }

    .grid-items-container {
        gap: 0.75rem;
    }

    .grid-item {
        padding: 0.6rem 1.2rem;
    }

    .grid-item h3 {
        font-size: 0.8rem;
    }

    .split-grid-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1rem;
    }

    .split-grid-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #242E16;
        opacity: 0.3;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .split-grid-dot.active {
        opacity: 1;
    }
}