/* Reset & Base Styles */
:root {
    --primary-black: #024059;
    --secondary-black: #024059;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --text-light: #f5f5f5;
    --text-muted: #999999;
    --font-main: 'Outfit', sans-serif;
    --border-radius: 40px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
}

body {
    background-color: var(--white);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.2;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-black {
    background-color: var(--primary-black);
    color: var(--white);
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-black);
}

.btn-white:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

.btn-black-outline {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 10px 24px;
    gap: 10px;
}

.btn-black-outline:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    transform: scale(0.55); /* Escala ajustada para ficar ainda maior */
    transform-origin: left center;
    display: inline-block;
    text-decoration: none;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-black);
    transition: width var(--transition-speed) ease;
}

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

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

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: #666;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    max-width: 800px;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-graphic {
    position: absolute;
    right: -100px;
    top: -50px;
    width: 600px;
    height: 600px;
    z-index: -1;
}

.movimenta-animation {
    position: absolute;
    top: 35%;
    right: 0;
    transform: translateY(-50%);
    width: 450px;
    height: 250px;
}

.track-lines {
    position: absolute;
    width: 250%;
    left: -150%;
    height: 150%;
    top: -25%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    z-index: 1;
}

.track-line {
    height: 1px;
    background-color: var(--primary-black);
    opacity: 0.15;
}

.track-line:nth-child(1) { width: 80%; transform: translateX(20%); opacity: 0.03; }
.track-line:nth-child(2) { width: 100%; transform: translateX(0); opacity: 0.08; }
.track-line:nth-child(3) { width: 50%; transform: translateX(50%); opacity: 0.12; }
.track-line:nth-child(4) { width: 90%; transform: translateX(-10%); opacity: 0.05; }
.track-line:nth-child(5) { width: 120%; transform: translateX(-20%); opacity: 0.15; }
.track-line:nth-child(6) { width: 60%; transform: translateX(40%); opacity: 0.06; }
.track-line:nth-child(7) { width: 100%; transform: translateX(0); opacity: 0.1; }
.track-line:nth-child(8) { width: 70%; transform: translateX(10%); opacity: 0.04; }
.track-line:nth-child(9) { width: 40%; transform: translateX(60%); opacity: 0.08; }
.track-line:nth-child(10) { width: 85%; transform: translateX(-5%); opacity: 0.12; }

.arrows-group {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 2;
    animation: organic-slide 3s infinite ease-in-out;
}

.chevron {
    width: 260px;
    height: 260px;
    border-right: 1px solid var(--primary-black);
    border-bottom: 1px solid var(--primary-black);
    margin-left: -130px;
    transform: rotate(-45deg);
}

@keyframes organic-slide {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(-150px) scale(0.8);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0) scale(1);
    }
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(150px) scale(0.8);
    }
}

/* Intro Section */
.intro {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 100px 0;
}

.intro-text {
    font-size: 1.5rem;
    max-width: 800px;
    font-weight: 300;
}

/* Casting Marquee */
.casting-marquee-section {
    background-color: var(--primary-black);
    padding-bottom: 50px;
    overflow: hidden;
}

.casting-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-track img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.marquee-track img:hover {
    filter: grayscale(0%);
}

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

/* Services */
.services {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px 40px;
}

.service-card {
    display: flex;
    gap: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Founder */
.founder {
    display: flex;
    flex-wrap: wrap;
}

.founder-image {
    flex: 1;
    min-width: 300px;
}

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

.founder-content {
    flex: 1;
    background-color: var(--primary-black);
    color: var(--white);
    padding: 100px 80px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.founder-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.founder-content h2 span {
    background-color: #e0edff;
    color: var(--primary-black);
    padding: 0 10px;
}

.founder-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
}

/* Stats */
.stats {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Brands */
.brands {
    padding: 100px 0;
    text-align: center;
}

.brands-header {
    margin-bottom: 60px;
}

.brands-header .subtitle {
    color: #0066cc;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

.brands-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scroll-brands 20s linear infinite;
    align-items: center;
    gap: 80px;
}

.brand-logo {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer p, footer a {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.map-link {
    text-decoration: underline;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.floating-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-graphic { width: 300px; height: 400px; right: -50px; }
    .movimenta-animation { width: 300px; }
    .chevron { width: 160px; height: 160px; margin-left: -80px; border-width: 1px; }
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .header-actions .btn { display: none; }
    
    .founder-content { padding: 60px 40px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero { padding-top: 140px; }
    .hero-graphic { display: none; }
    
    .stat-item h2 { font-size: 3rem; }
    .intro-text { font-size: 1.2rem; }
    
    .floating-whatsapp span { display: none; }
    .floating-whatsapp { padding: 15px; border-radius: 50%; font-size: 1.5rem; }
}
