:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --primary-color: #FFD700;
    --primary-hover: #ffea00;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.highlight {
    color: var(--primary-color);
}

.center {
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.placeholder-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px dashed rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
    border-radius: 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.identifier {
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.main-name {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
}

.hero-image {
    height: 600px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Scroll Down CTA */
.scroll-down-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    margin-top: 10px;
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

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

/* About Section */
.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.metric-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 30px;
    gap: 30px;
    transition: all 0.3s;
}

.metric-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.metric-value {
    flex: 0 0 30%;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
}

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

.about-image {
    height: 500px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Data Section */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.data-card h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-row {
    margin-bottom: 16px;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.gender-bar {
    display: flex;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

.gender-bar .male {
    background: var(--primary-color);
    color: #000;
}

.gender-bar .female {
    background: #333;
    color: #fff;
}

.age-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.age-item > span:first-child {
    width: 50px;
    color: var(--text-muted);
}

.age-item > span:last-child {
    width: 40px;
    text-align: right;
    font-weight: 600;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary-color);
    color: #000;
}

.viral-examples {
    margin-top: 40px;
}

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

.viral-card {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    padding: 30px;
}

.viral-cover {
    width: 100%;
    aspect-ratio: 308 / 479;
    object-fit: cover;
    border-radius: 12px;
}

/* Services */
.formats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.format-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: default;
}

.format-item:hover {
    border-left: 4px solid var(--primary-color);
    transform: translateX(10px);
}

.widescreen-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.widescreen-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.widescreen-card h3 {
    flex: 0 0 35%;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.widescreen-card p {
    flex: 0 0 60%;
    font-size: 1.1rem;
    color: var(--text-color);
}

.other-partnerships {
    margin-top: 20px;
    padding: 24px;
    background: rgba(255,215,0,0.05);
    border-radius: 12px;
}

.other-partnerships h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.other-partnerships ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.other-partnerships li::before {
    content: '→ ';
    color: var(--primary-color);
}

/* Mockup Carousel */
.mockup-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.mockup-carousel-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.mockup-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mockup-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mockup-header {
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.format-badge {
    font-size: 0.75rem;
    background: var(--primary-color);
    color: #000;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 800;
}

.mockup-body {
    width: 100%;
    aspect-ratio: 4 / 5; /* Novo formato retrato do feed do Instagram */
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mockup-caption {
    font-size: 0.9rem;
    margin-bottom: 16px;
    min-height: 40px;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.carousel-nav button {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.carousel-nav button:hover {
    color: var(--primary-color);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .dot.active {
    background: var(--primary-color);
}

.funnel-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ps-note {
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Events Carousel */
.events-carousel-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.events-carousel-track {
    display: flex;
    width: calc((450px + 20px) * 8);
    animation: scrollEvents 30s linear infinite;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
}

.events-carousel-track:hover {
    animation-play-state: paused;
}

.event-slide {
    width: 450px;
    flex-shrink: 0;
}

.event-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.event-slide:hover img {
    transform: scale(1.05);
}

@keyframes scrollEvents {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc((-450px - 20px) * 4)); }
}

/* Ecosystem */
.brands-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 100px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.support-title {
    color: var(--text-muted);
}

.support-brand {
    font-weight: 800;
    font-size: 1.2rem;
}

.projects-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.project-card {
    text-align: center;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 60px 20px;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    transition: background 0.3s ease;
}

.project-card span {
    position: relative;
    z-index: 2;
}

.project-card:hover::before {
    background: rgba(255, 215, 0, 0.85);
}

.project-card:hover {
    color: #000;
    text-shadow: none;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Clients - Infinite Carousel */
.carousel-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.carousel-track {
    display: flex;
    width: calc(350px * 20); /* 10 images * 2 (duplicated) */
    animation: scroll 40s linear infinite;
    align-items: center;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    transition: all 0.4s ease;
}

.logo-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 10)); } /* Scroll exactly 10 images */
}

/* Footer */
.footer-section {
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.thanks-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 20px 48px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    background: var(--primary-hover);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-name { font-size: 4.5rem; }
    .data-grid, .projects-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .two-columns { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { align-items: center; margin-top: 60px; }
    .main-name { font-size: 3.5rem; }
    .hero-image-placeholder, .about-image { height: 400px; }
    
    .data-grid, .projects-grid { grid-template-columns: 1fr; }
    
    .other-partnerships ul { grid-template-columns: 1fr; }
    
    .brands-support { flex-direction: column; border-radius: 20px; padding: 24px; }
    
    .thanks-title { font-size: 2.5rem; }
    
    .section-title { font-size: 2rem; }
    .subtitle { font-size: 1.2rem; }
    
    .section { padding: 50px 0; }
    .footer-section { padding: 60px 0; }
    
    .metric-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px;
    }
    
    .widescreen-card {
        flex-direction: column;
        text-align: left;
        gap: 16px;
        padding: 24px;
    }
    .widescreen-card h3, .widescreen-card p {
        flex: 1;
        width: 100%;
    }
}
