        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }

        /* Header e Navegação */
        header {
            background: linear-gradient(135deg, #455a64 0%, #2c3e50 100%);
            color: white;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: #e65100;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            display: inline-block;
        }

        .logo p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        nav ul li a:hover {
            background: #e65100;
            transform: translateY(-2px);
        }

        nav ul li a.active {
            background: #e65100;
        }

        /* Container Principal */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        /* Seções (abas) */
        .section {
            display: none;
            animation: fadeIn 0.5s;
        }

        .section.active-section {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Cards e Elementos Comuns */
        .card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-left: 6px solid #e65100;
            padding-left: 1rem;
        }

        h3 {
            color: #455a64;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .btn {
            background: #e65100;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            background: #bf360c;
        }

        /* Grid para cards */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        /* FLUXOGRAMA - NOVO ESTILO */
        .fluxograma-container {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 20px;
            position: relative;
            overflow-x: auto;
        }

        .fluxograma-timeline {
            display: flex;
            flex-direction: column;
            position: relative;
            min-width: 300px;
        }

        .fluxograma-item {
            display: flex;
            margin-bottom: 1.5rem;
            position: relative;
            align-items: flex-start;
        }

        .fluxograma-ano {
            min-width: 120px;
            font-weight: 700;
            font-size: 1.3rem;
            color: #e65100;
            background: rgba(230, 81, 0, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            text-align: center;
            margin-right: 2rem;
            border: 2px solid #e65100;
        }

        .fluxograma-conteudo {
            flex: 1;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            border-left: 6px solid #e65100;
            transition: transform 0.3s;
        }

        .fluxograma-conteudo:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(230, 81, 0, 0.2);
        }

        .fluxograma-conteudo h4 {
            color: #2c3e50;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .fluxograma-conteudo p {
            color: #555;
            margin-bottom: 0;
        }

        .fluxograma-setas {
            display: flex;
            justify-content: center;
            margin: 0.5rem 0 1.5rem 0;
            color: #e65100;
            font-size: 2rem;
            font-weight: bold;
            margin-left: 120px;
        }

        .fluxograma-setas span {
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Responsividade do fluxograma */
        @media (max-width: 768px) {
            .fluxograma-item {
                flex-direction: column;
            }
            
            .fluxograma-ano {
                margin-right: 0;
                margin-bottom: 1rem;
                align-self: flex-start;
            }
            
            .fluxograma-setas {
                margin-left: 0;
            }
            
            .fluxograma-conteudo:hover {
                transform: translateY(-5px);
            }
        }

        /* Mapa - com Limites do Bairro */
        .map-container {
            width: 100%;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem 0;
            border: 3px solid #e65100;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .map-info {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1rem;
            border-left: 4px solid #e65100;
        }
        
        .map-coordinates {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .map-coordinate-item {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .map-coordinate-item strong {
            color: #e65100;
            display: block;
            margin-bottom: 0.3rem;
        }

        /* Cards de Curiosidades */
        .curiosity-card {
            background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
            border-left: 4px solid #e65100;
            margin: 1rem 0;
            padding: 1.2rem;
            border-radius: 10px;
        }

        .curiosity-icon {
            font-size: 2rem;
            margin-right: 1rem;
            float: left;
        }

        /* Depoimentos - Corrigidos */
        .testimonial {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 1.5rem;
            position: relative;
            margin: 2rem 0;
        }

        .testimonial::before {
            content: '"';
            font-size: 4rem;
            color: #e65100;
            opacity: 0.3;
            position: absolute;
            top: -10px;
            left: 10px;
        }

        .testimonial-author {
            margin-top: 1rem;
            font-weight: 600;
            color: #455a64;
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e65100;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1rem;
        }

        /* Lista de Pontos */
        .points-list {
            list-style: none;
        }

        .points-list li {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .points-list li::before {
            content: '✓';
            color: #e65100;
            font-weight: 700;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        /* Cards de Lazer */
        .leisure-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .leisure-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .leisure-info {
            padding: 1.2rem;
        }

        .leisure-info h4 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .tag {
            background: #e65100;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            display: inline-block;
            margin-right: 0.5rem;
        }

        /* Rodapé */
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                justify-content: center;
                margin-top: 1rem;
                gap: 0.8rem;
            }

            nav ul li a {
                font-size: 0.85rem;
                padding: 0.4rem 0.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }
            
            .map-container {
                height: 350px;
            }
        }
