/* Importação da fonte Space Grotesk */
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/Space_Grotesk/static/SpaceGrotesk-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300; /* Usando a versão Light da fonte */
    background-color: #111111; /* Cor atualizada conforme solicitado */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

section {
    padding: 144px 0; /* Aumentado em 20% conforme solicitado (120px * 1.2 = 144px) */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #e67e22;
    font-weight: 300; /* Usando a versão Light da fonte */
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #e67e22;
    border-radius: 50px; /* Cantos totalmente arredondados */
}

/* Header e Navegação - Ajustado para ser transparente com efeito de desfoque */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.2); /* Fundo transparente */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade com Safari */
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(17, 17, 17, 0.8); /* Mais opaco ao rolar */
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e67e22;
}

.nav-contato {
    padding: 8px 16px;
    border: 1px solid #e67e22;
    border-radius: 30px;
    color: #e67e22;
    transition: all 0.3s ease;
}

.nav-contato:hover {
    background-color: #e67e22;
    color: #111111;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Banner Principal completamente estático - Ajustado conforme solicitações */
.banner-section {
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: -80px; /* Subir o banner para que o header fique sobreposto */
    z-index: -1; /* Garantir que fique atrás do conteúdo */
    top: 0;
    left: 0;
    transform: none !important; /* Garantir que não haja transformação */
    transition: none !important; /* Desativar transições */
    will-change: auto !important; /* Desativar otimizações que podem causar movimento */
}

/* Espaçador para compensar o banner fixo */
.banner-spacer {
    height: 100vh; /* Mesma altura do banner */
    width: 100%;
    margin-bottom: 80px; /* Adicionar espaço extra para compensar o margin-top negativo do banner */
}

.banner-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transform: none !important; /* Garantir que não haja transformação */
    transition: none !important; /* Desativar transições */
    will-change: auto !important; /* Desativar otimizações que podem causar movimento */
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease; /* Tempo de transição ajustado para 1 segundo */
    z-index: 1;
    transform: none !important; /* Garantir que não haja transformação */
    will-change: auto !important; /* Desativar otimizações que podem causar movimento */
}

.banner-slide.active {
    opacity: 1;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.765; /* Reduzido em mais 10% (0.85 * 0.9 = 0.765) */
    transform: none !important; /* Garantir que não haja transformação */
    transition: none !important; /* Desativar transições */
    will-change: auto !important; /* Desativar otimizações que podem causar movimento */
}

.banner-slide:nth-child(1) .banner-background {
    background-image: url('../images/banners/01.jpg');
}

.banner-slide:nth-child(2) .banner-background {
    background-image: url('../images/banners/02.jpg');
}

.banner-slide:nth-child(3) .banner-background {
    background-image: url('../images/banners/03.jpg');
}

.banner-slide:nth-child(4) .banner-background {
    background-image: url('../images/banners/05.jpg');
}

.banner-slide:nth-child(5) .banner-background {
    background-image: url('../images/banners/06.jpg');
}

.banner-static-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 10;
    text-align: center;
    width: 100%;
    transition: none !important;
    will-change: auto !important;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
.static-element {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.banner-asset-22 {
    max-width: 44.33%; /* Aumentado em 30% do tamanho anterior (34.1% * 1.3 = 44.33%) */
    height: auto;
    z-index: 10; /* Garantir que fique acima dos slides de fundo */
}

@keyframes zoomOutEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

.logo-banner {
    max-width: 50%; /* Reduzir o logotipo em 50% */
    height: auto;
    margin-bottom: 20px;
    /* Remover qualquer efeito de animação ou transição */
    animation: none;
    transition: none;
}

.banner-content .subtitle {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300; /* Usando a versão Light da fonte */
    background-color: rgba(230, 126, 34, 0.8);
    padding: 5px 20px;
    border-radius: 30px;
    /* Remover qualquer efeito de animação ou transição */
    animation: none;
    transition: none;
}

/* Efeito Parallax */
.banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Background da seção Cases estendido até acima da imagem Asset-23.png */
.cases-background-extension {
    position: relative;
    z-index: 2;
    background-color: #111111;
    margin-top: -80px; /* Para compensar o margin-bottom do banner-spacer */
    padding-top: 0;
    padding-bottom: 0;
}

/* Seção Sobre - Ajustada conforme referência */
.sobre-section {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: #111111;
}

.proposito-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 96px; /* Aumentado em 20% (80px * 1.2 = 96px) */
}

.quote-section {
    margin-bottom: 180px; /* Aumentado para adicionar mais espaço entre a frase e a seção inferior */
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-section blockquote {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    border-left: none;
    padding: 0;
}

.quote-section blockquote::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #e67e22;
    margin: 30px auto 0;
}

.quote-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.designer-box {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    gap: 30px; /* Adicionar espaço entre os elementos */
}

.designer-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
}

.designer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.designer-bio-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.designer-bio {
    background-color: #111111;
    border: 1px solid #e67e22;
    border-radius: 30px; /* Box independente com cantos arredondados */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.designer-bio .bio-text {
    font-size: 1.25rem;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.designer-bio p.bio-text:first-child {
    margin-bottom: 60px;
}

/* Seção Cases - Removidos os textos da galeria */
.cases-section {
    background-color: #111111;
}

.cases-button-container {
    text-align: center;
    margin-bottom: 40px;
}

.cases-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #e67e22;
    border-radius: 50px; /* Cantos totalmente arredondados */
    color: #e67e22;
    font-size: 2.5rem; /* Mesmo tamanho dos outros títulos de seção */
    font-weight: 300;
    transition: all 0.3s ease;
}

.cases-btn:hover {
    background-color: #e67e22;
    color: #111111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 126, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Seção Metodologia - Ajustada conforme solicitado */
.metodologia-section {
    background-color: #111111;
    text-align: center;
}

.circle-title {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #e67e22;
    border-radius: 50px; /* Cantos totalmente arredondados */
    margin-bottom: 70px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(230, 126, 34, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 120px; /* Aumentado o espaçamento entre os itens */
    display: flex;
    align-items: flex-start;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    color: #e67e22;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    width: 45%;
    text-align: right;
    padding-right: 30px;
}

.timeline-title {
    position: absolute;
    left: 0;
    top: 80px;
    width: 45%;
    text-align: right;
    padding-right: 30px;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 300;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 12px;
    height: 12px;
    background-color: #e67e22;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    padding: 0;
    position: relative;
    background-color: transparent;
    margin-left: 55%;
    text-align: left;
    width: 45%;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Seção Marcas Atendidas */
.marcas-section {
    background-color: #101010; /* Atualizado conforme solicitado */
    text-align: center;
}

.marcas-section .section-title {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #e67e22;
    border-radius: 50px; /* Cantos totalmente arredondados */
    margin-bottom: 70px;
}

.marcas-grid {
    text-align: center;
}

.marcas-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.marcas-img {
    max-width: 50%; /* Reduzido em 50% conforme solicitado */
    height: auto;
    margin: 0 auto;
    display: block;
}

.marcas-mobile {
    display: none;
}

/* Seção Contato - Ajustada conforme referência */
.contato-section {
    background-color: #1a1919;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.contato-left {
    flex: 1;
}

.contato-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.contato-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contato-button {
    margin-bottom: 50px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 24px 61px; /* Diminuído em 10% (27px * 0.9 = 24px, 68px * 0.9 = 61px) */
    background-color: transparent;
    border: 1px solid #e67e22;
    border-radius: 61px; /* Diminuído proporcionalmente */
    color: #e67e22;
    font-size: 2.25rem; /* Diminuído em 10% (2.5rem * 0.9 = 2.25rem) */
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    margin-right: 10px;
}

.whatsapp-btn:hover {
    background-color: #e67e22;
    color: #111111;
}

.contato-right {
    flex: 1;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
    opacity: 1;
}

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

.submit-btn {
    padding: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    width: auto;
}

.submit-btn:hover {
    background-color: #fff;
    color: #111111;
}

/* Footer */
footer {
    background-color: #111111;
    padding: 50px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-btn {
    padding: 8px 20px;
    background-color: #333;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.footer-btn:hover {
    background-color: #444;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #e67e22;
    color: #111111;
}

.copyright {
    font-size: 0.9rem;
    color: #777;
}

/* Responsividade */
@media (max-width: 1024px) {
    .contato-container {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .designer-box {
        flex-direction: column;
    }
    
    .designer-image {
        border-radius: 30px 30px 0 0;
    }
    
    .designer-bio {
        border-radius: 0 0 30px 30px;
        border-left: 1px solid #e67e22;
        border-top: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .marcas-desktop {
        display: none;
    }
    
    .marcas-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .contato-content h2 {
        font-size: 3rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
