/* ===========================================
   RESET E ESTILOS GLOBAIS (aplicados a todos)
   =========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================================
   COMPONENTES REUTILIZÁVEIS (todos usam)
   =========================================== */

/* MENU RESPONSIVO - ESTILO UNIFICADO */
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  will-change: transform;
  transform: translateZ(0);
  border-bottom: 3px solid #f4c400;
}

/* VERSÃO DESKTOP */
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(15px, 2vw, 30px);
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.menu-logo {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  color: #f4c400;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.menu-logo i {
  font-size: clamp(22px, 2.5vw, 28px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.5vw, 25px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.desktop-nav a {
  text-decoration: none;
  color: #555555;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: clamp(14px, 1vw, 16px);
  border-radius: 20px;
  padding: 8px 15px;
}

.desktop-nav a:hover {
  color: #a88400;
  background: #fff9e6;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(244, 196, 0, 0.1);
}

.desktop-nav a i {
  font-size: clamp(14px, 1vw, 16px);
  color: #f4c400;
}

/* BOTÃO ACESSAR NO MENU */
.btn-acessar {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  border: 2px solid #f4c400;
  padding: 10px 20px;
  border-radius: 50px;
  color: #000000 !important;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-left: 10px;
  font-size: clamp(14px, 1vw, 16px);
}

.btn-acessar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 196, 0, 0.2);
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
}

.btn-acessar.active {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000 !important;
  border: 2px solid #f4c400;
}

/* VERSÃO MOBILE */
.mobile-menu-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 60px;
  background: #ffffff;
  border-bottom: 2px solid #f4c400;
}

.mobile-logo {
  font-size: 18px;
  font-weight: 800;
  color: #f4c400;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.mobile-logo i {
  font-size: 20px;
}

.menu-toggle {
  background: #fff9e6;
  border: 2px solid #f4c400;
  font-size: 20px;
  color: #a88400;
  cursor: pointer;
  padding: 5px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  border-radius: 10px;
  transition: all 0.3s;
}

.menu-toggle:hover {
  background: #fff6c4;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(244, 196, 0, 0.15);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 0;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 3px solid #f4c400;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 16px 20px;
  text-decoration: none;
  color: #555555;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(244, 196, 0, 0.1);
}

.mobile-nav a:hover {
  background: #fff9e6;
  color: #f4c400;
  padding-left: 25px;
}

.mobile-nav a i {
  width: 20px;
  text-align: center;
  font-size: 18px;
  color: #f4c400;
}

/* HEADER CENTRALIZADO - ESTILO UNIFICADO */
.header {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  padding: clamp(12px, 1.5vw, 14px) clamp(15px, 2vw, 20px);
  color: #000000;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.3);
  margin-top: 70px;
  text-align: center;
  line-height: 1.4;
  border-bottom: 3px solid #daa520;
  width: 100%;
}

/* FOOTER - ESTILO UNIFICADO */
.footer {
  background: #1a1a1a;
  padding: clamp(35px, 5vw, 50px) 0 clamp(20px, 3vw, 25px);
  margin-top: auto;
  color: #cccccc;
  width: 100%;
  border-top: 5px solid #f4c400;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(15px, 2vw, 20px);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 30vw, 300px), 1fr));
  gap: clamp(30px, 4vw, 40px);
  margin-bottom: clamp(30px, 4vw, 40px);
}

.footer-logo {
  font-size: clamp(22px, 2.5vw, 24px);
  font-weight: 800;
  color: #f4c400;
  margin-bottom: clamp(18px, 2.5vw, 20px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links h4 {
  color: #f4c400;
  margin-bottom: clamp(18px, 2.5vw, 20px);
  font-size: clamp(17px, 1.8vw, 18px);
  font-weight: 800;
}

.footer-links a {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: clamp(10px, 1.2vw, 12px);
  transition: all 0.3s;
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 500;
}

.footer-links a:hover {
  color: #f4c400;
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: clamp(18px, 2.5vw, 20px);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.6;
  color: #aaaaaa;
  text-align: center;
}

/* BOTÕES REUTILIZÁVEIS */
.btn-hero {
  padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(16px, 1.8vw, 18px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #f4c400;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(244, 196, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(244, 196, 0, 0.2);
}

.btn-details {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  border: 2px solid #f4c400;
  padding: clamp(10px, 1.5vw, 12px) clamp(15px, 2vw, 18px);
  border-radius: 10px;
  color: #000000 !important;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(244, 196, 0, 0.2);
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 14px);
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
}

.btn-details:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 196, 0, 0.3);
}

.btn-details:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(244, 196, 0, 0.2);
}

.btn-details i {
  font-size: clamp(14px, 1.6vw, 16px);
}

/* FORMULÁRIOS BÁSICOS */
.form-group {
  margin-bottom: clamp(20px, 2.5vw, 25px);
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555555;
  font-size: clamp(14px, 1.5vw, 15px);
}

.form-control {
  width: 100%;
  padding: clamp(14px, 1.8vw, 16px) clamp(16px, 2vw, 20px);
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-size: clamp(15px, 1.6vw, 16px);
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333333;
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  border-color: #f4c400;
  box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.1);
}

.form-control.error {
  border-color: #ff4757;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: clamp(12px, 1.5vw, 15px);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  font-size: clamp(16px, 1.8vw, 18px);
  width: clamp(38px, 4vw, 44px);
  height: clamp(38px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s;
}

.toggle-password:hover {
  background: #f5f5f5;
  color: #f4c400;
}

.submit-btn {
  width: 100%;
  padding: clamp(16px, 2vw, 18px);
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  border: 2px solid #f4c400;
  border-radius: 12px;
  color: #000000;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.3);
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* SEÇÕES BÁSICAS */
.section {
  padding: clamp(40px, 6vw, 60px) clamp(15px, 3vw, 20px);
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 36px);
  color: #a88400;
  margin-bottom: 40px;
  position: relative;
  font-weight: 800;
  line-height: 1.3;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
  border-radius: 2px;
}

/* SCROLLBAR PERSONALIZADA */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
}

/* ===========================================
   ESTILOS ESPECÍFICOS - INDEX.HTML
   =========================================== */

/* HERO SECTION - APENAS INDEX */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: clamp(60px, 10vw, 100px) 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  color: #f4c400;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* LOCALIZAÇÃO SECTION - APENAS INDEX */
.localizacao {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(30px, 4vw, 40px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid #f5f5f5;
}

.local-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(25px, 3vw, 30px);
  align-items: center;
}

.local-text h3 {
  font-size: clamp(24px, 2.8vw, 28px);
  color: #a88400;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.local-text p {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666666;
  font-weight: 500;
}

.local-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff9e6;
}

.local-map iframe {
  width: 100%;
  height: clamp(250px, 30vw, 300px);
  border: none;
}

/* TRATAMENTO VIP SECTION - APENAS INDEX */
.tratamento-vip {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(30px, 4vw, 40px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid #fff9e6;
}

.vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(25px, 3vw, 30px);
}

.vip-feature {
  text-align: center;
  padding: clamp(25px, 3vw, 30px) clamp(20px, 2.5vw, 25px);
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid #f5f5f5;
}

.vip-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.15);
  border-color: #f4c400;
}

.vip-feature i {
  font-size: clamp(36px, 4vw, 40px);
  color: #f4c400;
  margin-bottom: 20px;
  background: #fff9e6;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid #f4c400;
}

.vip-feature h4 {
  font-size: clamp(20px, 2.2vw, 22px);
  color: #a88400;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.vip-feature p {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.5;
  color: #666666;
  font-weight: 500;
}

/* CLUBE DE CONTEÚDO - APENAS INDEX */
.clube-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 60px) clamp(25px, 3vw, 40px);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 3px solid #f4c400;
}

.clube-content {
  max-width: 800px;
  margin: 0 auto;
}

.clube-icon {
  font-size: clamp(48px, 6vw, 60px);
  color: #f4c400;
  margin-bottom: 20px;
  background: #fff9e6;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 4px solid #f4c400;
}

.clube-content h3 {
  font-size: clamp(26px, 3.2vw, 32px);
  color: #a88400;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.clube-description {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: #666666;
  margin-bottom: 30px;
  font-weight: 500;
}

.clube-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(25px, 3vw, 30px);
  margin-bottom: 40px;
}

.clube-highlight {
  text-align: center;
  padding: clamp(20px, 2.5vw, 25px) clamp(18px, 2vw, 20px);
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid #fff9e6;
}

.clube-highlight i {
  font-size: clamp(32px, 3.6vw, 36px);
  color: #f4c400;
  margin-bottom: 15px;
  background: #fff9e6;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid #f4c400;
}

.clube-highlight h4 {
  font-size: clamp(18px, 2vw, 20px);
  color: #a88400;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.3;
}

.clube-highlight p {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.5;
  color: #666666;
  font-weight: 500;
}

.btn-clube {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  border: 2px solid #f4c400;
  padding: clamp(12px, 1.8vw, 15px) clamp(30px, 4vw, 40px);
  border-radius: 50px;
  color: #000000 !important;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: clamp(16px, 1.8vw, 18px);
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
}

.btn-clube:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.3);
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
}

/* LISTA EM 3 COLUNAS - APENAS INDEX */
.card-list {
  max-width: 1400px;
  margin: 20px auto 40px auto;
  padding: 0 clamp(15px, 2vw, 20px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 25px);
}

/* MINI-HIGHLIGHT - APENAS INDEX */
.mini-highlight {
  background: #fff9e6;
  border: 2px solid #f4c400;
  padding: clamp(12px, 1.5vw, 14px) clamp(14px, 1.8vw, 16px);
  color: #a88400;
  border-radius: 12px;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1 / 4;
  box-shadow: 0 3px 10px rgba(244, 196, 0, 0.1);
}

.card {
  background: #ffffff !important;
  border: 3px solid #fff9e6 !important;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(244, 196, 0, 0.15);
  border-color: #f4c400 !important;
}

.card img {
  width: 100%;
  height: clamp(200px, 25vw, 240px);
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.03);
}

.card-content {
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 20px) clamp(18px, 2.2vw, 22px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.card-title {
  font-size: clamp(17px, 1.8vw, 18px);
  font-weight: 800;
  color: #a88400;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-sub {
  font-size: clamp(13px, 1.4vw, 14px);
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 1;
  font-weight: 500;
}

.info-inline {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 12px);
  margin-bottom: 12px;
  font-size: clamp(13px, 1.3vw, 13.5px);
  flex-wrap: wrap;
}

.info-inline span {
  background: #f5f5f5;
  padding: clamp(5px, 0.8vw, 6px) clamp(8px, 1.2vw, 10px);
  border-radius: 14px;
  color: #666666;
  font-weight: 600;
  border: 1px solid #eeeeee;
}

.local {
  font-size: clamp(13px, 1.3vw, 13.5px);
  color: #888888;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ===========================================
   ESTILOS ESPECÍFICOS - ACESSAR.HTML
   =========================================== */

/* CONTEÚDO PRINCIPAL - APENAS ACESSAR */
.main-content.acessar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 30px) clamp(15px, 2vw, 20px);
  margin-top: 15px;
  width: 100%;
  min-height: calc(100vh - 160px);
}

.auth-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: clamp(25px, 3vw, 35px);
  align-items: stretch;
  flex-wrap: wrap;
}

/* LADO ESQUERDO - INFORMAÇÕES - APENAS ACESSAR */
.auth-info {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(30px, 4vw, 40px) clamp(25px, 3vw, 35px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 3px solid #fff9e6;
  box-shadow: 0 10px 30px rgba(244, 196, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.auth-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
}

.auth-info h1 {
  font-size: clamp(26px, 2.8vw, 32px);
  color: #a88400;
  margin-bottom: clamp(15px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.3;
}

.auth-info p {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: #666666;
  margin-bottom: clamp(25px, 3vw, 30px);
  font-weight: 500;
}

.benefits {
  margin-top: clamp(25px, 3vw, 30px);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 15px);
  margin-bottom: clamp(16px, 2vw, 20px);
  flex-wrap: wrap;
}

.benefit-item i {
  font-size: clamp(20px, 2.2vw, 24px);
  color: #f4c400;
  background: rgba(244, 196, 0, 0.1);
  width: clamp(44px, 5vw, 50px);
  height: clamp(44px, 5vw, 50px);
  min-width: clamp(44px, 5vw, 50px);
  min-height: clamp(44px, 5vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #f4c400;
}

.benefit-item span {
  font-size: clamp(15px, 1.6vw, 17px);
  color: #555555;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  min-width: 220px;
}

/* LADO DIREITO - FORMULÁRIOS - APENAS ACESSAR */
.auth-forms {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(30px, 4vw, 40px) clamp(25px, 3vw, 35px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f5f5f5;
  position: relative;
  overflow: hidden;
}

.auth-forms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
}

.form-tabs {
  display: flex;
  gap: clamp(8px, 1vw, 10px);
  margin-bottom: clamp(30px, 4vw, 40px);
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: clamp(14px, 1.8vw, 16px) clamp(12px, 1.5vw, 15px);
  border: none;
  background: transparent;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: #888888;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px 10px 0 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.tab-btn.active {
  color: #a88400;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: #f4c400;
  border-radius: 3px;
}

.tab-btn:hover:not(.active) {
  color: #a88400;
  background: rgba(244, 196, 0, 0.05);
}

.form-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: clamp(14px, 1.5vw, 15px);
  color: #666666;
  font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #f4c400;
}

.checkbox-label a {
  color: #a88400;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.terms {
  font-size: clamp(12px, 1.3vw, 13px);
  color: #777777;
  text-align: center;
  margin-top: clamp(25px, 3vw, 30px);
  line-height: 1.5;
  padding: 0 10px;
}

.terms a {
  color: #a88400;
  text-decoration: none;
  font-weight: 600;
}

.terms a:hover {
  text-decoration: underline;
}

.message {
  padding: clamp(14px, 1.8vw, 16px);
  border-radius: 12px;
  margin-bottom: clamp(18px, 2.5vw, 22px);
  font-size: clamp(13px, 1.4vw, 14px);
  display: none;
  line-height: 1.4;
  font-weight: 500;
}

.message.success {
  background: rgba(46, 204, 113, 0.1);
  border: 2px solid rgba(46, 204, 113, 0.2);
  color: #27ae60;
}

.message.error {
  background: rgba(231, 76, 60, 0.1);
  border: 2px solid rgba(231, 76, 60, 0.2);
  color: #c0392b;
}

/* Estilos para dashboard */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 15px;
}

.dashboard-card h3 {
    margin: 10px 0;
    color: #333;
}

.dashboard-card p {
    color: #666;
}

/* Estilos para mensagens de sucesso/erro */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================
   ESTILOS ESPECÍFICOS - DETALHES.HTML
   =========================================== */

/* CONTAINER PRINCIPAL - APENAS DETALHES */
.container { 
  width: 95%; 
  max-width: 1400px; 
  margin: 0 auto; 
  padding-top: 30px;
  background: #ffffff;
}

.breadcrumb { 
  font-size: clamp(14px, 1.4vw, 15px); 
  color: #888888; 
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

.breadcrumb a {
  color: #f4c400;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

h2 { 
  margin: 0; 
  font-size: clamp(26px, 2.8vw, 28px); 
  color: #a88400;
  font-weight: 800;
  line-height: 1.3;
}

/* CABEÇALHO DO PERFIL - APENAS DETALHES */
.profile-header-box {
  background: #ffffff;
  border: 3px solid #fff9e6;
  border-radius: 18px;
  padding: clamp(25px, 3vw, 30px);
  margin-top: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.profile-header-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
}

.badges { 
  margin-top: clamp(15px, 2vw, 20px); 
  display: flex; 
  gap: clamp(10px, 1.2vw, 12px); 
  flex-wrap: wrap;
}

.badge { 
  background: rgba(244, 196, 0, 0.1);
  padding: clamp(8px, 1vw, 10px) clamp(12px, 1.5vw, 16px);
  border-radius: 25px; 
  font-size: clamp(13px, 1.4vw, 14px); 
  color: #a88400;
  font-weight: 600;
  border: 1px solid rgba(244, 196, 0, 0.2);
}

.title { 
  font-size: clamp(16px, 1.8vw, 18px); 
  margin-top: clamp(15px, 2vw, 20px);
  color: #666666;
  line-height: 1.6;
  font-weight: 500;
}

/* BOTÕES DE CONTATO - APENAS DETALHES */
.contact-buttons { 
  margin-top: clamp(25px, 3vw, 30px); 
  display: flex; 
  gap: clamp(15px, 2vw, 20px); 
  flex-wrap: wrap; 
}
    
.btn-call { 
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000; 
  padding: clamp(12px, 1.5vw, 14px) clamp(20px, 2.5vw, 28px); 
  border-radius: 10px; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
  border: 2px solid #f4c400;
  font-size: clamp(14px, 1.5vw, 16px);
}
    
.btn-call:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 196, 0, 0.3);
}
    
.btn-whats { 
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff; 
  padding: clamp(12px, 1.5vw, 14px) clamp(20px, 2.5vw, 28px); 
  border-radius: 10px; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  border: 2px solid #25d366;
  font-size: clamp(14px, 1.5vw, 16px);
}
    
.btn-whats:hover {
  background: linear-gradient(135deg, #1ea952 0%, #189344 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* TÍTULOS DE SEÇÃO - APENAS DETALHES */
.section-title.detalhes { 
  font-size: clamp(22px, 2.5vw, 24px); 
  margin: clamp(35px, 4vw, 40px) 0 clamp(15px, 2vw, 20px); 
  font-weight: 800;
  color: #a88400;
  line-height: 1.3;
}
    
.about-text { 
  font-size: clamp(16px, 1.8vw, 17px); 
  line-height: 1.7; 
  color: #666666; 
  max-width: 900px;
  font-weight: 500;
}

.section-divider {
  border: 0;
  border-top: 2px solid rgba(244, 196, 0, 0.3);
  margin: clamp(35px, 4vw, 40px) 0 clamp(25px, 3vw, 30px);
}

/* TAG-PILL - APENAS DETALHES */
tag-pill {
  display: inline-block;
  padding: clamp(10px, 1.2vw, 12px) clamp(15px, 1.8vw, 18px);
  background: rgba(244, 196, 0, 0.1);
  border: 2px solid rgba(244, 196, 0, 0.2);
  border-radius: 25px;
  font-size: clamp(14px, 1.4vw, 15px);
  color: #a88400;
  margin: clamp(5px, 0.6vw, 8px);
  transition: all 0.25s ease;
  cursor: default;
  white-space: nowrap;
  font-weight: 600;
}
    
tag-pill:hover { 
  background: rgba(244, 196, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 196, 0, 0.15);
}

.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 10px);
  margin-bottom: clamp(25px, 3vw, 30px);
}

/* ANIMAÇÕES - APENAS DETALHES */
.fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .45s ease forwards;
}

.delay1 { animation-delay:.05s; }
.delay2 { animation-delay:.10s; }
.delay3 { animation-delay:.15s; }
.delay4 { animation-delay:.20s; }

@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}

.section-block-title {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 15px);
  font-size: clamp(20px, 2.2vw, 22px);
  font-weight: 800;
  margin: clamp(30px, 3.5vw, 35px) 0 clamp(15px, 2vw, 20px);
  color: #a88400;
  line-height: 1.3;
}

.section-block-title svg {
  width: clamp(22px, 2.5vw, 24px);
  height: clamp(22px, 2.5vw, 24px);
  stroke: #a88400;
  flex-shrink: 0;
}

/* GALERIA - APENAS DETALHES */
.gallery-mosaic {
  column-count: 3;
  column-gap: clamp(15px, 2vw, 20px);
  margin-top: clamp(25px, 3vw, 30px);
}
    
.gallery-mosaic a {
  break-inside: avoid;
  display: block;
  margin-bottom: clamp(15px, 2vw, 20px);
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #f9f9f9;
}
    
.gallery-mosaic a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(244, 196, 0, 0.15);
}
    
.gallery-mosaic img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.6s ease;
  filter: blur(8px);
  opacity: 0.7;
  display: block;
}
    
.gallery-mosaic img.loaded {
  filter: blur(0);
  opacity: 1;
}
    
.watermark {
  position: absolute;
  bottom: clamp(10px, 1.2vw, 12px);
  right: clamp(10px, 1.2vw, 12px);
  color: #ffffff;
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
  background: rgba(0, 0, 0, 0.6);
  padding: clamp(3px, 0.5vw, 4px) clamp(8px, 1vw, 10px);
  border-radius: 20px;
  backdrop-filter: blur(2px);
}

/* CAIXA DE DENÚNCIA - APENAS DETALHES */
.denuncia-box {
  background: #fff9e6;
  border-left: 4px solid #f4c400;
  padding: clamp(20px, 2.5vw, 25px);
  margin: clamp(35px, 4vw, 40px) 0;
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.6;
  border-radius: 0 12px 12px 0;
  color: #666666;
  border: 2px solid rgba(244, 196, 0, 0.2);
}

.denuncia-box strong {
  color: #a88400;
  font-size: clamp(16px, 1.8vw, 17px);
  display: block;
  margin-bottom: 10px;
}

.security {
  text-align: center;
  margin-top: clamp(35px, 4vw, 40px);
  background: #ffffff;
  padding: clamp(25px, 3vw, 30px);
  border-radius: 15px;
  font-size: clamp(15px, 1.6vw, 16px);
  border: 2px solid #fff9e6;
  color: #666666;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.security strong {
  color: #a88400;
  font-size: clamp(17px, 1.8vw, 18px);
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

/* BOTÕES ADICIONAIS - APENAS DETALHES */
.publish-btn {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000;
  padding: clamp(12px, 1.5vw, 14px) clamp(20px, 2.5vw, 25px);
  border-radius: 50px;
  font-size: clamp(15px, 1.6vw, 16px);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
  border: 2px solid #f4c400;
}

.publish-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 196, 0, 0.3);
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
}

.btn-share {
  background: #ffffff;
  border: 2px solid #f4c400;
  color: #a88400;
  padding: clamp(10px, 1.2vw, 12px) clamp(15px, 2vw, 20px);
  border-radius: 50px;
  font-size: clamp(14px, 1.5vw, 15px);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-share:hover {
  background: #fff9e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 196, 0, 0.1);
}

/* ===========================================
   ESTILOS ESPECÍFICOS - CLUBE.HTML
   =========================================== */

/* PERFIL DO USUÁRIO - APENAS CLUBE */
.user-profile {
  position: relative;
  flex-shrink: 0;
}

.user-logged {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff9e6;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  font-size: clamp(14px, 1vw, 16px);
  color: #a88400;
  border: 2px solid #f4c400;
}

.user-logged:hover {
  background: #fff6c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.15);
}

.user-logged i:first-child {
  color: #f4c400;
  font-size: clamp(18px, 1.5vw, 20px);
}

.user-logged i:last-child {
  font-size: 12px;
  transition: transform 0.3s;
  color: #daa520;
}

.user-logged.active i:last-child {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  min-width: 220px;
  max-width: 90vw;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-top: 12px;
  display: none;
  z-index: 1001;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
  border: 2px solid #fff9e6;
}

.user-dropdown.show {
  display: block;
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  text-decoration: none;
  color: #666666;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.user-dropdown a:hover {
  background: #fff9e6;
  color: #f4c400;
  padding-left: 25px;
}

.user-dropdown a i {
  color: #f4c400;
  width: 20px;
  text-align: center;
}

.user-dropdown a:last-child {
  border-bottom: none;
  color: #e74c3c;
}

.user-dropdown a:last-child:hover {
  background: #ffeaea;
  color: #e74c3c;
}

/* CONTEÚDO PRINCIPAL - APENAS CLUBE */
.main-content.clube {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 clamp(15px, 3vw, 30px);
  width: 100%;
  background: #ffffff;
}

/* BANNER DE BOAS-VINDAS - APENAS CLUBE */
.welcome-banner {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  border-radius: 20px;
  padding: clamp(25px, 3vw, 35px) clamp(25px, 4vw, 45px);
  margin-bottom: 40px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 30px);
  text-align: center;
  box-shadow: 0 8px 30px rgba(244, 196, 0, 0.25);
  border: 3px solid #ffd700;
}

.welcome-text {
  flex: 1;
  min-width: 300px;
}

.welcome-text h1 {
  margin: 0 0 12px 0;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  color: #000000;
}

.welcome-text p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  opacity: 0.9;
  line-height: 1.5;
  font-weight: 600;
  color: #000000;
}

.user-stats {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: clamp(14px, 2vw, 18px) clamp(18px, 3vw, 28px);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  min-width: 140px;
  flex: 1;
  transition: all 0.3s;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  display: block;
  line-height: 1.2;
  color: #000000;
}

.stat-label {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  opacity: 0.9;
}

/* DASHBOARD RESPONSIVO - APENAS CLUBE */
.dashboard-sections {
  display: grid;
  grid-template-columns: 1fr clamp(320px, 25vw, 380px);
  gap: clamp(25px, 3vw, 35px);
  margin-bottom: 40px;
}

/* SEÇÕES COM TÍTULO DOURADO - APENAS CLUBE */
.section-title.clube {
  font-size: clamp(22px, 2.5vw, 26px);
  color: #a88400;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 3px solid #fff9e6;
}

.section-title.clube i {
  color: #f4c400;
  font-size: 1.2em;
}

/* MINHAS ASSINATURAS - APENAS CLUBE */
.my-subscriptions {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 3vw, 35px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
  border: 2px solid #f5f5f5;
}

.subscriptions-list {
  display: grid;
  gap: 25px;
}

.subscription-card {
  background: #ffffff;
  border: 3px solid #fff9e6;
  border-radius: 18px;
  padding: clamp(18px, 2vw, 25px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 2vw, 25px);
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.subscription-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
}

.subscription-card:hover {
  border-color: #f4c400;
  box-shadow: 0 12px 30px rgba(244, 196, 0, 0.15);
  transform: translateY(-5px);
}

.subscription-avatar {
  width: clamp(65px, 8vw, 75px);
  height: clamp(65px, 8vw, 75px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f4c400;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
  transition: all 0.3s;
}

.subscription-card:hover .subscription-avatar {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(244, 196, 0, 0.3);
}

.subscription-info {
  min-width: 0;
}

.subscription-name {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 800;
  color: #a88400;
  margin-bottom: 8px;
  line-height: 1.3;
  word-wrap: break-word;
}

.subscription-details {
  color: #666666;
  font-size: clamp(14px, 1.4vw, 15px);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.subscription-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid transparent;
}

.status-active {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #81c784;
}

.status-expiring {
  background: #fff8e1;
  color: #f57c00;
  border-color: #ffb74d;
}

.subscription-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-action {
  padding: clamp(10px, 1.2vw, 12px) clamp(16px, 1.8vw, 20px);
  border-radius: 12px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: clamp(13px, 1.3vw, 14px);
  white-space: nowrap;
  height: fit-content;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000;
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 196, 0, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: #a88400;
  border: 2px solid #f4c400;
}

.btn-secondary:hover {
  background: #fff9e6;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.1);
}

.btn-danger {
  background: #ffffff;
  color: #d32f2f;
  border: 2px solid #ef5350;
}

.btn-danger:hover {
  background: #ffebee;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(239, 83, 80, 0.1);
}

/* CONTEÚDO RECENTE - APENAS CLUBE */
.recent-content {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 3vw, 35px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid #f5f5f5;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(160px, 30vw, 210px), 1fr));
  gap: clamp(18px, 2vw, 25px);
}

.content-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #fff9e6;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.content-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(244, 196, 0, 0.15);
  border-color: #f4c400;
}

.content-thumbnail {
  width: 100%;
  height: clamp(130px, 20vw, 160px);
  object-fit: cover;
  transition: transform 0.3s;
}

.content-item:hover .content-thumbnail {
  transform: scale(1.05);
}

.content-info {
  padding: 16px;
  background: #ffffff;
  border-top: 2px solid #f5f5f5;
}

.content-model {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #a88400;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.content-date {
  font-size: clamp(12px, 1.2vw, 13px);
  color: #888888;
  line-height: 1.4;
  font-weight: 500;
}

/* SIDEBAR DO PERFIL - APENAS CLUBE */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 3vw, 35px);
}

.profile-card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 3vw, 35px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 2px solid #fff9e6;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
}

.profile-avatar {
  width: clamp(85px, 12vw, 130px);
  height: clamp(85px, 12vw, 130px);
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f4c400;
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.2);
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.profile-card:hover .profile-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(244, 196, 0, 0.3);
}

.profile-name {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  color: #a88400;
  margin-bottom: 8px;
  line-height: 1.3;
}

.profile-tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000;
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 25px;
  font-size: clamp(14px, 1.4vw, 15px);
  box-shadow: 0 4px 15px rgba(244, 196, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.profile-info {
  text-align: left;
  margin-bottom: 30px;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  border: 2px solid #f0f0f0;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: clamp(14px, 1.4vw, 15px);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: #666666;
  font-weight: 500;
}

.info-value {
  font-weight: 700;
  color: #333333;
}

.btn-upgrade {
  width: 100%;
  padding: clamp(14px, 1.8vw, 16px);
  background: linear-gradient(135deg, #a88400 0%, #f4c400 100%);
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  font-size: clamp(15px, 1.5vw, 17px);
  box-shadow: 0 6px 20px rgba(168, 132, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-upgrade:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(168, 132, 0, 0.3);
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
}

/* ATIVIDADES RECENTES - APENAS CLUBE */
.recent-activity {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 3vw, 35px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid #f5f5f5;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(15px, 2vw, 20px);
  padding: 18px;
  background: #f9f9f9;
  border-radius: 15px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s;
}

.activity-item:hover {
  border-color: #f4c400;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(244, 196, 0, 0.1);
}

.activity-icon {
  flex-shrink: 0;
  width: clamp(40px, 5vw, 45px);
  height: clamp(40px, 5vw, 45px);
  border-radius: 50%;
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: clamp(18px, 1.8vw, 20px);
  box-shadow: 0 4px 10px rgba(244, 196, 0, 0.2);
}

.activity-content {
  flex: 1;
  min-width: 0;
}

.activity-text {
  font-size: clamp(14px, 1.4vw, 15px);
  margin-bottom: 6px;
  line-height: 1.4;
  color: #333333;
  font-weight: 500;
}

.activity-time {
  font-size: clamp(12px, 1.2vw, 13px);
  color: #888888;
  font-weight: 500;
}

/* PAGAMENTO - APENAS CLUBE */
.payment-section {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 3vw, 35px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border: 2px solid #f5f5f5;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(260px, 30vw, 320px), 1fr));
  gap: clamp(18px, 2vw, 25px);
  margin-bottom: 35px;
}

.payment-card {
  background: #ffffff;
  border: 3px solid #f0f0f0;
  border-radius: 18px;
  padding: clamp(18px, 2vw, 25px);
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c400, #ffd700);
}

.payment-card.active {
  border-color: #f4c400;
  background: #fff9e6;
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.1);
}

.payment-card:hover {
  border-color: #f4c400;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(244, 196, 0, 0.15);
}

.payment-icon {
  flex-shrink: 0;
  width: clamp(50px, 6vw, 60px);
  height: clamp(50px, 6vw, 60px);
  border-radius: 12px;
  background: #fff9e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 2.5vw, 26px);
  color: #a88400;
  border: 2px solid #f4c400;
}

.payment-details {
  flex: 1;
  min-width: 0;
}

.payment-type {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: #a88400;
}

.payment-number {
  font-size: clamp(14px, 1.4vw, 15px);
  color: #666666;
  margin-bottom: 8px;
  word-break: break-all;
  font-weight: 500;
}

.payment-status {
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 700;
}

.status-default {
  color: #f4c400;
  background: #fff9e6;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  border: 2px solid #f4c400;
}

.btn-add-payment {
  width: 100%;
  padding: clamp(16px, 2vw, 20px);
  border: 3px dashed #f4c400;
  border-radius: 18px;
  background: #fff9e6;
  color: #a88400;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  font-size: clamp(15px, 1.5vw, 17px);
}

.btn-add-payment:hover {
  background: #fff6c4;
  border-style: solid;
  border-color: #ffd700;
  color: #f4c400;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 196, 0, 0.1);
}

/* TABELA RESPONSIVA - APENAS CLUBE */
.invoices-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 25px 0;
  border-radius: 15px;
  border: 2px solid #f5f5f5;
  background: #ffffff;
}

.invoices-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.invoices-table th,
.invoices-table td {
  padding: clamp(15px, 2vw, 18px);
  text-align: left;
  border-bottom: 2px solid #f5f5f5;
  font-size: clamp(14px, 1.4vw, 15px);
}

.invoices-table th {
  color: #a88400;
  font-weight: 800;
  white-space: nowrap;
  background: #f9f9f9;
}

.invoice-status {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 700;
  display: inline-block;
  border: 2px solid transparent;
}

.status-paid {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #81c784;
}

.status-pending {
  background: #fff8e1;
  color: #f57c00;
  border-color: #ffb74d;
}

/* MODAIS - APENAS CLUBE */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 25px;
  padding: clamp(25px, 3vw, 35px);
  max-width: min(500px, 95vw);
  width: 100%;
  max-height: min(90vh, 650px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: modalSlideIn 0.4s ease;
  border: 3px solid #f4c400;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f5f5f5;
}

.modal-title {
  font-size: clamp(20px, 2.2vw, 24px);
  color: #a88400;
  margin: 0;
  line-height: 1.3;
  font-weight: 800;
}

.modal-close {
  background: #ffffff;
  border: 2px solid #f4c400;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #a88400;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #fff9e6;
  transform: rotate(90deg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 2vw, 20px);
}

.btn-modal {
  width: 100%;
  padding: clamp(14px, 1.8vw, 16px);
  border: none;
  border-radius: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 15px;
  font-size: clamp(15px, 1.5vw, 17px);
  font-family: inherit;
}

.btn-modal-primary {
  background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
  color: #000000;
  box-shadow: 0 6px 20px rgba(244, 196, 0, 0.2);
}

.btn-modal-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f4c400 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 196, 0, 0.3);
}


/* Estilos para admin */
.admin-stats {
    margin-top: 40px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #FFD700;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 0 0;
}

.user-info {
    margin-top: 40px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.user-info ul {
    list-style: none;
    padding: 0;
}

.user-info li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.user-info li:last-child {
    border-bottom: none;
}

.user-info strong {
    display: inline-block;
    width: 150px;
    color: #666;
}

/* ===========================================
   MEDIA QUERIES RESPONSIVAS (gerais)
   =========================================== */

@media (max-width: 1200px) {
  .dashboard-sections {
    grid-template-columns: 1fr clamp(300px, 30vw, 380px);
  }
  
  .auth-container {
    gap: clamp(20px, 2.5vw, 25px);
  }
  
  .benefit-item span {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .gallery-mosaic { 
    column-count: 2; 
    column-gap: 15px;
  }
  
  .dashboard-sections {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .subscription-card {
    grid-template-columns: auto 1fr;
  }
  
  .subscription-actions {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 20px;
  }
  
  .auth-container {
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .auth-info, .auth-forms {
    width: 100%;
    min-width: unset;
  }
  
  .benefit-item span {
    min-width: 250px;
  }
  
  .welcome-text {
    min-width: 100%;
  }
  
  .stat-item {
    min-width: calc(50% - 10px);
  }
  
  .card-list { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
  
  .mini-highlight {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-header {
    display: flex;
  }
  
  .header {
    margin-top: 60px;
    padding: 12px 15px;
  }
  
  .gallery-mosaic {
    column-count: 2;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-call, .btn-whats {
    width: 100%;
    justify-content: center;
  }
  
  .tags-wrapper {
    gap: 8px;
  }
  
  tag-pill {
    margin: 3px;
    padding: 10px 15px;
  }
  
  .subscription-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .subscription-avatar {
    margin: 0 auto;
  }
  
  .subscription-actions {
    grid-column: 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .section {
    padding: 30px 15px;
  }
  
  .section-title {
    font-size: clamp(24px, 2.8vw, 28px);
  }
  
  .clube-section {
    padding: 30px 20px;
  }
  
  .card-list {
    padding: 0 10px;
  }
  
  .main-content.acessar {
    padding: 15px;
    margin-top: 10px;
    min-height: calc(100vh - 140px);
  }
  
  .auth-info, .auth-forms {
    padding: 25px 20px;
    border-radius: 18px;
  }
  
  .auth-info h1 {
    font-size: clamp(22px, 2.5vw, 24px);
  }
  
  .auth-info p {
    font-size: 15px;
  }
  
  .benefit-item {
    gap: 12px;
  }
  
  .benefit-item i {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  
  .benefit-item span {
    font-size: 15px;
    min-width: 200px;
  }
  
  .form-tabs {
    flex-direction: row;
  }
  
  .tab-btn {
    min-width: 110px;
    font-size: 16px;
    padding: 14px 12px;
  }
  
  .tab-btn.active::after {
    left: 25%;
    right: 25%;
    bottom: -8px;
  }
}

@media (max-width: 576px) {
  .gallery-mosaic {
    column-count: 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .container {
    width: 92%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-links h4 {
    text-align: center;
  }
  
  .section-block-title {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .section-block-title svg {
    margin-bottom: 5px;
  }
  
  .main-content.acessar {
    padding: 12px;
  }
  
  .auth-info, .auth-forms {
    padding: 22px 18px;
    border-radius: 16px;
  }
  
  .auth-info h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .auth-info p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .benefit-item {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .benefit-item span {
    font-size: 14px;
    min-width: unset;
  }
  
  .benefit-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .form-tabs {
    flex-direction: column;
    gap: 8px;
  }
  
  .tab-btn {
    min-width: 100%;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 2px;
  }
  
  .tab-btn.active::after {
    display: none;
  }
  
  .tab-btn.active {
    background: linear-gradient(135deg, #f4c400 0%, #ffd700 100%);
    color: #000000;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 14px;
  }
  
  .form-control {
    padding: 15px 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  
  .submit-btn {
    padding: 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  
  .terms {
    font-size: 12px;
    margin-top: 25px;
  }
  
  .card-list { 
    grid-template-columns: 1fr; 
    padding: 0 10px;
    gap: 20px;
  }
  
  .mini-highlight {
    grid-column: 1 / 2;
  }
  
  .header {
    padding: 12px 10px;
    font-size: clamp(13px, 1.5vw, 15px);
  }
  
  .hero h1 {
    font-size: clamp(24px, 3.5vw, 28px);
  }
  
  .hero p {
    font-size: clamp(15px, 1.6vw, 16px);
  }
  
  .local-info, 
  .vip-features, 
  .clube-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .main-content.clube {
    padding: 0 15px;
  }
  
  .welcome-banner {
    padding: 20px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .section-title.clube {
    font-size: 20px;
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn-action {
    width: 100%;
    justify-content: center;
  }
  
  .subscription-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .payment-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .payment-icon {
    margin: 0 auto;
  }
  
  .mobile-nav a {
    padding: 18px 20px;
  }
  
  .profile-card, .recent-activity, .payment-section,
  .my-subscriptions, .recent-content {
    padding: 20px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-header {
    display: none;
  }
  
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 400px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .user-stats {
    flex-direction: column;
    width: 100%;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .mobile-logo {
    font-size: 16px;
  }
  
  .header {
    font-size: 13px;
  }
  
  .auth-info h1 {
    font-size: 18px;
  }
  
  .auth-info p {
    font-size: 13px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .benefit-item span {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }
  
  .benefit-item i {
    margin: 0 auto;
  }
  
  .form-control {
    font-size: 15px;
    padding: 14px;
  }
  
  .tab-btn {
    font-size: 15px;
    padding: 14px;
  }
  
  .submit-btn {
    font-size: 15px;
    padding: 14px;
  }
  
  .footer-logo {
    font-size: 20px;
  }
  
  .footer-links h4 {
    font-size: 16px;
  }
}

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {
  .btn-call:hover,
  .btn-whats:hover,
  .btn-acessar:hover,
  .publish-btn:hover,
  tag-pill:hover,
  .gallery-mosaic a:hover,
  .btn-details:hover,
  .btn-hero:hover,
  .btn-clube:hover,
  .card:hover,
  .vip-feature:hover,
  .clube-highlight:hover,
  .submit-btn:hover,
  .tab-btn:hover,
  .toggle-password:hover {
    transform: none;
  }
  
  .btn-call:active,
  .btn-whats:active,
  .btn-acessar:active,
  .publish-btn:active,
  .btn-details:active,
  .btn-hero:active,
  .btn-clube:active,
  .submit-btn:active,
  .tab-btn:active {
    transform: scale(0.98);
  }
  
  .card:active,
  .vip-feature:active,
  .clube-highlight:active,
  .gallery-mosaic a:active,
  tag-pill:active {
    transform: scale(0.99);
  }
  
  .form-control {
    font-size: 16px;
    min-height: 44px;
  }
  
  .form-control:focus {
    border-width: 2px;
  }
}

/* ANIMAÇÕES E TRANSITIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card, .vip-feature, .clube-highlight {
  animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }
.card:nth-child(5) { animation-delay: 0.4s; }
.card:nth-child(6) { animation-delay: 0.5s; }
.card:nth-child(7) { animation-delay: 0.6s; }
.card:nth-child(8) { animation-delay: 0.7s; }
.card:nth-child(9) { animation-delay: 0.8s; }

/* AJUSTES PARA REDUÇÃO DE MOVIMENTO */
@media (prefers-reduced-motion: reduce) {
  .btn-acessar,
  .submit-btn,
  .tab-btn,
  .form-control,
  .mobile-nav,
  .form-content,
  .card,
  .vip-feature,
  .clube-highlight {
    transition: none;
  }
  
  .mobile-nav.active,
  .form-content.active {
    animation: none;
  }
  
  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* PREVENIR ZOOM EM CAMPOS NO iOS */
input, select, textarea {
  font-size: 16px !important;
}