/* style.css - v2.4 Corrigido e com menu mobile */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
    --primary-color: #0077FF;
    --primary-gradient: linear-gradient(90deg, #0077FF 0%, #0059B3 100%);
    --dark-color: #1a202c;
    --light-gray-color: #f7fafc;
    --text-color: #4a5568;
    --white-color: #ffffff;
    --border-radius: 12px;
    --font-family: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.7;
}

/* --- ANIMAÇÃO DE SCROLL --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- CABEÇALHO --- */
.header { position: fixed; top: 20px; left: 0; width: 100%; z-index: 1000; display: flex; justify-content: center; padding: 0 20px; }
.main-menu { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 8px; border-radius: 50px; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.7); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; width: auto; }
.main-menu .logo { height: 50px; cursor: pointer; transition: transform 0.4s ease; }
.main-menu a { color: var(--dark-color); text-decoration: none; font-weight: 500; padding: 10px 15px; border-radius: 30px; transition: all 0.4s ease; }

/* Botão do Menu Mobile - Escondido no Desktop */
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark-color); cursor: pointer; z-index: 1001; }

/* --- ESTILOS DO MENU HOVER (APENAS DESKTOP) --- */
@media (min-width: 993px) {
    .main-menu a { opacity: 0; transform: scale(0.9); visibility: hidden; }
    .header:hover .main-menu { gap: 15px; }
    .header:hover .main-menu a { opacity: 1; transform: scale(1); visibility: visible; }
    .header:hover .main-menu a:hover { background: var(--primary-color); color: var(--white-color); }
    .header:hover .main-menu .logo { transform: scale(1.05); }
}

/* --- CORREÇÃO DE ESPAÇAMENTO PRINCIPAL --- */
main { padding-top: 150px; } /* Valor ajustado */

/* --- SEÇÕES GERAIS --- */
section { padding: 40px 5%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.8rem; color: var(--dark-color); margin-bottom: 10px; }
.section-title p { font-size: 1.1rem; max-width: 600px; margin: auto; }

/* --- BANNER INTERATIVO (MEIA-LUA) - ATUALIZADO --- */
.banner-interactive {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(120deg, #232526 0%, #414345 100%), url('/assets/home/img/banner-bg.jpg') center/cover no-repeat;
    overflow: hidden;
    transition: background 0.5s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    padding-top: 40px;
    z-index: 1;
}
.banner-interactive:hover {
    background: linear-gradient(120deg, #232526cc 0%, #414345cc 100%), url('/assets/home/img/banner-bg.jpg') center/cover no-repeat;
    filter: brightness(1.08) saturate(1.1);
}
.banner-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 18px 0 18px 18px;
    gap: 24px;
}
.banner-image-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0;
    display: flex;
    align-items: flex-start;
}
.banner-interactive::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #232526cc 0%, #414345cc 100%);
    z-index: 1;
    pointer-events: none;
    transition: background 0.5s;
}
.banner-interactive:hover::after {
    background: linear-gradient(120deg, #232526b0 0%, #414345b0 100%);
}
/* Adição do fundo "Meia-Lua" */
.banner-interactive::before {
    content: '';
    position: relative;
    top: -25vh;
    left: -20%;
    width: 140%;
    height: 120vh;
    background: linear-gradient(45deg, rgba(0, 119, 255, 0.05), rgba(0, 89, 179, 0.15));
    border-radius: 0 0 50% 50%;
    z-index: 1;
    transform: rotate(-10deg);
}
.banner-interactive .banner-content { position: relative; }
.banner-image-container { position: relative; width: 100%; }
#notebook-image { max-width: 900px; border-radius: var(--border-radius); }
.info-points { position: relative; top: 20%; left: 85%; transform: translateY(-50%); width: 250px; height: 250px; }
.point { position: relative; display: flex; align-items: center; background: var(--white-color); color: var(--dark-color); padding: 12px 20px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); cursor: default; opacity: 0; transform: scale(0.5); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.banner-image-container:hover .point { opacity: 1; transform: scale(1); }
.point i { color: var(--primary-color); margin-right: 10px; font-size: 1.3rem; }
.point-1 { transform: rotate(-65deg) translate(190px) rotate(65deg); transition-delay: 0.1s; }
.point-2 { transform: rotate(-25deg) translate(190px) rotate(25deg); transition-delay: 0.2s; }
.point-3 { transform: rotate(25deg) translate(190px) rotate(-25deg); transition-delay: 0.3s; }
.point-4 { transform: rotate(65deg) translate(190px) rotate(-65deg); transition-delay: 0.4s; }
.banner-image-container:hover .point-1 { transform: rotate(-65deg) translate(210px) rotate(65deg) scale(1); }
.banner-image-container:hover .point-2 { transform: rotate(-25deg) translate(210px) rotate(25deg) scale(1); }
.banner-image-container:hover .point-3 { transform: rotate(25deg) translate(210px) rotate(-25deg) scale(1); }
.banner-image-container:hover .point-4 { transform: rotate(65deg) translate(210px) rotate(-65deg) scale(1); }

/* --- BANNER DE APRESENTAÇÃO (TEXTO E BOTÃO) --- */
.banner-intro { text-align: center; padding-top: 0; padding-bottom: 100px; }
.intro-content { max-width: 800px; margin: auto; }
.intro-content h1 { font-size: 3.2rem; color: var(--dark-color); line-height: 1.2; margin-bottom: 20px; }
.intro-content p { font-size: 1.2rem; margin-bottom: 30px; }
.btn { background: var(--primary-gradient); color: var(--white-color); padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3); }

/* --- BENTO GRID DE SOLUÇÕES --- */
.solutions-section { background-color: var(--light-gray-color); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 20px; max-width: 1200px; margin: auto; }
.bento-item { background-color: var(--white-color); padding: 30px; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.bento-item i { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; display: block; }
.bento-item h3 { font-size: 1.5rem; color: var(--dark-color); margin-bottom: 10px; }
.bento-item h4 { font-size: 1.2rem; color: var(--dark-color); }
.bento-item a { color: var(--primary-color); text-decoration: none; font-weight: 700; }
.item-1 { grid-column: 1 / 3; }
.item-2, .item-3 { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.item-4 { grid-column: 2 / 4; }

/* --- SLIDER DE DEPOIMENTOS --- */
.testimonials-section { overflow: hidden; background: var(--white-color); padding: 80px 0; }
.testimonial-slider { display: flex; width: 100%; }
.slider-track { display: flex; align-items: center; gap: 80px; animation: scroll 40s linear infinite; }
.slider-track img { height: 40px; opacity: 0.6; transition: opacity 0.3s ease; }
.slider-track:hover { animation-play-state: paused; }
.slider-track img:hover { opacity: 1; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SEÇÃO SOBRE --- */
.about-section { background-color: var(--light-gray-color); }
.about-container { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: auto; }
.about-text { flex-basis: 55%; }
.about-image { flex-basis: 45%; }
.about-image img { width: 100%; border-radius: var(--border-radius); }

/* --- RODAPÉ --- */
.footer { background-color: var(--dark-color); color: #a0aec0; padding: 60px 5% 20px; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-column { flex: 1; min-width: 220px; }
.footer-column h4 { color: var(--white-color); margin-bottom: 20px; font-size: 1.1rem; }
.footer-column.about-col p { margin: 20px 0; }
.footer-logo { height: 40px; margin-bottom: 15px; }
.social-media a { color: #a0aec0; font-size: 1.4rem; margin-right: 20px; transition: color 0.3s ease; }
.social-media a:hover { color: var(--primary-color); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-column ul li a { color: #a0aec0; text-decoration: none; transition: color 0.3s ease; }
.footer-column ul li a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #4a5568; }


/* --- MEDIA QUERIES PARA RESPONSIVIDADE --- */

/* Tablet e Mobile */
@media (max-width: 992px) {
    .header { justify-content: space-between; }
    .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white-color);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        /* Redefinindo estilos do desktop */
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
        box-shadow: none;
    }
    .main-menu.is-open {
        transform: translateX(0);
    }
    .main-menu a {
        font-size: 1.5rem;
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }
    .main-menu .logo {
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 30px;
        right: 25px;
    }
    .intro-content h1 { font-size: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .item-1, .item-4 { grid-column: auto; }
    .about-container { flex-direction: column; }
    .info-points { display: none; } /* Ocultar pontos interativos no mobile para simplicidade */
    main { padding-top: 120px; }
}

@media (max-width: 768px) {
    .banner-interactive { padding-left: 5%; justify-content: center; text-align: center; }
    #notebook-image { max-width: 80%; }
    .banner-interactive::before { width: 200%; left: -50%; } /* Ajusta fundo para telas menores */
    .section-title h2 { font-size: 2.2rem; }
}
/* === SEÇÃO GNVISION (ATUALIZADO) === */
        .gnvision-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: #fff;
            overflow: hidden;
            position: relative;
        }
        .gnvision-bg-circle {
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }
        .circle-1 { top: -100px; right: -100px; }
        .circle-2 { bottom: -100px; left: -100px; background: rgba(37, 211, 102, 0.1); }

        .gnvision-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .gnvision-text h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
            background: linear-gradient(90deg, #fff, #aab7c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .gnvision-text p {
            font-size: 1.15em;
            line-height: 1.7;
            margin-bottom: 30px;
            color: #e0e6ed;
        }
        .gnvision-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 35px;
        }
        .gn-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: 10px;
            border-left: 4px solid #0d6efd;
            transition: transform 0.3s;
        }
        .gn-feature:hover { transform: translateX(10px); background: rgba(255, 255, 255, 0.1); }
        .gn-feature i { color: #0d6efd; font-size: 1.2em; }
        .gn-feature span { font-weight: 500; }

        .btn-gnvision {
            padding: 15px 35px;
            background: #0d6efd;
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-gnvision:hover {
            background: #fff;
            color: #0d6efd;
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
        }

        /* Mockup do Sistema */
        .gnvision-mockup {
            position: relative;
        }
        .browser-window {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            animation: floatSystem 6s ease-in-out infinite;
        }
        .window-header {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
            padding-left: 5px;
        }
        .dot { width: 12px; height: 12px; border-radius: 50%; }
        .dot.red { background: #ff5f56; }
        .dot.yellow { background: #ffbd2e; }
        .dot.green { background: #27c93f; }
        
        .window-content {
            background: #fff; /* Fundo branco para destacar a logo */
            border-radius: 6px;
            height: 300px; /* Altura fixa para manter o padrão */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        /* Classe específica para a imagem da logo/sistema */
        .system-logo-img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            display: block;
        }

        @keyframes floatSystem {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @media (max-width: 992px) {
            .gnvision-container { grid-template-columns: 1fr; text-align: center; }
            .gn-feature { justify-content: center; text-align: left; }
            .gnvision-mockup { margin-top: 40px; }
        }