@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');
/*!
Theme Name: Green Fire Treinamentos
Theme URI: https://greenfiretreinamentos.com.br
Description: Tema WordPress personalizado para Green Fire Treinamentos - Segurança do Trabalho
Version: 1.0.0
Author: Green Fire Treinamentos
Author URI: https://greenfiretreinamentos.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: green-fire
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   RESET E VARIÁVEIS CSS
   ============================================ */

:root {
  /* CORES BASE */
  --primary: #0f766e;       /* Verde Petróleo */
  --primary-dark: #115e59;  
  --primary-light: #2dd4bf; 
  
  /* O DEGRADÊ (Azul Petróleo -> Verde) */
  --gradient-primary: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  
  --secondary: #1f2937;     /* Cinza Quase Preto */
  --accent: #111827;        
  
  --background: #ffffff;    /* Branco Puro */
  --foreground: #374151;    /* Cinza Médio */
  --border: #e5e7eb;
  --muted: #f3f4f6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif !important;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--accent);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   LAYOUT GERAL
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

/* MENU NO TOPO - VISÍVEL NO INÍCIO, PREPARADO PARA SUMIR NO SCROLL */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.3s ease;
}

/* Estado visível */
.site-header.header-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Estado oculto ao rolar */
.site-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-navigation a {
  font-weight: 500;
  position: relative;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.main-navigation a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(45, 134, 89, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(45, 134, 89, 0.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Compensação da altura do menu fixo */
.hero-section,
.tutor-wrap,
#tutor-gw-dashboard {
  padding-top: 80px !important;
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-buttons {
    gap: 0.5rem;
  }

  .hero-section,
  .tutor-wrap,
  #tutor-gw-dashboard {
    padding-top: 80px !important;
  }
}

/* ============================================
   SEÇÃO HERO
   ============================================ */

.hero-section {
  margin-top: 0;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--background) 0%, rgba(212, 165, 116, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text h1 .highlight {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: 500;
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  min-height: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 600px;
  margin: 0 auto;
}

.section-light {
  background-color: white;
}

.section-dark {
  background-color: var(--accent);
  color: white;
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

/* ============================================
   CARDS E COMPONENTES
   ============================================ */

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.card-text {
  color: var(--foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--accent);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

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

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

/* --- CORREÇÃO DO MENU (Deixar Horizontal) --- */

.site-header ul, 
.site-header .menu, 
.main-navigation ul {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none !important;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.site-header li {
    margin-bottom: 0 !important;
}

.site-header a {
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    display: block;
}

/* ============================================
   ESTILO PREMIUM TECH (Impacto Visual)
   ============================================ */

body {
    background-color: #f0f4f8 !important;
}

h1, h2 {
    background: linear-gradient(90deg, #047857 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800 !important;
    letter-spacing: -1px;
}

.card {
    background: #ffffff !important;
    border: none !important;
    border-top: 5px solid #059669 !important; 
    border-radius: 8px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.25) !important; 
}

.card-icon {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.3) !important;
}

.hero-section {
    background: linear-gradient(to bottom, #ffffff 0%, #ecfdf5 100%) !important;
    border-bottom: 1px solid #d1fae5;
}

.btn-primary {
    background: #059669 !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39) !important;
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* ============================================
   BOTÕES DE DESTAQUE NO MENU (Validador, Cliente, etc)
   ============================================ */

.main-navigation .btn-destaque a {
    background: rgba(5, 150, 105, 0.1) !important; 
    border: 1px solid #059669 !important;
    color: #059669 !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    font-weight: 700 !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.main-navigation .btn-destaque a:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

.main-navigation ul li:last-child a {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.3);
}

/* ============================================
   CORREÇÃO FINAL DO BOTÃO ÁREA DO CLIENTE (RETO E ALINHADO)
   ============================================ */

body .main-navigation li.btn-vermelho a,
body .main-navigation li.btn-vermelho a:link,
body .main-navigation li.btn-vermelho a:visited {
    white-space: nowrap !important;
    color: #000000 !important;
    border: 2px solid #dc2626 !important;
    background-color: transparent !important;
    background: none !important;
    font-weight: 900 !important;
    padding: 8px 18px !important; 
    border-radius: 50px !important;
    margin-left: 5px;
    transition: all 0.3s ease !important;
    line-height: 1.2 !important; 
    display: inline-block !important;
}

body .main-navigation li.btn-vermelho a:hover,
body .main-navigation li.btn-vermelho:hover a {
    background-color: #dc2626 !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    border-color: #dc2626 !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5) !important;
    transform: translateY(-3px) !important;
    opacity: 1 !important;
}

/* ============================================
   FORÇAR FONTE POPPINS EM TUDO
   ============================================ */
body, h1, h2, h3, h4, h5, h6, 
p, a, li, span, div, input, button, 
.site-title, .main-navigation a {
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================
   CORREÇÃO GERAL DO MENU (SEM QUEBRA DE LINHA)
   ============================================ */

.main-navigation a,
.main-navigation li a {
    white-space: nowrap !important;
    width: auto !important;
    display: inline-block !important;
}

/* ============================================
   EFEITO ZOOM EM IMAGENS (Micro-interações)
   ============================================ */

.card img, .wp-block-image img {
    transition: transform 0.5s ease;
}

.card:hover img, .wp-block-image:hover img {
    transform: scale(1.05);
}

.card, .wp-block-image {
    overflow: hidden;
}

/* ============================================
   ANIMAÇÃO DE PULSO NO WHATSAPP
   ============================================ */

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}

/* ============================================
   SEGURANÇA B2B EXTREMA (BLINDAGEM)
   ============================================ */

.tutor-btn-enroll, 
.tutor-course-purchase-btn-wrap,
form.tutor-course-enroll-form {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.tutor-course-status-enroll .tutor-price-preview-box,
.tutor-course-status-enroll .tutor-course-sidebar-card {
    display: none !important;
}

.tutor-course-status-continue .tutor-btn,
.tutor-course-status-continue .tutor-price-preview-box,
.tutor-course-status-learning .tutor-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* ============================================
   CORREÇÃO MOBILE (MENU HAMBÚRGUER + WHATSAPP)
   ============================================ */

@media (max-width: 768px) {

    .site-header {
        background: rgba(255, 255, 255, 0.98) !important;
    }

    .site-header .container {
        padding: 0 14px !important;
    }

    .site-header .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        height: 74px !important;
        padding: 0 !important;
        gap: 12px;
        position: relative;
    }

    .site-logo {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-logo img {
        height: 48px !important;
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 0;
        background: #ffffff;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        cursor: pointer;
        z-index: 10002;
        flex: 0 0 44px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Esconde o menu por padrão no mobile */
    .main-navigation {
        display: none !important;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff !important;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
        padding: 12px;
        z-index: 10001;
    }

    .main-navigation.menu-open {
        display: block !important;
    }

    .main-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-navigation li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .main-navigation a,
    .main-navigation li a {
        display: block !important;
        width: 100% !important;
        padding: 12px 14px !important;
        border-radius: 10px !important;
        white-space: normal !important;
        text-align: left !important;
        color: #1f2937 !important;
        background: #f8fafc !important;
        border: 1px solid #e5e7eb !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        box-shadow: none !important;
    }

    .main-navigation a:hover,
    .main-navigation li a:hover {
        background: #ecfdf5 !important;
        border-color: #a7f3d0 !important;
        color: #0f766e !important;
        transform: none !important;
    }

    /* Remove estilos agressivos dos botões especiais no mobile */
    body .main-navigation li.btn-vermelho a,
    body .main-navigation li.btn-vermelho a:link,
    body .main-navigation li.btn-vermelho a:visited,
    .main-navigation .btn-destaque a,
    .main-navigation ul li:last-child a {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 12px 14px !important;
        border-radius: 10px !important;
        white-space: normal !important;
        text-align: left !important;
        background: #f8fafc !important;
        color: #1f2937 !important;
        border: 1px solid #e5e7eb !important;
        box-shadow: none !important;
        transform: none !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
    }

    .hero-section,
    .tutor-wrap,
    #tutor-gw-dashboard {
        padding-top: 74px !important;
    }

    .whatsapp-float {
        display: flex !important;
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 999999 !important;
        font-size: 24px !important;
    }

    .whatsapp-float i,
    .whatsapp-float img {
        margin: 0 auto;
    }
}

/* --- CORREÇÃO DE MOBILE (ZOOM E MENU) --- */

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

/* 2. MELHORIA DO MENU DE ALUNO (Tira do Rodapé e põe na Tela) */
@media (max-width: 1199px) {
    .tutor-dashboard-left-menu {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        display: block !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        z-index: 1 !important;
    }

    .tutor-dashboard-left-menu ul li a {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 8px;
        padding: 15px !important;
        color: #333 !important;
        display: flex !important;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .tutor-dashboard-left-menu ul li.active a {
        background: var(--primary, #0f766e) !important;
        color: white !important;
        border-color: var(--primary, #0f766e) !important;
    }

    .tutor-dashboard-footer-mobile {
        display: none !important;
    }
}