         :root {
         --laranja: #ec8e17;
         --amarelo: #ffd12f;
         --bege: #FFF7ce;
         --azul: #002e45;
         --branco: #ffffff;
         }
         body {
         font-family: 'Poppins', Arial, sans-serif;
         background-color: #f5f7fa;
         color: var(--azul);
         line-height: 1.6;
         overflow-x: hidden;
         }
         header {
         background: linear-gradient(135deg, var(--azul), #001b2a);
         color: var(--branco);
         padding: 18px 40px;
         border-bottom: 3px solid var(--amarelo);
         position: sticky;
         top: 0;
         z-index: 1000;
         }
         header img {
         border-radius: 50%;
         border: 2px solid var(--amarelo);
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
         }
         header a {
         color: var(--branco);
         text-decoration: none;
         font-weight: 500;
         padding: 8px 14px;
         border-radius: 6px;
         transition: background 0.3s, color 0.3s;
         }
         header a:hover {
         background-color: rgba(255, 255, 255, 0.1);
         color: var(--amarelo);
         }
         header .btn-warning {
         background: var(--amarelo);
         color: var(--azul);
         font-weight: 600;
         padding: 10px 20px;
         border-radius: 6px;
         transition: transform 0.2s ease, background 0.3s ease;
         }
         header .btn-warning:hover {
         background: #ffd12f;
         transform: translateY(-2px);
         }
         header h1 {
         font-size: 2.2rem;
         font-weight: 800;
         margin: 0;
         }
         .section-nav {
         text-align: center;
         margin: 30px 0;
         }
         .section-nav a {
         display: inline-block;
         margin: 5px 10px;
         padding: 10px 20px;
         background: var(--laranja);
         color: var(--branco);
         font-weight: 600;
         border-radius: 25px;
         text-decoration: none;
         transition: background 0.3s, transform 0.3s;
         }
         .section-nav a:hover {
         background: var(--amarelo);
         color: var(--azul);
         transform: translateY(-3px);
         }
         section {
         position: relative;
         padding: 80px 20px;
         margin-bottom: 40px;
         border-radius: 20px;
         overflow: hidden;
         box-shadow: 0 10px 35px rgba(0,0,0,0.15);
         background: var(--branco);
         }
         section::before {
         content: '';
         position: absolute;
         width: 200%;
         height: 120%;
         top: -10%;
         left: -50%;
         background: linear-gradient(135deg, var(--bege), var(--amarelo));
         transform: rotate(-5deg);
         z-index: 0;
         }
         section>.container {
         position: relative;
         z-index: 1;
         }
         section h2 {
         font-size: 2.5rem;
         color: var(--laranja);
         text-align: center;
         margin-bottom: 50px;
         }
         .card-creative {
         border-radius: 20px;
         box-shadow: 0 15px 35px rgba(0,0,0,0.2);
         background: var(--branco);
         padding: 25px;
         margin-bottom: 20px;
         position: relative;
         overflow: visible; /* permite que a imagem "flutue" fora do card */
         transition: transform 0.3s;
         }
         .btnn-custom {
         display: inline-block;
         margin-top: 30px;
         padding: 14px 30px;
         font-weight: 700;
         border-radius: 50px;
         text-decoration: none;
         color: var(--branco);
         background: linear-gradient(135deg, var(--laranja), #ff5c3f);
         transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
         }
         .btnn-custom:hover {
         background: linear-gradient(135deg, var(--azul), #004b70);
         transform: translateY(-3px);
         box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
         }
         .card-img {
         position: absolute;
         width: 180px; /* tamanho padrão */
         border-radius: 12px;
         box-shadow: 0 10px 25px rgba(0,0,0,0.3);
         top: -40px; /* levanta a imagem acima do card */
         right: 15px; /* ajusta posição à direita */
         transform: rotate(5deg);
         transition: opacity 0.4s ease, filter 0.4s ease;
         cursor: pointer;
         opacity: 1;
         z-index: 2;
         }
         .card-img:hover {
         opacity: 0.25;
         filter: blur(2px);
         transform: scale(1.05) rotate(5deg);
         }
         /* MODAL LOGIN */
         .modal-overlay {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         backdrop-filter: blur(12px);
         background: rgba(0, 0, 0, 0.8);
         display: none;
         align-items: center;
         justify-content: center;
         z-index: 2000;
         }
         .modal-overlay.active {
         display: flex;
         }
         .modal-content {
         background: transparent;
         padding: 40px 30px;
         border-radius: 15px;
         text-align: center;
         position: relative;
         animation: fadeIn 0.5s ease;
         }
         .graffiti-text {
         font-family: 'Sedgwick Ave Display', cursive;
         font-size: 4rem;
         line-height: 1.1;
         background: linear-gradient(90deg, #ff005e, #ff9f1c, #ffe600, #00f5d4, #00bbf9, #aa00f9, #ff005e);
         background-size: 200% auto;
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         animation: shine 6s linear infinite;
         text-shadow: 
         3px 3px 0 #ff9f1c,              /* contorno preto */
         -2px -2px 8px rgba(0,0,0,0.2), /* glow leve atrás */
         4px 4px 10px rgba(0,0,0,0.4);  /* sombra mais pesada */
         letter-spacing: 2px;
         position: relative;
         display: inline-block;
         transform: rotate(-1deg);
         }
         /* Efeito animado no gradiente */
         @keyframes shine {
         0% { background-position: 0% center; }
         100% { background-position: 200% center; }
         }
         /* Respingo de tinta */
         .paint-splat, .paint-splat.second {
         position: absolute;
         border-radius: 50%;
         background: radial-gradient(circle, #ff005c 0%, transparent 70%);
         width: 120px;
         height: 120px;
         top: -40px;
         left: -60px;
         transform: rotate(-20deg);
         opacity: 0.7;
         }
         .paint-splat.second {
         top: 120px;
         left: 80%;
         width: 100px;
         height: 100px;
         background: radial-gradient(circle, #00ffea 0%, transparent 70%);
         }
         .close-btn {
         position: absolute;
         top: -10px;
         right: 50px;
         font-size: 2rem;
         color: #ffae00;
         cursor: pointer;
         text-shadow: 1px 1px 3px #000;
         }
         @keyframes fadeIn {
         from {opacity: 0; transform: scale(0.8);}
         to {opacity: 1; transform: scale(1);}
         }
         /* ======= AJUSTES RESPONSIVOS ======= */
         @media (max-width: 768px) {
         /* HEADER */
         header {
         padding: 10px 18px;
         }
         header img {
         width: 50px;
         height: 50px;
         }
         header h1 {
         font-size: 1.2rem;
         }
         header nav {
         gap: 6px;
         }
         header a {
         font-size: 0.8rem;
         padding: 4px 8px;
         }
         header .btn-warning {
         padding: 6px 12px;
         font-size: 0.8rem;
         }
         /* INTRO */
         .intro {
         height: 240px;
         }
         .intro-content h2 {
         font-size: 1.3rem;
         }
         .intro-content p {
         font-size: 0.85rem;
         }
         .btn-hero-outline {
         padding: 8px 18px;
         font-size: 0.8rem;
         }
         /* SEÇÃO HIGHLIGHTS */
         #highlights {
         margin: 40px 0;
         }
         #highlights h2 {
         font-size: 1.5rem;
         }
         #highlights .card {
         padding: 14px;
         font-size: 0.85rem;
         }
         #highlights h3 {
         font-size: 1.2rem;
         }
         #highlights img {
         max-width: 160px;
         }
         /* FOOTER */
         footer {
         padding: 15px;
         font-size: 0.8rem;
         }
         footer h5 {
         font-size: 0.95rem;
         }
         footer p, 
         footer li, 
         footer a {
         font-size: 0.8rem;
         }
         footer .bi {
         font-size: 1.1rem;
         }
         .graffiti-text {
         font-size: 2rem;
         line-height: 1.2;
         }
         .modal-content {
         padding: 20px 15px;
         }
         }
         /* BREAKPOINT EXTRA PARA TELAS MUITO PEQUENAS (até 480px) */
         @media (max-width: 480px) {
         header h1 {
         font-size: 1rem;
         }
         .intro-content h2 {
         font-size: 1.1rem;
         }
         .intro-content p {
         font-size: 0.75rem;
         }
         #highlights h2 {
         font-size: 1.3rem;
         }
         #highlights h3 {
         font-size: 1rem;
         }
         footer {
         font-size: 0.75rem;
         }
         }
         .btn-custom2 {
         background: linear-gradient(135deg, var(--laranja), #ff5c3f);
         color: var(--branco);
         font-weight: 600;
         padding: 12px 28px;
         border-radius: 25px;
         transition: all 0.3s ease;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
         }
         .btn-custom2:hover {
         background: var(--amarelo);
         color: var(--azul);
         transform: translateY(-4px) scale(1.05);
         box-shadow: 0 0 15px var(--amarelo), 0 8px 20px rgba(0, 0, 0, 0.2);
         }
         .card-creative.reto {
         transform: rotate(0deg) !important;
         }
         #map {
         height: 400px;
         width: 100%;
         border-radius: 20px;
         margin-top: 30px;
         box-shadow: 0 10px 25px rgba(0,0,0,0.3);
         }
         footer {
         background: #001b2a;
         color: var(--branco);
         text-align: center;
         padding: 20px;
         font-size: 0.95rem;
         border-top: 4px solid var(--amarelo);
         }
         html {
         scroll-behavior: smooth;
         }
         @media (max-width:768px) {
         section h2 {
         font-size: 2rem;
         }
         .card-creative img {
         width: 120px !important;
         }
         }
/* Nova estrutura do menu mobile com animação */
.mobile-menu {
    display: flex; /* Mantemos flex, mas controlamos a visibilidade */
    flex-direction: column;
    background-color: #001b2a;
    padding: 0 20px; /* Padding vertical será animado */
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    border-bottom: 3px solid var(--amarelo);
    
    /* Estado inicial (escondido) */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado ativo (visível) */
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    max-height: 300px; /* Valor alto o suficiente para o conteúdo */
    padding: 10px 20px;
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--branco);
    padding: 12px 0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Pequeno delay na entrada dos links */
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

/* Delay progressivo para cada link */
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }

/* Animação do ícone do hambúrguer */
#menuIcon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

/* Quando o menu estiver ativo, o ícone gira 180 graus */
.menu-open #menuIcon {
    transform: rotate(180deg);
    color: var(--amarelo); /* Opcional: muda a cor quando aberto */
}

         /* ======= AJUSTES ESPECÍFICOS PARA O NOME ======= */

@media (max-width: 768px) {
  header h1 {
    /* Ajuste para tablets e celulares em paisagem */
    font-size: 1.2rem !important; 
    letter-spacing: 1px;
    white-space: nowrap; /* Evita que o nome quebre em duas linhas */
  }
}

@media (max-width: 480px) {
  header h1 {
    /* Ajuste para celulares pequenos */
    font-size: 0.95rem !important; 
    letter-spacing: 0.5px;
  }
  
  /* Reduz um pouco o espaçamento lateral para o texto caber */
  .ms-2 {
    margin-left: 0.4rem !important;
  }
}
@media (max-width: 768px) {
  /* Diminui o logo proporcionalmente */
  header img {
    width: 45px !important;
    height: 45px !important;
  }
  
  header h1 {
    font-size: 1.1rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  /* Ajuste para telas muito pequenas (iPhone SE, etc) */
  header img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important; /* Arredondamento menor para logos menores */
  }
  
  header h1 {
    font-size: 0.9rem !important;
    letter-spacing: 0;
  }

  /* Ajusta o padding do header para ganhar espaço lateral */
  header {
    padding: 10px 12px !important;
  }
}
/* Sub-Header Fixo no Topo (Desktop) */
.sub-header-nav {
    position: sticky;
    top: 83px; /* Altura do seu header principal */
    left: 0;
    width: 100%;
    /* Efeito Glassmorphism */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--amarelo);
    z-index: 998;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.section-nav-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.sub-header-nav a {
    color: var(--azul);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 5px 12px;
}

.sub-header-nav a:hover {
    color: var(--laranja);
}

/* --- VERSÃO MOBILE (Igual ao seu modelo) --- */

.menu-mobile-toggle.sub-header-toggle {
    display: none; 
    position: fixed;
    top: 95px; /* Aparece logo abaixo do header */
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--laranja);
    border: none;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.sub-header-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-mobile-toggle.sub-header-toggle {
        display: flex;
    }

    .sub-header-nav {
        position: fixed;
        top: 0;
        height: 100vh;
        background: rgba(0, 46, 69, 0.98); /* Fundo sólido para leitura no mobile */
        transform: translateX(100%); /* Esconde na lateral direita */
        display: flex;
        align-items: center;
        border-bottom: none;
        border-left: 3px solid var(--amarelo);
    }

    .sub-header-nav.active {
        transform: translateX(0); /* Desliza para dentro */
    }

    .section-nav-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .sub-header-nav a {
        font-size: 1.3rem;
        color: white;
        width: 100%;
        text-align: center;
    }
}