@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
/* ==========================================
   CLUBE DAS GRINGAS - ESTILOS PRINCIPAIS
   ========================================== */

:root {
  --navy: #1a2b4a;
  --gold: #c9a84c;
  --beige: #f5f0e8;
  --green: #4CAF50;
  --darkgold: #a88a3a;
  --lightbeige: #faf8f3;
  --white: #ffffff;
  --text: #333333;
  --gray: #666666;
  --lightgray: #999999;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  height:90px;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: var(--navy);
}

.header-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.header-logo-icon::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 50%;
}

.header-logo-icon::after {
  content: 'G';
  position: relative;
  color: var(--gold);
  font-weight: bold;
  font-size: 16px;
  z-index: 1;
}

.header-nav {
  display: none;
}

.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  margin: 0 12px;
  position: relative;
}

.header-nav a:hover {
  color: var(--gold);
}

.header-social {
  display: none;
}

.header-social a {
  width: 24px;
  height: 24px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s;
}

.header-social a:hover {
  background: var(--navy);
  color: var(--white);
}

.header-social a svg {
  width: 14px;
  height: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(21, 35, 63, 0.16);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.78);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 28px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a.active {
  background: var(--navy);
  color: var(--white);
}

.header-btn {
  padding: 8px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.header-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.header-btn-outline {
  padding: 6px 16px;
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.header-btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Mobile menu */
.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #eee;
  padding: 16px 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ==========================================
   SECTION PILLS NAV
   ========================================== */

.pills-nav {
  /*background: var(--navy);*/
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  z-index: 1010;
  position: sticky;
  top: 90px;
}

.pills-nav::-webkit-scrollbar {
  display: none;
}

.pills-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
}

.pill {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  text-transform: none;
  font-family: "Staatliches", Sans-serif;
}

.pill:hover {
  background: var(--gold);
  color: var(--navy);
}

.pill.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 0 0 2px var(--gold);
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */

.section {
  padding: 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family:"Staatliches", Sans-serif;
}

.section-divider {
  width: 1px;
  height: 60px;
  background: var(--gold);
  display: none;
}

.section-desc {
  font-size: 15px;
  color: var(--navy);
  max-width: 540px;
  line-height: 1.7;
  text-align: justify;
}

/* ==========================================
   CLUBE HERO
   ========================================== */

.clube-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  top:-55px;
}

.clube-hero::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background-image: linear-gradient(to bottom, rgb(26 43 74 / 71%), rgb(26 43 74)), url(img/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0; /* Fica atrás do conteúdo */
  pointer-events: none; /* Não bloqueia cliques */
}

/* Título acima das fotos */
.clube-heading {
  text-align: center;
  padding: 36px 20px 0;
  position: relative;
  z-index: 2;
  margin-top:30px;
}

.clube-heading h2 {
  font-size: 32px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
  font-family: ""Staatliches", Sans-serif;
  
}

.clube-heading h3 {
  font-family: "Staatliches", Sans-serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Galeria em leque 2D — todas as fotos giram a partir da base */
.hero-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 0 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  margin: 0 -20px;
}

.hero-img {
  flex-shrink: 0;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 10px 10px 0 0;
  position: relative;
  transform-origin: bottom center;
  transition: transform 0.3s ease;
  margin: 0 -6px;
}

/* Foto central: ereta, na frente */
.hero-img.center {
  width: 105px;
  height: 200px;
  z-index: 10;
  transform: rotate(0deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  margin: 0 -4px;
}

/* Fotos mid: 1ª inclinação */
.hero-img.mid {
  width: 100px;
  height: 185px;
  z-index: 8;
}

.hero-img.mid:nth-of-type(3) {
  transform: rotate(-10deg);
  box-shadow: -4px 10px 24px rgba(0,0,0,0.45);
}

.hero-img.mid:nth-of-type(5) {
  transform: rotate(10deg);
  box-shadow: 4px 10px 24px rgba(0,0,0,0.45);
}

/* Fotos tall: 2ª inclinação */
.hero-img.tall {
  width: 95px;
  height: 220px;
  z-index: 6;
  opacity: 0.93;
}

.hero-img.tall:nth-of-type(2) {
  transform: rotate(-22deg);
  box-shadow: -6px 10px 20px rgba(0,0,0,0.4);
}

.hero-img.tall:nth-of-type(6) {
  transform: rotate(22deg);
  box-shadow: 6px 10px 20px rgba(0,0,0,0.4);
}

/* Fotos side: máxima inclinação, parcialmente visíveis */
.hero-img.side {
  width: 80px;
  height: 190px;
  z-index: 4;
  opacity: 0.8;
}

.hero-img.side.left {
  transform: rotate(-36deg);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: -8px 10px 16px rgba(0,0,0,0.4);
}

.hero-img.side.right {
  transform: rotate(36deg);
  clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
  box-shadow: 8px 10px 16px rgba(0,0,0,0.4);
}

/* Logo centralizado abaixo das fotos */
.clube-logo-center {
  text-align: center;
  padding: 20px 20px 0;
  position: relative;
  z-index: 2;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: bold;
}

.hero-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-logo-icon::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
}

.hero-logo-icon::after {
  content: 'G';
  position: relative;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  z-index: 1;
}

/* Conteúdo (tags + texto) abaixo do logo */
.clube-content {
  position: relative;
  z-index: 2;
  padding: 24px 20px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.clube-tags-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tags-row.left,
.tags-row.right {
  justify-content: center;
}

.tag {
  padding: 8px 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  text-align: center;
}

.clube-text {
  color: var(--white);
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.clube-text strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-cta {
  text-align: center;
  margin-top: 32px;
}

.scroll-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--navy);
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 1.4em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 300px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    font-family:"Staatliches", Sans-serif;
}

.scroll-btn-white:hover {
  background: var(--gold);
}

.scroll-btn-white svg {
  animation: bounce 2s infinite;
}

/* ==========================================
   SCROLL BUTTON
   ========================================== */

.scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 32px;
  font-family: "Staatliches", Sans-serif;
}

.scroll-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.scroll-btn svg {
  animation: bounce 2s infinite;
  background-color: #c9a84c;
  border-radius: 50%;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================
   COURSE CARDS
   ========================================== */

.courses-section {
  background: var(--beige);
  padding: 48px 20px;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.course-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16 / 10;
}

.course-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.course-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.course-card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.course-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.course-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.course-actions {
  display: flex;
  gap: 8px;
}

.btn-details {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-details:hover {
  border-color: rgba(255,255,255,0.6);
}

.btn-access {
  flex: 1;
  padding: 8px 12px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-access:hover {
  background: #3d8b40;
}

/* ==========================================
   CALENDARIO
   ========================================== */

.event-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.event-item:last-child {
  border-bottom: none;
}

.event-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.event-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==========================================
   WHATSAPP GROUPS
   ========================================== */

.groups-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.group-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.group-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}

.group-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.group-owner {
  font-size: 13px;
  color: var(--lightgray);
  margin-bottom: 12px;
}

.group-sep {
  width: 40px;
  height: 1px;
  background: #ddd;
  margin: 0 auto 12px;
}

.group-category {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}

.btn-group {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-group:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ==========================================
   APOIO
   ========================================== */

.apoio-img {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.apoio-img img {
  width: 100%;
  height: auto;
  display: block;
}

.apoio-whatsapp {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ==========================================
   DESCONTOS
   ========================================== */

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  background: #f9f5ed;
  border: 1px solid #e8e0d0;
  border-radius: 16px;
  overflow: hidden;
}

.partner-header {
  padding: 20px 20px 12px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.partner-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
}

.partner-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.partner-desc {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.partner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.partner-link {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}

.partner-discount {
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: 16px;
}

.partner-footer {
  background: #f0ebe0;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

.partner-terms {
  background: var(--navy);
  padding: 10px 20px;
  font-size: 11px;
  color: var(--white);
  line-height: 1.4;
}

/* ==========================================
   CARTEIRINHA
   ========================================== */

.card-display {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.card-image img {
  width: 100%;
  height: 285px;
  display: block;
}

.card-image-index img{
  width: 220px;
  display: block;
}

.card-image .card-generated {
  width: 100%;
  aspect-ratio: 1.6 / 1;
}

.card-arrow {
  position: absolute;
  bottom: 24px;
  right: -12px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.card-generated {
  background: linear-gradient(135deg, #c9a84c 0%, #a88a3a 100%);
  border-radius: 16px;
  padding: 24px;
  aspect-ratio: 1.6 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.card-generated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='white' opacity='0.15'/%3E%3C/svg%3E");
}

.card-chip {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 48px;
  height: 36px;
  background: linear-gradient(135deg, #e6c860 0%, #c9a84c 100%);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.15);
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.card-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: bold;
  font-size: 14px;
}

.card-logo-text {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

.card-number {
  font-size: 22px;
  letter-spacing: 4px;
  font-family: 'Courier New', monospace;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.card-holder {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.card-expiry {
  font-size: 12px;
  color: rgba(26, 43, 74, 0.7);
  position: relative;
  z-index: 1;
}

.btn-generate {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 24px auto 0;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-generate:hover {
  background: var(--darkgold);
}

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

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 32px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .blog-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   LOGIN V2 — Split Screen Premium
   ========================================== */

.login-page {
  min-height: 100vh;
  display: flex;
  background: var(--white);
}

.login-left {
  display: none;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.login-left-bg {
  position: absolute;
  inset: 0;
  background: url('login_bg.webp') center/cover no-repeat;
  opacity: 0.25;
}

.login-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,0.95) 0%, rgba(26,43,74,0.7) 100%);
}

.login-left-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 48px;
  color: var(--white);
}

.login-left-top .login-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
}

.login-left-top .login-brand-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: bold;
  font-size: 18px;
}

.login-left-quote {
  max-width: 420px;
}

.login-left-quote blockquote {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}

.login-left-quote .quote-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 16px;
}

.login-left-quote p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

.login-left-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  opacity: 0.6;
}

.login-left-bottom span:empty {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* Right side */
.login-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: var(--beige);
  position: relative;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(26,43,74,0.08), 0 4px 16px rgba(0,0,0,0.04);
  animation: loginFadeIn 0.6s ease-out;
}

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

.login-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-card-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.login-card-header p {
  font-size: 14px;
  color: var(--gray);
}

.login-error {
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  color: #c62828;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-error::before {
  content: '!';
  width: 20px;
  height: 20px;
  background: #c62828;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.login-field {
  margin-bottom: 18px;
}

.login-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.login-input-wrap {
  position: relative;
}

.login-input-wrap .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lightgray);
  pointer-events: none;
}

.login-input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 1.5px solid #e8e4dc;
  border-radius: 12px;
  font-size: 14px;
  background: #faf9f7;
  transition: all 0.25s;
  color: var(--navy);
}

.login-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.login-input::placeholder {
  color: #bbb;
}

.login-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, #243859 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.login-submit:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--darkgold) 100%);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}

.login-submit:active {
  transform: translateY(0);
}

.login-footer {
  margin-top: 28px;
  text-align: center;
}

.login-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  transition: color 0.3s;
}

.login-back:hover {
  color: var(--navy);
}

.login-back svg {
  transition: transform 0.3s;
}

.login-back:hover svg {
  transform: translateX(-3px);
}

.login-hint {
  margin-top: 24px;
  padding: 16px;
  background: var(--lightbeige);
  border-radius: 12px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
}

.login-hint strong {
  color: var(--navy);
  font-weight: 700;
}

/* Desktop split screen */
@media (min-width: 960px) {
  .login-left {
    display: flex;
    flex-direction: column;
    width: 45%;
    min-height: 100vh;
  }
  
  .login-right {
    width: 55%;
    padding: 48px;
  }
  
  .login-card {
    padding: 48px 44px;
  }
}

@media (min-width: 1200px) {
  .login-left {
    width: 42%;
  }
  
  .login-right {
    width: 58%;
  }
}

/* ==========================================
   DASHBOARD
   ========================================== */

.dashboard-bar {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 12px 20px;
}

.dashboard-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-bar a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.dashboard-bar a:hover {
  color: var(--gold);
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}

.dashboard-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.dashboard-subtitle {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 24px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dash-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.dash-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-card-icon.navy { background: var(--navy); color: var(--white); }
.dash-card-icon.gold { background: var(--gold); color: var(--navy); }
.dash-card-icon.green { background: var(--green); color: var(--white); }
.dash-card-icon.red { background: #e53935; color: var(--white); }

.dash-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.dash-card-subtitle {
  font-size: 12px;
  color: var(--gray);
}

.dash-field {
  margin-bottom: 10px;
  font-size: 14px;
}

.dash-field-label {
  color: var(--gray);
}

.dash-field-value {
  color: var(--navy);
  font-weight: 500;
}

.discount-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: var(--lightbeige);
  border-radius: 10px;
  margin-bottom: 8px;
}

.discount-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.discount-badge {
  padding: 4px 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
}

.btn-dash {
  display: inline-block;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-dash:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-dash-outline {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.btn-dash-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: #e53935;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================
   ADMIN PANEL
   ========================================== */

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-tab {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--white);
  color: var(--navy);
  transition: all 0.3s;
}

.admin-tab.active {
  background: var(--navy);
  color: var(--white);
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: 12px;
}

.admin-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f5f5f5;
}

.admin-table tr:hover td {
  background: #fafafa;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.status-active {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-inactive {
  background: #ffebee;
  color: #c62828;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

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

.btn-red {
  background: #e53935;
  color: var(--white);
}

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

.form-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.form-inline .form-input {
  flex: 1;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */

@media (min-width: 640px) {
  .header-nav {
    display: flex;
    align-items: center;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .header-social {
    display: flex;
    gap: 8px;
  }
  
  .section-header {
    flex-direction: row;
    text-align: left;
  }
  
  .section-divider {
    display: block;
  }
  
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .event-item {
    flex-direction: row;
  }
  
  .event-img {
    width: 180px;
    height: 120px;
  }
  
  .clube-tags-text {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  
  .tags-row {
    flex-direction: column;
    width: 140px;
    flex-shrink: 0;
    gap: 10px;
  }
  
  .tags-row .tag {
    width: 100%;
  }
  
  .tags-row.right {
    order: 2;
  }
  
  .clube-text {
    flex: 1;
    order: 1;
    padding: 0 20px;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   RESPONSIVE - DESKTOP
   ========================================== */

@media (min-width: 960px) {
  .section {
    padding: 64px 40px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .courses-grid {
    gap: 24px;
  }
  
  .groups-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Hero desktop - leque 2D com fotos maiores */
  .hero-images {
    padding: 48px 0 0;
  }

  .hero-img.center {
    width: 175px;
    height: 330px;
    border-radius: 14px 14px 0 0;
    margin: 0 -6px;
  }

  .hero-img.mid {
    width: 160px;
    height: 295px;
    border-radius: 12px 12px 0 0;
  }

  .hero-img.mid:nth-of-type(3) {
    transform: rotate(-10deg);
  }

  .hero-img.mid:nth-of-type(5) {
    transform: rotate(10deg);
  }

  .hero-img.tall {
    width: 150px;
    height: 355px;
    border-radius: 12px 12px 0 0;
  }

  .hero-img.tall:nth-of-type(2) {
    transform: rotate(-22deg);
  }

  .hero-img.tall:nth-of-type(6) {
    transform: rotate(22deg);
  }

  .hero-img.side {
    width: 120px;
    height: 300px;
    border-radius: 10px 10px 0 0;
  }

  .hero-img.side.left {
    transform: rotate(-36deg);
  }

  .hero-img.side.right {
    transform: rotate(36deg);
  }

  .clube-heading {
    padding: 44px 40px 0;
  }

  .clube-heading h2 {
    font-size: 4em;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
	line-height:normal;
  }
  
  .clube-heading h3 {
    font-size: 4em;
	line-height:normal;
  }
  
  .form-inline {
    flex-direction: row;
  }
}
