/* =================================================================
   Tu Mapa IA: FINAL CORRECTED STYLESHEET
   ================================================================= */
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

   :root {
       --planeta-color-primary: #7C3AED;
       --planeta-color-secondary: #0EA5E9;
       --planeta-hero-image: url('../assets/images/creadores_hero.webp');
       --planeta-color-primary-rgb: 124, 58, 237;
       --planeta-color-secondary-rgb: 14, 165, 233;
       --color-dark-text: #1E2B3B;
       --font-primary: 'Poppins', sans-serif;
   }
   
   body { 
       font-family: var(--font-primary); 
       color: var(--color-dark-text);
       background-color: #f9fafb;
   }
   
   /* =================================================================
      STANDARDIZED NAVIGATION BAR STYLES (UPDATED)
      ================================================================= */
   .tumapa-nav { background-color: #0E0E10; color: #ffffff; padding: 1rem 1.5rem; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
   .tumapa-nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
   
   /* --- FINAL LOGO & HOVER EFFECT STYLES --- */
   .tumapa-nav-logo a {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       text-decoration: none;
   }
   .tumapa-nav-logo a img {
       height: 45px; /* Adjust size as needed */
       width: auto;
       display: block;
   }
   .tumapa-nav-logo a .logo-golden { display: none; }
   .tumapa-nav-logo a .logo-white { display: block; }
   .tumapa-nav-logo a .tumapa-nav-title {
       font-family: 'Poppins', sans-serif;
       font-size: 1.25rem;
       font-weight: 600;
       color: #FFFFFF;
       transition: color 0.2s ease-in-out;
   }
   .tumapa-nav-logo a:hover .logo-golden { display: block; }
   .tumapa-nav-logo a:hover .logo-white { display: none; }
   .tumapa-nav-logo a:hover .tumapa-nav-title {
       color: #FFC107;
   }
   
   .tumapa-hamburger { display: none; background: transparent; border: none; cursor: pointer; z-index: 1010; position: relative; width: 30px; height: 24px; padding: 0; }
   .tumapa-hamburger span,
   .tumapa-hamburger::before,
   .tumapa-hamburger::after { content: ''; display: block; position: absolute; left: 0; width: 100%; height: 3px; background-color: #ffffff; border-radius: 3px; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; }
   .tumapa-hamburger::before { top: 0; }
   .tumapa-hamburger span { top: 10px; }
   .tumapa-hamburger::after { top: 20px; }
   .tumapa-hamburger.is-active::before { top: 10px; transform: rotate(45deg); }
   .tumapa-hamburger.is-active span { opacity: 0; }
   .tumapa-hamburger.is-active::after { top: 10px; transform: rotate(-45deg); }
   .tumapa-nav-links { display: flex; gap: 1.5rem; }
   .tumapa-nav-links a { color: #ffffff; text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.2s ease-in-out; }
   .tumapa-nav-links a:hover { color: #FFC107; }
   @media (max-width: 768px) {
       .tumapa-hamburger { display: block; }
       .tumapa-nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(14, 14, 16, 0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 1005; }
       .tumapa-nav-links.is-active { display: flex; }
       .tumapa-nav-links a { font-size: 2rem; }
   }
   
   /* --- Hero & Banners --- */
   .hero-section { 
       background-image: linear-gradient(180deg, rgba(var(--planeta-color-primary-rgb), 0.85), rgba(var(--planeta-color-secondary-rgb), 0.6)), var(--planeta-hero-image); 
       background-size: cover; 
       background-position: center; 
       background-attachment: fixed;
   }
   .section-title {
       background: linear-gradient(to left, var(--planeta-color-secondary), var(--planeta-color-primary));
       -webkit-background-clip: text;
       background-clip: text;
       color: transparent;
   }
   .guia-link-banner { background-color: #f3f4f6; padding: 1rem; text-align: center; border-bottom: 1px solid #e5e7eb; }
   .guia-link-banner p { margin: 0; font-size: 0.95rem; }
   .guia-link-banner .guia-link { font-weight: bold; color: var(--planeta-color-primary); text-decoration: none; margin-left: 0.5rem; }
   .guide-cta-banner { background-color: rgba(var(--planeta-color-primary-rgb), 0.08); border-radius: 15px; padding: 1.8em 2em; margin: 2em auto; text-align: center; max-width: 680px; border: 1px solid rgba(var(--planeta-color-primary-rgb), 0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
   .guide-cta-title { font-size: 1.65rem; font-weight: 700; margin-top: 0; margin-bottom: 0.6em; line-height: 1.2; }
   .guide-cta-description { font-size: 1em; line-height: 1.5; max-width: 560px; margin: 0.5em auto 1.2em auto; color: #475569; }
   
   /* --- Buttons --- */
   .hero-button { display: inline-block; font-weight: bold; padding: 0.75rem 2rem; border-radius: 9999px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.2s ease-in-out; background-color: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.4); color: white; text-decoration: none; }
   .hero-button:hover { background-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
   .guide-cta-button { background-image: linear-gradient(180deg, var(--planeta-color-primary) 0%, var(--planeta-color-secondary) 100%); border-radius: 12px; color: #ffffff; font-weight: 700; font-size: 1.05rem; padding: 0.7em 2em; text-decoration: none; display: inline-block; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(var(--planeta-color-primary-rgb), 0.4); }
   
   /* --- CORRECTED: Newsletter Button Base Style --- */
   .planeta-gradient-button { 
       background: linear-gradient(135deg, var(--planeta-color-primary) 0%, var(--planeta-color-secondary) 100%); 
       color: white; 
       transition: all 0.3s ease; 
       box-shadow: 0 4px 15px rgba(var(--planeta-color-primary-rgb), 0.4); 
   }
   .planeta-gradient-button:hover, .guide-cta-button:hover { 
       transform: translateY(-2px); 
       box-shadow: 0 6px 20px rgba(var(--planeta-color-primary-rgb), 0.5); 
   }
   
   /* --- Cards & Grid --- */
   .logo-hover { display: block; margin: 0 auto; transition: all 0.3s ease; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); }
   .logo-hover:hover { transform: scale(1.1); filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)); }
   .tools-grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
   .tool-card { background: white; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; border: 1px solid #e2e8f0; padding: 24px; display: flex; flex-direction: column; }
   .tool-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(var(--planeta-color-primary-rgb), 0.15); border-color: var(--planeta-color-primary); }
   .card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
   .card-logo-container { width: 60px; height: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background-color: #f8f9fa; border-radius: 12px; padding: 5px; }
   .card-logo { max-width: 100%; max-height: 100%; object-fit: contain; }
   .card-title { font-size: 1.25rem; font-weight: 600; line-height: 1.3; margin-top: 4px;}
   .card-slogan { font-size: 0.9rem; color: #64748B; margin-top: 4px; }
   .card-body { flex-grow: 1; margin-bottom: 16px; }
   .card-description { font-size: 0.95rem; color: #475569; }
   .card-footer { border-top: 1px solid #e2e8f0; padding-top: 16px; }
   .card-tags { margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
   .tag { background-color: rgba(var(--planeta-color-primary-rgb), 0.1); color: var(--planeta-color-primary); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; }
   .card-actions { display: flex; justify-content: space-between; align-items: center; }
   .card-details-link { font-weight: 600; color: var(--color-dark-text); text-decoration: none; transition: color 0.2s ease; font-size: 0.9rem; cursor: pointer; }
   .card-details-.card-details-link:hover { color: var(--planeta-color-primary); text-decoration: underline; }
   .card-cta-button { background: linear-gradient(135deg, var(--planeta-color-primary) 0%, var(--planeta-color-secondary) 100%); color: white; font-weight: 600; padding: 8px 14px; font-size: 0.9rem; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; text-align: center; box-shadow: 0 2px 8px rgba(var(--planeta-color-primary-rgb), 0.3); }
   .card-cta-button:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(var(--planeta-color-primary-rgb), 0.4); }
   
   /* ========================================================
      FIX: NEWSLETTER AND FOOTER STYLES
      ======================================================== */
   .bg-slate-100 { background-color: #f1f5f9; }
   .bg-slate-800 { background-color: #1e293b; }
   .text-white { color: #ffffff; }
   .text-slate-400 { color: #94a3b8; }
   .text-slate-500 { color: #64748b; }
   .border-slate-700 { border-color: #334155; }
   .footer-link { color: #94a3b8; transition: color 0.2s ease-in-out; text-decoration: none; }
   .footer-link:hover { color: var(--planeta-color-primary); }