/* ================================================================
   ARQUIVO DE ESTILO PRINCIPAL - STYLE.CSS (CORREÇÃO FINAL DE CORES)
   ================================================================ */

/* 1. Configurações Gerais */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
html, body { 
    scroll-behavior: smooth;
    overflow-x: hidden; /* CORREÇÃO: Impede a rolagem horizontal */
}
body { 
    background-color: #fff;
    padding-top: 80px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; align-items: center; }
/* 2. Estilo de Título Padrão (COM CORREÇÃO) */
.section-title {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #ffffff; /* Cor padrão para a primeira parte do texto */
}
.section-title span {
    font-weight: 700;
    color: #fdbf00; /* CORREÇÃO: Cor amarela/dourada para o destaque em fundos escuros */
}
.section-title.dark {
    color: #212529; /* Cor para a primeira parte em fundos claros */
}
.section-title.dark span {
    color: #063e7b; /* Cor de destaque para fundos claros */
}


/* 3. Header (NOVO DESIGN) */
.main-header { 
    background-color: #030414;
    padding: 10px 0; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px; /* Altura fixa para cálculo fácil */
}
.main-header .container { 
    justify-content: space-between; 
    height: 100%;
}
.logo img { 
    height: 60px; 
    display: block; 
}
.main-nav {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
}
.main-nav a { 
    color: #f0f0f0; 
    text-decoration: none; 
    margin: 0 15px; 
    font-weight: 500; 
    transition: color 0.3s ease; 
}
.main-nav a:hover { 
    color: #ffffff; 
}
.btn-contact-header { 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #6a33b5;
    color: white; 
    border: none;
    padding: 12px 25px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    margin-left: 20px; 
    transition: background-color 0.3s, transform 0.3s; 
}
.btn-contact-header:hover { 
    background-color: #0d6efd; 
    transform: scale(1.05);
}

/* 4. Banner Principal (COM ESTILOS DE TEXTO ATUALIZADOS) */
.banner-section { width: 100%; height: calc(85vh - 80px); position: relative; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; position: relative; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; opacity: 0.6; z-index: 1; }

/* NOVOS ESTILOS PARA O TEXTO DO BANNER */
.slide-caption {
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center; /* Alinha todo o texto ao centro */
    max-width: 750px;
    padding: 40px;
    left: 50%; /* Posiciona no meio horizontal */
    top: 50%;  /* Posiciona no meio vertical */
    transform: translate(-50%, -50%); /* Ajuste fino para centralização perfeita */
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}
.slide-headline {
    font-family: Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
}
.slide-headline .highlight {
    color: #fdbf00;
}
.slide-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 550px; 
    color: rgba(255, 255, 255, 0.9);
    margin-left: auto; /* Centraliza o parágrafo dentro do container */
    margin-right: auto; /* Centraliza o parágrafo dentro do container */
}
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #6a33b5;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 77, 77, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 77, 77, 0.5);
}


/* 5. Seção "Quem Somos" (COM ALTERAÇÕES) */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #030414, #060824); /* NOVO FUNDO DEGRADÊ */
}
.container-about { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: center; }
.about-grid { display: flex; align-items: center; gap: 60px; width: 100%; max-width: 1100px; }
.about-image-col { flex-basis: 45%; }
.about-text-col { flex-basis: 55%; text-align: left; }
.about-image-col img { width: 100%; border-radius: 12px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }

/* CORREÇÃO: Cores do texto alteradas para branco/cinza claro */
.about-text-col h3 { 
    font-size: 2.5rem; 
    color: #ffffff; /* MUDADO PARA BRANCO */
    font-weight: 700; 
    margin-bottom: 25px; 
    line-height: 1.3; 
}
.about-text-col p { 
    font-size: 1.1rem; 
    color: #ffffff; /* MUDADO PARA CINZA CLARO */
    line-height: 1.8; 
    margin-bottom: 30px; 
}
.button-wrapper { margin-top: 20px; }
.btn-primary { background-color: #6a33b5; color: white; padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(253, 77, 77, 0.4); border: none; cursor: pointer; font-size: 1rem; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(253, 77, 77, 0.5); }


/* 6. Seção "Resultados" */
.results-section {
    padding: 100px 0;
    /* Linha a ser ALTERADA/ADICIONADA */
    background: linear-gradient(to bottom, #060822, #151a5b); 
    color: white; /* Garante que o texto fique branco sobre o fundo escuro */
}
.container-results { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.results-grid { display: flex; align-items: center; gap: 60px; }
.results-text-col { flex-basis: 55%; text-align: left; }
.results-content-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.btn-secondary {
    background-color: #6a33b5;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 77, 77, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(253, 77, 77, 0.5); }
.results-image-col { flex-basis: 45%; position: relative; display: flex; justify-content: center; align-items: center; }
.results-image-background { position: absolute; width: 580px; height: 580px; background-color: #ffffff; border-radius: 50%; opacity: 0.1; }
.results-image-col img { max-width: 450px; position: relative; z-index: 2; transform: rotate(0deg); }

/* 7. Seção "O que fazemos" */
.services-section { padding: 80px 0; background: linear-gradient(to bottom, #151a5b, #212886); text-align: center; }
.container-services { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section-intro { max-width: 750px; margin: 0 auto 60px auto; }
.section-intro .section-title { 
    text-align: center; 
    color: #ffffff; /* Garante que a primeira parte seja branca */
}
.section-intro p { font-size: 1.1rem; color: #adb5bd; line-height: 1.7; margin-top: -20px; }

.services-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.service-item { 
    flex-basis: 350px; flex-grow: 1; max-width: 380px; 
    
    /* NOVAS PROPRIEDADES PARA O FUNDO TRANSPARENTE */
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); /* Fundo degradê transparente */
    backdrop-filter: blur(5px); /* Efeito de desfoque */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borda mais suave */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); /* Sombra mais discreta */
    
    padding: 40px 30px; 
    border-radius: 12px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.service-item:hover { transform: translateY(-10px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); } /* Sombra no hover */

/* Cores do texto e ícone do serviço alteradas para branco/amarelo */
.service-item h3 { font-size: 1.5rem; color: #fdbf00; margin-bottom: 15px; } /* Título em amarelo */
.service-item p { font-size: 1rem; color: #ffffff; line-height: 1.6; } /* Parágrafo em branco */
.service-icon { 
    width: 80px; height: 80px; 
    background-color: rgba(255, 255, 255, 0.1); /* Fundo do ícone levemente transparente */
    border-radius: 50%; display: flex; justify-content: center; align-items: center; 
    margin: 0 auto 30px auto; font-size: 2.5rem; 
    color: #fdbf00; /* Ícone em amarelo */
}


/* 8. Seção Portfólio */
.portfolio-section { 
    background: linear-gradient(to bottom, #212886, #191e60); /* NOVO FUNDO DEGRADÊ */
    color: white; 
    padding: 80px 0; 
    overflow: hidden; 
}
.portfolio-section .container { display: block; position: relative; }
.portfolio-header .section-title { text-align: left; }
.portfolio-swiper .swiper-slide { display: flex; align-items: center; gap: 40px; background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); border-radius: 20px; padding: 40px; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.2); }
.portfolio-text-content { flex: 1; text-align: left; }
.portfolio-text-content h3 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
.portfolio-text-content p { font-size: 1rem; line-height: 1.6; margin-bottom: 30px; }
.btn-project {
    background-color: #6a33b5;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 77, 77, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-project:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(253, 77, 77, 0.5); }
.portfolio-image-content { flex: 1.5; }
.portfolio-image-content img { width: 100%; height: auto; }
.portfolio-nav { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding-left: 20px; justify-content: center; }
.portfolio-pagination-fraction { font-size: 1.5rem; font-weight: 700; }
.portfolio-pagination-fraction .swiper-pagination-current { font-size: 2.5rem; }
.portfolio-pagination-fraction .swiper-pagination-total { color: #ffe8e8; }
.portfolio-pagination-bullets { display: flex; gap: 10px; }
.portfolio-pagination-bullets .swiper-pagination-bullet { width: 8px; height: 8px; background-color: #ffe8e8; opacity: 1; border-radius: 50%; transition: all 0.3s ease; }
.portfolio-pagination-bullets .swiper-pagination-bullet-active { background-color: white; width: 25px; border-radius: 5px; }

/* 9. Seção "Contato" */
.contact-section { 
    padding: 100px 0; 
    background: linear-gradient(to bottom, #191e60, #121437); 
}
.contact-section .section-intro { text-align: center; margin-bottom: 40px; }
.container-contact { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.contact-grid { 
    display: flex; 
    gap: 60px; 
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 60px; 
    border-radius: 20px; 
}
.contact-form-col, .contact-info-col { flex: 1; }

.contact-form-col h3 { 
    font-size: 2rem; 
    color: #ffffff; /* Cor alterada para branco */
    margin-bottom: 10px; 
}
.contact-form-col p { 
    color: #adb5bd; /* Cor alterada para cinza claro */
    margin-bottom: 30px; 
}
.contact-form-col form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-col input { 
    width: 100%; 
    padding: 15px; 
    border: 1px solid #fdbf00; /* COR DA BORDA ALTERADA PARA AMARELO */
    background-color: rgba(255, 255, 255, 0.1); /* Fundo levemente transparente */
    color: #ffffff; /* Cor do texto digitado */
    border-radius: 8px; 
    font-size: 1rem; 
}
.contact-form-col input::placeholder {
    color: #adb5bd; /* Cor do texto de placeholder */
}

.contact-info-col { 
    padding-left: 40px; 
    border-left: 1px solid rgba(255, 255, 255, 0.2); /* Cor da linha divisória alterada */
}
.contact-info-col h3 { 
    font-size: 2rem; 
    color: #fdbf00; /* Destaque em amarelo */
    margin-bottom: 30px; 
}
.contact-info-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 25px; }
.contact-info-col li { display: flex; align-items: center; font-size: 1.1rem; }
.contact-info-col li i { 
    font-size: 1.5rem; 
    color: #fdbf00; /* COR DO ÍCONE ALTERADA PARA AMARELO */
    width: 40px; 
}
.contact-info-col li a, .contact-info-col li span { 
    color: #ffffff; /* COR DA FONTE ALTERADA PARA BRANCO */
    text-decoration: none; 
    line-height: 1.6; 
}
.contact-info-col li a:hover { text-decoration: underline; }

/* 10. Rodapé (Footer) */
.footer-col address a {
    color: #adb5bd;
    text-decoration: none;
}
.footer-col address a:hover {
    color: #ffffff;
}
.site-footer { 
    background-color: #0c0e20;
    color: #adb5bd; 
    padding: 60px 0 0 0; 
    font-size: 0.95rem; 
}
.container-footer { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #ffffff; font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 40px; 
    height: 2px; 
    background-color: #fdbf00; /* COR DA FAIXA ALTERADA PARA AMARELO */
}
.footer-col p, .footer-col address { line-height: 1.8; font-style: normal; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li a { color: #adb5bd; text-decoration: none; display: block; padding: 5px 0; transition: color 0.3s, padding-left 0.3s; }
.footer-col ul li a:hover { color: #ffffff; padding-left: 5px; }
.footer-col address i { 
    margin-right: 10px; 
    color: #fdbf00; /* COR DOS ÍCONES DE CONTATO ALTERADA PARA AMARELO */
}
.social-links a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); color: #ffffff; border-radius: 50%; text-decoration: none; margin-right: 10px; transition: background-color 0.3s, transform 0.3s; }
.social-links a:hover { 
    background-color: #fdbf00; /* COR DO HOVER DOS ÍCONES SOCIAIS ALTERADA PARA AMARELO */
    transform: translateY(-3px); 
}
.footer-bottom { border-top: 1px solid #444; padding: 20px 0; text-align: center; font-size: 0.9rem; }

/* 11. Responsividade */
@media (max-width: 768px) {
    /* ... (outras regras) ... */
    .footer-col { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .results-image-col img {
    max-width: 300px; /* <<-- ESTA É A LINHA QUE FAZ A MUDANÇA */
}
    .footer-col address i {
        display: block; /* Para o ícone ficar em sua própria linha no mobile */
        margin: 10px auto;
    }
}
/* 11. Responsividade */
.mobile-menu-toggle { display: none; }
.mobile-nav { display: none; }
@media (max-width: 992px) {
    .section-title { text-align: center !important; }
    .main-header .container {
        position: relative; /* Adicionado */
        justify-content: center; /* Alterado de space-between para center */
        flex-wrap: wrap; 
        align-items: center;
    }
    
    .main-nav, .btn-contact-header { display: none; }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute; /* Adicionado */
        right: 15px; /* Adicionado */
        top: 50%; /* Adicionado */
        transform: translateY(-50%); /* Adicionado */
    }
    .about-grid { flex-direction: column; }
    .about-text-col, .results-text-col { text-align: center; }
    .about-text-col .button-wrapper, .results-text-col .button-wrapper { text-align: center; }
    .results-grid { flex-direction: column-reverse; }
    .results-image-col { margin-bottom: 50px; }
    .contact-grid { flex-direction: column; padding: 40px; }
    .contact-info-col { padding-left: 0; border-left: none; margin-top: 40px; padding-top: 40px; border-top: 1px solid #e9ecef; }
}

@media (max-width: 768px) {
    .slide-caption {
        width: 90%; /* Ocupa mais da largura para textos não quebrarem tanto */
    }
    .slide-headline {
        font-size: 2rem; /* Tamanho do título principal reduzido */
        line-height: 1.3;
    }
    .slide-description {
        font-size: 1rem; /* Tamanho da descrição reduzida */
    }.mobile-menu-toggle { background: transparent; border: 1px solid rgba(255, 255, 255, 0.5); color: white; font-size: 1.5rem; cursor: pointer; z-index: 1001; padding: 5px 10px; border-radius: 5px; }
    .mobile-nav { display: flex; flex-direction: column; background-color: #030414; position: fixed; top: 80px; left: 0; width: 100%; padding: 10px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 1000; transform: translateY(-150%); transition: transform 0.4s ease-in-out; }
    .mobile-nav.active { transform: translateY(0); }
    .mobile-nav a { color: white; text-decoration: none; padding: 15px 20px; text-align: center; border-bottom: 1px solid #495057; font-size: 1.1rem; }
    .mobile-nav a:last-child { border-bottom: none; margin: 10px 20px; padding: 12px 20px; border-radius: 50px; background-color: #6935b1; border: none; }
    .mobile-nav a:last-child:hover { transform: none; box-shadow: none; }
    .section-title, .section-intro h2 { font-size: 2.2rem; }
    .about-text-col h3, .results-title { font-size: 2rem; }
    .services-grid { flex-direction: column; align-items: center; }
    .portfolio-swiper .swiper-slide { flex-direction: column; text-align: center; }
    .portfolio-text-content { text-align: center; }
    .portfolio-image-content { order: 1; }
    .portfolio-text-content { order: 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
}