* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            background: linear-gradient(to bottom right, #fef3c7, #ffffff, #fed7aa);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-section img {
            height: 2.5rem;
            width: 2.5rem;
        }

        .logo-section span {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
        }

        nav {
            display: none;
            gap: 2rem;
        }

        nav a {
            color: #475569;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #0f172a;
        }

        @media (min-width: 768px) {
            nav {
                display: flex;
            }
        }

        /* Hero Section */
        .hero {
            padding: 5rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        @media (min-width: 768px) {
            .hero {
                padding: 8rem 0;
            }
        }

        .hero-content h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #0f172a;
        }

        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        .hero-content h1 .highlight {
            color: #f97316;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 0.75rem;
            background: #fed7aa;
            color: #9a3412;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #475569;
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

/* APAGUE a linha que tinha #topbar e coloque estas no lugar: */
body.exported #reload-btn, 
body.exported #download-btn { 
    display: none !important; 
}

        .button-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .button-group {
                flex-direction: row;
            }
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(to right, #f97316, #fb923c);
            color: white;
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: #0f172a;
            border: 2px solid #cbd5e1;
        }

        .btn-secondary:hover {
            background: #f1f5f9;
        }

        .hero-image {
            display: none;
        }

        .hero-image img {
            max-width: 100%;
            filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
        }

        /* Features Section */
        .features {
            background: linear-gradient(to right, #fef3c7, #fef08a);
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            color: #0f172a;
        }

        @media (min-width: 768px) {
            .section-header h2 {
                font-size: 3rem;
            }
        }

        .section-header p {
            font-size: 1.25rem;
            color: #475569;
            max-width: 42rem;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background: white;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .feature-icon.orange {
            background: linear-gradient(135deg, #f97316, #fb923c);
        }

        .feature-icon.teal {
            background: linear-gradient(135deg, #ea580c, #d97706);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: #0f172a;
        }

        .feature-card p {
            color: #475569;
            font-size: 0.95rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .step-number.orange {
            background: linear-gradient(135deg, #f97316, #fb923c);
        }

        .step-number.teal {
            background: linear-gradient(135deg, #ea580c, #d97706);
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: #0f172a;
        }

        .step p {
            color: #475569;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(to right, #f97316, #fb923c);
            padding: 5rem 0;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .cta h2 {
                font-size: 3rem;
            }
        }

        .cta p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-cta {
            background: white;
            color: #f97316;
            padding: 1rem 2.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-cta:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 3rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-section h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
        }

        .logo-footer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .logo-footer img {
            height: 2rem;
            width: 2rem;
        }

        .logo-footer span {
            color: white;
            font-weight: 700;
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Arrow icon */
        .arrow {
            width: 1.25rem;
            height: 1.25rem;
            display: inline-block;
        }

        /* Estilo para a Seção de Exemplo de Mapa */
.example-map {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.example-map .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.example-map h2 {
    font-size: 32px;
    color: #2C2420;
    margin-bottom: 15px;
    font-weight: 700;
}
.example-map p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}
.example-map .map-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}
.example-map .map-preview:hover {
    transform: translateY(-5px);
}
.example-map .map-preview img {
    width: 100%;
    display: block;
}
.example-map .map-preview .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(224, 123, 31, 0.15); /* Tom laranja suave */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.example-map .map-preview:hover .overlay {
    opacity: 1;
}
.example-map .map-preview .overlay span {
    background: #E07B1F;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(224, 123, 31, 0.3);
}

/* Estilo para a Seção Faça o Seu Mapa */
.make-your-map {
    padding: 80px 0;
    background-color: #fcfaf7; /* Um tom levemente diferente para destacar */
    text-align: center;
}
.make-your-map .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.make-your-map h2 {
    font-size: 32px;
    color: #2C2420;
    margin-bottom: 20px;
    font-weight: 700;
}
.make-your-map p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}
.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.download-card {
    background: #fff;
    border: 1px solid #e3e9ec;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.download-card:hover {
    transform: translateY(-5px);
    border-color: #E07B1F;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.download-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.download-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0d4f4f;
}
.download-card .btn-download {
    margin-top: 15px;
    font-size: 14px;
    color: #E07B1F;
    font-weight: 700;
    text-transform: uppercase;
}
.portfolio-section {
    padding: 80px 0;
    background-color: #fff; 
    text-align: center;
}
.portfolio-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.portfolio-section h2 {
    font-size: 32px;
    color: #2C2420;
    margin-bottom: 20px;
    font-weight: 700;
}
.portfolio-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}
.portfolio-section .btn-portfolio {
    display: inline-block;
    background-color: #fb923c; 
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(13, 79, 79, 0.2);
}
.portfolio-section .btn-portfolio:hover {
    background-color: #f97316;
    transform: translateY(-2px);
}


        