/* ==========================================================================
   LET'S GO CAMPING SC - FOLHA DE ESTILOS COMPLETA E OTIMIZADA
   ========================================================================== */

   :root {
    --bg-dark: #07161f;
    --bg-card: #0b2432;
    --bg-card-hover: #102e3f;
    --text-light: #f7fbfd;
    --text-muted: #9bb2c1;
    --accent-gold: #f7bf44;
    --accent-green: #25d366;
    --accent-cyan: #4ed6ff;
    --line-color: rgba(255, 255, 255, 0.1);
    --max-width: 1180px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
  }
  
  body {
    color: var(--text-light);
    background: var(--bg-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.55;
    padding-bottom: 80px;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* ==========================================================================
     1. TOPBAR / NAVEGAÇÃO
     ========================================================================== */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(24px, calc((100vw - var(--max-width))/2));
    background: rgba(7, 22, 31, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-color);
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
  }
  
  .brand-copy strong {
    display: block;
    font-size: 0.95rem;
  }
  
  .brand-copy small {
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  
  .desktop-nav {
    display: flex;
    gap: 20px;
  }
  
  .desktop-nav a {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  
  .desktop-nav a:hover, 
  .desktop-nav a.active {
    color: var(--accent-cyan);
  }
  
  .header-socials {
    display: flex;
    gap: 10px;
  }
  
  .social-top {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-color);
  }
  
  /* ==========================================================================
     2. HERO SECTION
     ========================================================================== */
  .hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.08), transparent 60%),
                linear-gradient(180deg, rgba(7, 22, 31, 0.6) 0%, var(--bg-dark) 100%),
                url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  }
  
  .hero-content {
    max-width: 850px;
    z-index: 2;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(11, 36, 50, 0.8);
    border: 1px solid var(--line-color);
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--accent-gold);
  }
  
  .hero-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.3rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  
  .hero h1 span {
    color: var(--accent-cyan);
  }
  
  .hero p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
    border: none;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #e1306c, #c13584);
    color: #fff;
  }
  
  .btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  .btn-pdf {
    background: var(--accent-gold);
    color: #07161f;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .btn-pdf:hover {
    background: #e5ab35;
  }
  
  /* ==========================================================================
     3. ESTRUTURA GLOBAL DE SEÇÃO
     ========================================================================== */
  .section {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 60px 0;
  }
  
  .eyebrow {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
  }
  
  .section-heading h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
  }
  
  /* ==========================================================================
     4. COMUNIDADE / WHATSAPP
     ========================================================================== */
  .whatsapp-members-hero {
    padding: 60px 20px;
    background: linear-gradient(135deg, #06141d 0%, #0a2027 100%);
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
  }
  
  .whatsapp-members-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
  }
  
  .whatsapp-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  .whatsapp-phone {
    position: relative;
    width: 240px;
    height: 440px;
    padding: 8px;
    border-radius: 36px;
    background: #071015;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(-3deg);
    overflow: hidden;
  }
  
  .whatsapp-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
  }
  
  .whatsapp-phone-shade {
    position: absolute;
    inset: 8px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(3,15,18,0.9) 100%);
  }
  
  .whatsapp-phone-ui {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 3;
  }
  
  .whatsapp-mini-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-green);
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 8px;
  }
  
  .whatsapp-exclusive-pill {
    color: var(--accent-gold);
    border: 1px solid rgba(247, 191, 68, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
  }
  
  .whatsapp-members-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 15px 0;
  }
  
  .whatsapp-members-copy h2 span {
    color: var(--accent-green);
  }
  
  .whatsapp-member-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .whatsapp-member-benefits b {
    color: var(--accent-green);
  }
  
  .whatsapp-access-card {
    padding: 20px;
    border-radius: 18px;
    background: rgba(3, 13, 18, 0.6);
    border: 1px solid var(--line-color);
  }
  
  .whatsapp-access-status {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .whatsapp-access-status i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
  }
  
  .whatsapp-open-group {
    display: block;
    text-align: center;
    background: var(--accent-green);
    color: #05150b;
    padding: 12px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.85rem;
    margin-top: 15px;
  }
  
  /* ==========================================================================
     5. VÍDEO DESTACADO
     ========================================================================== */
  .video-card-simple {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .video-thumb-simple {
    height: 380px;
  }
  
  .video-thumb-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-simple-copy {
    padding: 25px;
    text-align: center;
  }
  
  .video-simple-copy h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .video-watch-cta {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 800;
  }
  
  /* ==========================================================================
     6. MAPA & FILTROS
     ========================================================================== */
  .map-filters-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .filter-btn:hover, .filter-btn.active {
    background: var(--accent-cyan);
    color: #07161f;
    border-color: var(--accent-cyan);
  }
  
  .member-map-shell {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line-color);
    background: #0b2432;
  }
  
  #map {
    width: 100% !important;
    height: 100% !important;
    min-height: 520px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .live-current-place, 
  .trip-stat-pill {
    z-index: 1000 !important;
  }
  
  .live-current-place {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 22, 31, 0.95);
    border: 1px solid var(--line-color);
    padding: 10px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  
  .live-current-place small {
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
  }
  
  .live-current-place strong {
    display: block;
    font-size: 0.95rem;
  }
  
  .live-pulse-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
  }
  
  .live-pulse-row i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3155;
    box-shadow: 0 0 8px #ff3155;
  }
  
  .live-pulse-row b {
    color: #ff3155;
    font-size: 0.65rem;
  }
  
  .trip-stat-pill {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    width: min(600px, calc(100% - 30px));
  }
  
  .trip-stat-card {
    flex: 1;
    background: rgba(5, 20, 29, 0.92);
    border: 1px solid var(--line-color);
    padding: 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(78, 214, 255, 0.1);
    color: var(--accent-cyan);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  
  .trip-stat-card strong {
    display: block;
    font-size: 1rem;
  }
  
  .trip-stat-card small {
    color: var(--text-muted);
    font-size: 0.65rem;
  }
  
  /* Estilização Escura dos Popups do Leaflet */
  .leaflet-popup-content-wrapper, 
  .leaflet-popup-tip {
    background: #0b2432 !important;
    color: #f7fbfd !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
  }
  
  .leaflet-container a.leaflet-popup-close-button {
    color: #9bb2c1 !important;
    padding: 8px !important;
  }
  
  .leaflet-container a.leaflet-popup-close-button:hover {
    color: #f7bf44 !important;
  }
  
  /* ==========================================================================
     7. CALCULADORA DE SUPRIMENTOS
     ========================================================================== */
  .calc-card {
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    border-radius: 20px;
    padding: 30px;
  }
  
  .calc-inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .input-group label {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 700;
  }
  
  .input-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-color);
    border-radius: 10px;
    padding: 10px 15px;
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
  }
  
  .input-group input:focus {
    border-color: var(--accent-cyan);
  }
  
  .calc-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    border-top: 1px solid var(--line-color);
    padding-top: 25px;
  }
  
  .res-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-color);
    border-radius: 14px;
    padding: 15px;
    text-align: center;
  }
  
  .res-card i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
  }
  
  .res-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-light);
  }
  
  .res-label {
    font-size: 0.75rem;
    color: var(--text-muted);
  }
  
  /* ==========================================================================
     8. GUIA DE NÓS
     ========================================================================== */
  .knots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .knot-card {
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .knot-demo {
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    place-items: center;
    position: relative;
    padding: 15px;
  }
  
  .knot-svg {
    width: 100%;
    height: 100%;
    max-width: 180px;
  }
  
  .knot-svg path, 
  .knot-svg circle {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* Animações de Nós */
  .knot-pinholo .rope-loop {
    animation: pinhoLoop 2.5s infinite ease-in-out;
    transform-origin: center;
  }
  
  @keyframes pinhoLoop {
    0%, 100% { transform: scale(1); stroke: var(--accent-gold); }
    50% { transform: scale(1.25); stroke: var(--accent-cyan); }
  }
  
  .knot-correr .rope-slider {
    animation: correrSlide 2.5s infinite ease-in-out;
  }
  
  @keyframes correrSlide {
    0%, 100% { cx: 30; stroke: var(--accent-gold); }
    50% { cx: 70; stroke: var(--accent-green); }
  }
  
  .knot-esticador .rope-stretch {
    animation: esticadorStretch 2s infinite ease-in-out;
  }
  
  @keyframes esticadorStretch {
    0%, 100% { stroke-dasharray: 100; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 100; stroke-dashoffset: 20; stroke: var(--accent-cyan); }
  }
  
  .knot-direito .rope-left {
    animation: direitoInterlock 3s infinite ease-in-out;
  }
  
  .knot-direito .rope-right {
    animation: direitoInterlock 3s infinite ease-in-out 0.2s;
  }
  
  @keyframes direitoInterlock {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); stroke: var(--accent-gold); }
  }
  
  .knot-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .knot-info h3 {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
  }
  
  .knot-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
  }
  
  .knot-tag {
    align-self: flex-start;
    background: rgba(78, 214, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
  }
  
  /* ==========================================================================
     9. CHECKLIST INTERATIVO
     ========================================================================== */
  .checklist-card {
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    border-radius: 20px;
    padding: 30px;
  }
  
  .print-header {
    display: none;
  }
  
  .checklist-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .checklist-header-actions > div {
    flex-grow: 1;
    max-width: 500px;
  }
  
  .checklist-progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  
  .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-green));
    transition: width 0.3s ease;
  }
  
  .checklist-status {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 800;
  }
  
  .checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .checklist-group h3 {
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .items-list {
    margin-bottom: 15px;
  }
  
  .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .check-item:hover {
    color: var(--text-light);
  }
  
  .check-item input[type="checkbox"] {
    accent-color: var(--accent-green);
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  
  .add-item-box {
    display: flex;
    gap: 8px;
    margin-top: 10px;
  }
  
  .input-new-item {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-light);
    font-size: 0.8rem;
    outline: none;
  }
  
  .input-new-item:focus {
    border-color: var(--accent-cyan);
  }
  
  .btn-add-item {
    background: var(--accent-cyan);
    color: #07161f;
    border: none;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
  }
  
  .btn-add-item:hover {
    transform: scale(1.05);
  }
  
  /* ==========================================================================
     10. SOBRE NÓS
     ========================================================================== */
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .about-copy-card {
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    padding: 30px;
    border-radius: 20px;
  }
  
  .mini-label {
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  
  .about-copy-card h3 {
    font-size: 1.6rem;
    margin: 10px 0;
  }
  
  .about-lead {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .about-copy-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
  }
  
  .dog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .dog-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
  }
  
  .photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line-color);
    /* Remove a altura fixa min-height e deixa a altura se adaptar à imagem */
    height: auto; 
    display: flex;
    flex-direction: column;
  }
  
  .photo-card img {
    width: 100%;
    height: 100%;
    /* Exibe a foto inteira mantendo a proporção original sem cortar */
    object-fit: contain; 
    /* Centraliza o enquadramento */
    object-position: center; 
    display: block;
    position: relative;
  }
  
  .photo-card figcaption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    font-weight: 800;
    font-size: 0.85rem;
  }
  
  /* ==========================================================================
     11. REDES SOCIAIS & DOCK
     ========================================================================== */
  .social-grid-v108 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  
  .social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--line-color);
  }
  
  .social-platform-tile {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
  }
  
  .social-card strong {
    display: block;
    font-size: 0.95rem;
  }
  
  .social-card span {
    color: var(--text-muted);
    font-size: 0.75rem;
  }
  
  .round-arrow {
    margin-left: auto;
    color: var(--text-muted);
  }
  
  .trip-dock-v105 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
    background: rgba(3, 16, 25, 0.95);
    border-top: 1px solid var(--line-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .trip-dock-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .trip-dock-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
  }
  
  .trip-dock-brand strong {
    font-size: 0.8rem;
  }
  
  .trip-dock-brand small {
    display: block;
    color: var(--text-muted);
    font-size: 0.6rem;
  }
  
  .trip-dock-separator {
    width: 1px;
    height: 24px;
    background: var(--line-color);
  }
  
  .trip-dock-v105 a {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
  }
  
  .trip-dock-member {
    color: var(--accent-cyan) !important;
  }
  
  /* ==========================================================================
     12. REGRAS DE IMPRESSÃO / PDF EXCLUSIVO (1 PÁGINA)
     ========================================================================== */
  @media print {
    @page {
      margin: 10mm;
      size: A4 portrait;
    }
  
    html, body {
      height: auto !important;
      overflow: visible !important;
      background: #ffffff !important;
      color: #000000 !important;
    }
  
    body * {
      visibility: hidden;
    }
  
    #checklistPrintArea, 
    #checklistPrintArea * {
      visibility: visible;
    }
  
    #checklistPrintArea {
      position: absolute !important;
      left: 0 !important;
      top: 0 !important;
      width: 100% !important;
      background: #ffffff !important;
      color: #000000 !important;
      padding: 0 !important;
      margin: 0 !important;
      border: none !important;
      box-shadow: none !important;
    }
  
    .print-header {
      display: flex !important;
      align-items: center;
      gap: 15px;
      border-bottom: 2px solid #25d366;
      padding-bottom: 12px;
      margin-bottom: 15px;
    }
  
    .print-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }
  
    .print-header-text h2 {
      font-size: 16pt;
      color: #07161f;
      margin: 0;
    }
  
    .print-header-text p {
      font-size: 10pt;
      color: #333333;
      margin: 2px 0 0 0;
    }
  
    .btn-pdf,
    .add-item-box,
    .topbar,
    .trip-dock-v105 {
      display: none !important;
    }
  
    .checklist-grid {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 15px !important;
    }
  
    .checklist-group h3 {
      color: #0b2432 !important;
      border-bottom: 1.5px solid #25d366 !important;
      padding-bottom: 3px;
      margin-bottom: 8px;
      font-size: 11pt !important;
    }
  
    .check-item {
      color: #222222 !important;
      font-size: 9.5pt !important;
      margin-bottom: 4px !important;
    }
  
    .check-item input[type="checkbox"] {
      accent-color: #25d366 !important;
    }
  
    .checklist-status {
      color: #555555 !important;
      font-size: 9pt !important;
    }
  }
  
  /* ==========================================================================
     13. RESPONSIVIDADE MOBILE OTIMIZADA
     ========================================================================== */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
  
    .trip-dock-brand, 
    .trip-dock-separator {
      display: none;
    }
  
    .video-thumb-simple {
      height: 240px;
    }
  
    /* Otimização do Mapa para Telas Menores */
    .member-map-shell {
      height: 440px !important;
    }
  
    .live-current-place {
      top: 10px !important;
      width: calc(100% - 30px) !important;
      padding: 8px 12px !important;
    }
  
    .live-current-place strong {
      font-size: 0.85rem !important;
    }
  
    /* Disposição Horizontal dos Cards do Mapa */
    .trip-stat-pill {
      bottom: 10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: calc(100% - 20px) !important;
      flex-direction: row !important;
      gap: 6px !important;
    }
  
    .trip-stat-card {
      padding: 6px 8px !important;
      gap: 6px !important;
      border-radius: 10px !important;
    }
  
    .stat-icon {
      width: 26px !important;
      height: 26px !important;
      font-size: 0.75rem !important;
    }
  
    .trip-stat-card strong {
      font-size: 0.75rem !important;
    }
  
    .trip-stat-card small {
      display: none !important;
    }
  
    /* Popups do Mapa no Mobile */
    .leaflet-popup-content-wrapper {
      max-width: 260px !important;
      padding: 4px !important;
    }
  
    .leaflet-popup-content p {
      font-size: 0.75rem !important;
      margin-top: 4px !important;
    }
  
    .leaflet-control-attribution {
      font-size: 0.55rem !important;
      background: rgba(0, 0, 0, 0.6) !important;
      color: #888 !important;
    }
  }