/* ==========================================
   HERO CONTAINER
   ========================================== */
.hero-container { 
    max-width: 1200px; 
    margin: 40px auto 0 auto; 
    height: calc(100vh - 240px); 
    min-height: 400px; 
    position: relative; 
    background-color: #000; 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
    z-index: 10; 
}
.carousel-track { display: flex; height: 100%; transition: transform 0.6s ease; }
.carousel-slide { min-width: 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay { 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.5) 100%); 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    z-index: 20; pointer-events: none; 
}
.hero-mini-logo { max-width: clamp(80px, 8vw, 140px); margin-bottom: 20px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4)); }
.hero-slogan { font-size: clamp(1.8rem, 3.5vw, 3.2rem); color: #FFFFFF; margin: 0 0 10px 0; font-weight: 300; letter-spacing: 2px; text-shadow: 0 4px 10px rgba(0,0,0,0.6); }
.hero-slogan span { color: var(--laranja-saltimbanco); font-weight: 700; }
.hero-location { color: #fff; font-size: clamp(0.6rem, 1vw, 0.8rem); letter-spacing: clamp(2px, 0.5vw, 4px); text-transform: uppercase; margin-top: 5px; margin-bottom: 20px; opacity: 0.6; }

.hero-socials { display: flex; gap: 25px; margin-top: 25px; pointer-events: auto; }
.hero-socials a { color: #fff; opacity: 0.8; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.hero-socials a:hover { color: var(--laranja-saltimbanco); opacity: 1; transform: scale(1.1); }
.icon-svg { width: clamp(20px, 2vw, 24px); height: clamp(20px, 2vw, 24px); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================
   SCROLL ANIMATION
   ========================================== */
.scroll-section { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 40px; margin-bottom: 60px; }
.scroll-text { color: var(--cinza-escuro); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.9rem; margin-top: 15px; }
.mouse-scroll-dark { width: 24px; height: 38px; border: 2px solid var(--cinza-escuro); border-radius: 15px; position: relative; }
.mouse-scroll-dark::before { content: ''; position: absolute; width: 4px; height: 6px; background: var(--cinza-escuro); left: 50%; transform: translateX(-50%); top: 6px; border-radius: 2px; animation: scroll-dark 1.5s infinite; }
@keyframes scroll-dark { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* ==========================================
   CABEÇALHO DE SECÇÃO (SEPARADOR)
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px; 
    margin-top: 0; /* Ajustado para não chocar com o padding-top da secção */
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--azul-etcetera); 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header .divider {
    height: 4px;
    width: 80px;
    background-color: var(--laranja-saltimbanco); 
    margin: 0 auto 20px auto;
    border-radius: 4px;
}

.section-header p {
    color: var(--cinza-escuro);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================
   GRELHA DE PROJETOS
   ========================================== */
.projects-section { max-width: 1200px; margin: 0 auto 100px auto; padding: 0 20px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.project-card { background-color: #FFFFFF; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.3s ease; display: block; }
.project-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.project-tag { color: var(--laranja-saltimbanco); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.card-carousel { position: relative; width: 100%; height: 220px; overflow: hidden; }
.card-track { display: flex; height: 100%; transition: transform 0.4s ease-in-out; }
.card-track img { min-width: 100%; height: 100%; object-fit: cover; }

.project-info { padding: 30px; text-align: center; }
.project-info h3 { color: var(--azul-etcetera); margin: 0 0 10px 0; text-transform: uppercase; font-size: 1.2rem; }
.project-info p { font-size: 0.9rem; color: #666; margin-bottom: 25px; line-height: 1.5; }

/* --- BOTÃO "EXPLORAR PEÇAS" --- */
.btn-saber-mais {
    display: inline-block;
    padding: 10px 25px;
    color: var(--azul-etcetera); 
    border: 2px solid var(--azul-etcetera); 
    background-color: transparent; 
    border-radius: 25px; 
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-saber-mais:hover {
    background-color: var(--azul-etcetera); 
    color: #ffffff; 
    box-shadow: 0 4px 12px rgba(80, 188, 197, 0.4); 
    transform: translateY(-2px); 
}

/* ==========================================
   BANNER DE NATAL (IMAGEM CLICÁVEL COM ANIMAÇÃO)
   ========================================== */
.banner-natal-section {
    max-width: 1200px;
    margin: 110px auto 80px auto; 
    padding: 0 20px;
    animation: levita-natal 4s infinite ease-in-out; 
}

.banner-natal-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.banner-natal-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px; 
}

/* --- O BRILHO MÁGICO (Luz que atravessa o banner) --- */
.banner-natal-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: passa-brilho 8s infinite;
    pointer-events: none; 
}

/* --- EFEITO HOVER (Quando se passa o rato) --- */
.banner-natal-link:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(123, 17, 19, 0.5); 
}

/* --- KEYFRAMES DAS ANIMAÇÕES --- */
@keyframes passa-brilho {
    0% { left: -100%; }
    35% { left: 200%; } 
    100% { left: 200%; } 
}

@keyframes levita-natal {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0); }
}

/* ==========================================
   SOBRE NÓS
   ========================================== */
.about-container { max-width: 1200px; margin: 80px auto; padding: 0 20px; display: flex; align-items: center; gap: 60px; }
.about-image { flex: 1; display: flex; justify-content: center; align-items: center; padding: 20px; }
.about-image img { max-width: 320px; width: 100%; height: auto; display: block; object-fit: contain; }
.about-content { flex: 1; }
.about-content h2 { color: var(--azul-etcetera); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.about-content p { line-height: 1.8; color: #555; margin-bottom: 20px; }

/* ==========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================== */
@media (max-width: 850px) {
    .projects-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) { 
    .about-container { flex-direction: column; text-align: center; } 
}