/* ==========================================================================
   1. CORECODE DESIGN SYSTEM & RESET BÁSICO
   ========================================================================== */
   :root {
    --cor-fundo: #050505; 
    --cor-fundo-card: #121212; 
    --cor-texto-principal: #FFFFFF; 
    --cor-texto-secundario: #A0A0A0; 
    --cor-accent: #00FFFF; 
    --cor-accent-hover: #00CCCC; 
    
    --fonte-principal: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
    font-family: var(--fonte-principal);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 10px;
}

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.destaque {
    color: var(--cor-accent) !important;
}

.text-center {
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
}

/* ==========================================================================
   2. HEADER / NAVEGAÇÃO (ILHA FLUTUANTE GLASSMORPHISM)
   ========================================================================== */
header { 
    background-color: rgba(18, 18, 18, 0.7); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    height: 75px; 
    
    position: fixed; 
    top: 25px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 1100px; 
    border-radius: 50px; 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); 
    
    z-index: 1000; 
    display: flex; 
    align-items: center; 
}

header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    padding: 0 30px; 
}

.logo { 
    display: flex;
    align-items: center;
}

.logo-img { 
    height: 150px; 
    width: auto;
    filter: drop-shadow(0px 0px 10px rgba(0, 255, 255, 0.4)); 
    transition: 0.3s; 
}

.logo-img:hover {
    transform: scale(1.05);
}

nav { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    height: 70px; 
}

nav a { 
    color: var(--cor-texto-secundario); 
    text-decoration: none; 
    font-size: 0.95rem; 
    font-weight: 500; 
    transition: color 0.3s; 
}

nav a:hover { 
    color: var(--cor-accent); 
}

nav a.btn-contato-nav { 
    background-color: var(--cor-accent) !important;
    color: #050505 !important; 
    padding: 10px 28px; 
    border-radius: 30px; 
    font-weight: 700; 
    transition: all 0.3s ease;
    border: none; 
}

nav a.btn-contato-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
    color: #000 !important;
}

@media (max-width: 900px) {
    nav { display: none; }
    header { width: 95%; top: 15px; }
}

/* ==========================================================================
   3. HERO PRINCIPAL & BOTÕES
   ========================================================================== */
.hero { 
    position: relative;
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    padding-top: 120px; 
    overflow: hidden; 
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/plano_de_fundo_corecode.jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(8px); 
    transform: scale(1.05); 
    z-index: -2; 
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.6); 
    z-index: -1; 
}

.hero-content { 
    position: relative;
    z-index: 1; 
    max-width: 800px; 
    text-align: center; 
    margin: 0 auto; 
}

.hero h1 { 
    font-size: 3.8rem; 
    margin-bottom: 25px; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); 
}

.hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#home {
    text-align: center;
}

.btn-primary { 
    display: inline-block; 
    background-color: var(--cor-accent); 
    color: #000; 
    padding: 16px 36px; 
    font-size: 1.1rem;
    font-weight: 800; 
    text-decoration: none; 
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px; 
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4); 
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--cor-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.6);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--cor-accent);
    color: var(--cor-accent);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--cor-accent);
    color: #000;
}

/* ==========================================================================
   4. SEÇÕES AUXILIARES DE CONTEÚDO (Home Antiga)
   ========================================================================== */
/* --- SERVIÇOS RESUMIDOS --- */
.servicos {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.servicos h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.servicos-subtitle {
    text-align: center;
    color: var(--cor-texto-secundario);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--cor-fundo-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
    transition: border-color 0.3s, transform 0.3s;
}

.servico-card:hover {
    border-color: var(--cor-accent);
    transform: translateY(-5px);
}

.servico-card h3 {
    color: var(--cor-accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.servico-card p {
    color: var(--cor-texto-secundario);
    font-size: 1rem;
}

/* --- SEÇÃO DIFERENCIAIS (.porque-corecode) --- */
.porque-corecode { 
    padding: 100px 0; 
    background-color: var(--cor-fundo); 
}

.porque-corecode h2 { 
    text-align: center; 
    font-size: 2.8rem; 
    margin-bottom: 10px; 
}

.porque-corecode .subtitle { 
    text-align: center; 
    color: var(--cor-texto-secundario); 
    margin-bottom: 60px; 
}

.porque-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
}

.porque-card { 
    background-color: var(--cor-fundo-card); 
    padding: 30px; 
    border-radius: 8px; 
    border: 1px solid #1a1a1a; 
    display: flex; 
    align-items: center; 
    gap: 25px; 
    transition: 0.3s ease; 
    overflow: hidden; 
}

.porque-card:hover { 
    border-color: var(--cor-accent); 
    transform: translateX(10px); 
}

.porque-icon-area { 
    width: 60px; 
    height: 60px; 
    min-width: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}

.porque-img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
}

.porque-info { 
    flex: 1; 
}

.porque-info h3 { 
    color: var(--cor-accent); 
    font-size: 1.3rem; 
    margin-bottom: 5px; 
}

.porque-info p { 
    color: var(--cor-texto-secundario); 
    font-size: 0.95rem; 
    line-height: 1.5;
    margin: 0; 
}

@media (max-width: 850px) {
    .porque-grid { 
        grid-template-columns: 1fr; 
    }
}

/* --- PORTFÓLIO (BASE DOS CARDS) --- */
.portfolio {
    padding: 100px 0;
    background-color: var(--cor-fundo);
}

.portfolio h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.portfolio-subtitle {
    text-align: center;
    color: var(--cor-texto-secundario);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    /* Ajustado: Garante exatamente 2 colunas perfeitamente alinhadas no desktop */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Ajustado: No mobile, a grid do portfólio passa a renderizar em apenas 1 coluna por linha */
@media (max-width: 768px) {
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    #nav-links, .menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.portfolio-card {
    background-color: var(--cor-fundo-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-accent);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.portfolio-img-container {
    height: 250px;
    background-color: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-info {
    padding: 30px;
}

.tag {
    display: inline-block;
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--cor-accent);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--cor-texto-secundario);
    font-size: 0.95rem;
    margin-bottom: 25px;
    min-height: 70px;
}

/* ==========================================================================
   5. RESPONSIVIDADE GERAL DO HEADER & HERO
   ========================================================================== */
   @media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .logo-img {
        height: 100px; 
    }

    .logo {
        width: 200px;
    }
    
    nav {
        display: none; 
    }
}

/* ==========================================================================
   6. FOOTER CORECODE (LAYOUT PREMIUM CENTRALIZADO)
   ========================================================================== */
.footer {
    background-color: var(--cor-fundo-card); 
    padding: 80px 0 30px 0;
    border-top: 1px solid #1a1a1a;
    margin-top: 100px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-side {
    display: flex;
    justify-content: space-around; 
    gap: 30px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px; 
}

.footer-center .footer-logo-img {
    height: 200px; 
    width: auto;
    filter: drop-shadow(0px 0px 15px rgba(0, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.footer-center .footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-column h3 {
    color: var(--cor-texto-principal);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--cor-texto-secundario);
    text-decoration: line-through;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--cor-accent);
    padding-left: 5px; 
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    text-align: center; 
    color: var(--cor-texto-secundario);
    font-size: 0.85rem;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88; 
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

@media (max-width: 900px) {
    .footer-layout {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .footer-center {
        order: -1; 
        margin-bottom: 40px;
        padding: 0;
    }

    .footer-side {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   7. FÍSICA DE ANIMAÇÕES & SCROLL REVEAL
   ========================================================================== */
.hero h1 { 
    opacity: 0; 
    animation: fadeInDown 1s ease-out 0.2s forwards; 
}

.hero p {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards; 
}

.hero .btn-primary { 
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards; 
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.revelar {
    opacity: 0;
    transform: translateY(50px); 
    transition: all 0.8s ease-out; 
}

.revelar.mostrar {
    opacity: 1;
    transform: translateY(0); 
}

.revelar-esquerda {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.revelar-esquerda.mostrar {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   8. ESTILIZAÇÃO DA SEÇÃO SOBRE NÓS (FUSÃO)
   ========================================================================== */
   .sobre-hero {
    padding: 200px 0 100px 0; 
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,255,255,0.05), transparent);
}

.sobre-hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
}

.grid-sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.sobre-texto h2 { 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
}

.sobre-texto p { 
    color: var(--cor-texto-secundario); 
    line-height: 1.8; 
    margin-bottom: 20px; 
    font-size: 1.1rem;
}

.sobre-imagem .placeholder-img {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.sobre-imagem img {
    width: 100%;
    display: block;
    filter: grayscale(0.5); 
}

/* --- CARDS DE VALORES --- */
.valores { 
    padding: 100px 0; 
    background-color: #08080a; 
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.valor-card {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #1a1a1a;
    text-align: center;
    transition: 0.3s;
}

.valor-card:hover {
    border-color: var(--cor-accent);
    background: rgba(0,255,255,0.02);
}

.valor-card h3 { 
    color: var(--cor-accent); 
    margin-bottom: 15px; 
    font-size: 1.5rem; 
}

.valor-card p { 
    color: var(--cor-texto-secundario); 
    font-size: 0.95rem; 
}

@media (max-width: 900px) {
    .grid-sobre { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center; 
    }
    .valores-grid { 
        grid-template-columns: 1fr; 
    }
    .sobre-hero h1 { 
        font-size: 2.5rem; 
    }
}

/* ==========================================================================
   9. ESTILIZAÇÃO DA LISTA COMPLETA DE SERVIÇOS
   ========================================================================== */
.servicos-hero {
    padding: 200px 0 80px 0;
    text-align: center;
    background: radial-gradient(circle at 50% -20%, rgba(0, 255, 255, 0.1), transparent 60%);
}

.servicos-hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
}

.servicos-hero p {
    font-size: 1.15rem;
    color: var(--cor-texto-secundario);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.servicos-lista { 
    padding: 80px 0 120px 0; 
}

.servico-item {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    transition: 0.4s ease;
}

.servico-item:hover {
    background: rgba(0, 255, 255, 0.02);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.servico-icone {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2); 
    line-height: 1;
    transition: 0.4s;
}

.servico-item:hover .servico-icone {
    -webkit-text-stroke: 1px var(--cor-accent);
    color: rgba(0, 255, 255, 0.1);
}

.servico-conteudo h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.servico-conteudo p {
    color: var(--cor-texto-secundario);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.servico-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.servico-features li {
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servico-features li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--cor-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cor-accent);
}

/* --- SEÇÃO CALL TO ACTION (CTA BOX) --- */
.cta-section { 
    padding: 60px 0 120px 0; 
}

.cta-box {
    background: linear-gradient(135deg, rgba(18, 18, 20, 0.9), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cta-box h2 { 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
}

.cta-box p { 
    color: var(--cor-texto-secundario); 
    font-size: 1.1rem; 
    margin-bottom: 40px; 
}

@media (max-width: 900px) {
    .servico-item { 
        flex-direction: column; 
        gap: 20px; 
        padding: 30px; 
    }
    .servicos-hero h1 { 
        font-size: 2.5rem; 
    }
    .cta-box h2 { 
        font-size: 2rem; 
    }
}

/* ==========================================================================
   10. GALERIA DE CASES DE PORTFÓLIO
   ========================================================================== */
.portfolio-hero {
    padding: 200px 0 60px 0;
    text-align: center;
}

.portfolio-hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    line-height: 1.1; 
}

.portfolio-hero p {
    font-size: 1.15rem;
    color: var(--cor-texto-secundario);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    /* Força a exibição em exatamente 2 colunas de tamanhos iguais no PC */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden; 
    transition: 0.4s ease;
}

.portfolio-card:hover {
    border-color: var(--cor-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.portfolio-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: grayscale(0.4); 
    transition: transform 0.6s ease, filter 0.6s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
    filter: grayscale(0); 
}

.portfolio-info {
    padding: 35px;
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cor-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.portfolio-info p {
    color: var(--cor-texto-secundario);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    .portfolio-hero h1 { 
        font-size: 2.8rem; 
    }
    .portfolio-img-wrapper { 
        height: 250px; 
    }
}

/* ==========================================================================
   11. SEÇÃO DE CONTATO (ESTRUTURA INICIAL)
   ========================================================================== */
.contato-hero {
    padding: 200px 0 60px 0;
    text-align: center;
}

.contato-hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    line-height: 1.1; 
}

.contato-hero p {
    font-size: 1.15rem;
    color: var(--cor-texto-secundario);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   12. PÁGINA CONTATO & FORMULÁRIO NATURAL LANGUAGE
   ========================================================================== */
   .contato-interativo {
    padding: 40px 0 120px 0;
}

.form-manifesto {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    max-width: 1100px; 
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.frase-interativa {
    font-size: 1.5rem; 
    line-height: 2.6;   
    color: #e0e0e0;
    font-weight: 300;
    text-align: left;
}

.input-linha {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--cor-accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem; 
    font-weight: 600;
    padding: 4px 15px;
    margin: 0 8px;
    text-align: center;
    width: auto;
    min-width: 150px; 
    outline: none;
    transition: all 0.3s ease;
    vertical-align: baseline;
    display: inline-block; 
}

.input-linha:hover {
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: rgba(0, 255, 255, 0.6);
}

.input-linha:focus, .input-linha:valid:not(:placeholder-shown) {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 2px solid var(--cor-accent);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.05); 
}

/* --- AJUSTES CAIXAS DE SELEÇÃO (SELECTS) --- */
.select-linha {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: rgba(0, 255, 255, 0.5); 
}

.select-linha:valid {
    color: var(--cor-accent);
}

.select-linha option {
    background-color: #0a0a0c; 
    color: var(--cor-accent);
    font-size: 1.2rem;
    padding: 10px;
}

/* --- BOTÃO DE ENVIO --- */
.form-acoes {
    margin-top: 60px;
    text-align: right;
}

.btn-enviar-neon {
    background: transparent;
    color: var(--cor-accent);
    border: 2px solid var(--cor-accent);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
    font-family: 'Inter', sans-serif;
}

.btn-enviar-neon:hover {
    background: var(--cor-accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* ==========================================================================
   13. BOTÃO FLUTUANTE WHATSAPP PREMIUM
   ========================================================================== */
.wpp-flutuante {
    position: fixed;
    bottom: 40px; 
    right: 40px;   
    width: 65px;
    height: 65px;
    z-index: 9999; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    animation: pulso-wpp 2s infinite; 
    border-radius: 50%;
}

.wpp-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.wpp-flutuante:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(37, 211, 102, 0.4));
}

@keyframes pulso-wpp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .wpp-flutuante {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* ==========================================================================
   14. FOOTER PREMIUM GLOBAL
   ========================================================================== */
.footer {
    background-color: #050505;
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 60px;
}

.footer-side {
    display: flex;
    flex: 1; 
    gap: 60px; 
    min-width: 250px;
}

.left-side { justify-content: flex-start; }
.right-side { justify-content: flex-end; text-align: right; }

.footer-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 0 0 auto; 
    padding: 0 40px;
}

.footer-column h3 {
    color: var(--cor-accent);
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--cor-texto-secundario);
    text-decoration: underline;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-logo-img {
    width: 60px;
    opacity: 0.7;
    transition: 0.4s;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--cor-accent));
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    color: var(--cor-texto-secundario);
    font-size: 0.85rem;
}

/* ==========================================================================
   15. RESPONSIVIDADE INTERATIVA & FOOTER
   ========================================================================== */
   @media (max-width: 900px) {
    .frase-interativa { font-size: 1.5rem; line-height: 1.8; }
    .input-linha { font-size: 1.5rem; min-width: 150px; }
    .form-manifesto { padding: 40px 25px; text-align: justify; }
    .form-acoes { text-align: center; }
    .wpp-flutuante { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .wpp-flutuante svg { width: 30px; height: 30px; }

    .footer-layout {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .footer-side {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        text-align: center;
    }
    .left-side, .right-side {
        justify-content: center;
        text-align: center;
    }
    .footer-center {
        order: -1; 
        padding: 0;
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   16. RESET TOTAL PARA COMPATIBILIDADE PC / MOBILE (NAV & ILHA)
   ========================================================================== */

/* FORÇAR COMPORTAMENTO NO PC */
@media (min-width: 769px) {
    .header-ilha .menu-toggle {
        display: none !important;
    }

    .header-ilha #nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header-ilha #nav-links a {
        display: inline-block !important;
        margin: 0 10px !important;
    }
}

/* FORÇAR COMPORTAMENTO NO MOBILE */
@media (max-width: 768px) {
    #nav-links {
        display: none !important; 
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important; 
        left: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background-color: transparent !important; 
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #nav-links.menu-aberto {
        display: flex !important;
    }

    #nav-links a {
        display: block !important;
        width: 85% !important;
        text-align: center !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        color: white !important;
        padding: 18px !important;
        background-color: rgba(13, 13, 13, 0.98) !important; 
        border: 1px solid rgba(0, 255, 255, 0.1) !important;
        margin: 8px auto !important; 
    }
    
    #nav-links a:first-child {
        margin-top: 20px !important;
    }
    #nav-links a:last-child {
        margin-bottom: 20px !important;
    }

    .header-ilha, .container {
        overflow: visible !important; 
        position: relative !important;
        background-color: transparent !important; 
    }
}

/* ==========================================================================
   17. AJUSTE DE RESPONSIVIDADE PARA O FORMULÁRIO COMPLETO (CELULAR)
   ========================================================================== */
@media (max-width: 768px) {
    form, .contato-form, .container-contato {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important; 
        padding-right: 15px !important;
        box-sizing: border-box !important; 
        overflow-x: hidden !important; 
    }

    form input, 
    form select, 
    form textarea,
    .contato-form input,
    .contato-form select,
    .contato-form textarea {
        width: 100% !important; 
        max-width: 100% !important; 
        box-sizing: border-box !important; 
        margin-left: 0 !important; 
        margin-right: 0 !important;
    }

    form select {
        appearance: none; 
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300FFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.3c0%204.9%201.8%209.2%205.4%2012.8l128.1%20128.1c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.1c3.6-3.6%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
        background-repeat: no-repeat;
        background-position: right 10px top 50%;
        background-size: 12px auto;
        padding-right: 30px !important; 
    }
}

/* ==========================================================================
   X. ESTILOS DE BOTÕES GLOBAIS (ADICIONAL & CORREÇÃO)
   ========================================================================== */
.btn-primary {
    background: var(--cor-accent, #00FFFF);
    color: #000000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    border: 2px solid var(--cor-accent, #00FFFF);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--cor-accent, #00FFFF);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--cor-accent, #00FFFF);
    color: var(--cor-accent, #00FFFF);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

/* ==========================================================================
   Y. PORTFÓLIO: CORREÇÃO DE EXIBIÇÃO DE TEXTOS E CARDS
   ========================================================================== */
.portfolio-hero {
    padding: 100px 0 40px 0;
    text-align: center;
}

.portfolio-lista {
    padding: 40px 0 100px 0;
}

.portfolio-card {
    background: rgba(15, 15, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.03);
}

.portfolio-content {
    padding: 25px;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 12, 0.95));
    position: relative;
    z-index: 2;
}

.portfolio-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.portfolio-content p {
    color: #b0b0b5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: rgba(0, 255, 255, 0.06);
    color: var(--cor-accent, #00FFFF);
    border: 1px solid rgba(0, 255, 255, 0.15);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Z. SEÇÃO DE CONTATO: ESTILIZAÇÃO DO FORMULÁRIO BASEADO NO HTML
   ========================================================================== */
.contato-section {
    padding: 100px 0;
    position: relative;
}

.grid-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contato-info h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
}

.contato-info h2 span {
    color: var(--cor-accent, #00FFFF);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.contato-info p {
    color: #b0b0b5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contato-direto p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #e0e0e0;
}

.contato-direto strong {
    color: var(--cor-accent, #00FFFF);
}

.contato-formulario {
    background: rgba(10, 10, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 45px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cor-accent, #00FFFF);
    background: rgba(0, 255, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.contato-formulario .btn-primary {
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .grid-contato {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contato-info h2 {
        font-size: 2.2rem;
    }
    
    .contato-formulario {
        padding: 30px;
    }
}

/* ==========================================================================
   CONFIGURAÇÕES EXTRAS DE COMPORTAMENTO E VISIBILIDADE
   ========================================================================== */

/* Regras específicas para visualização em telas maiores (Desktop) */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}