/* =============================
   GYMSTAR – style.css
   ============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --y: #C07320; /* More vibrant neon yellow */
  --yd: #C07320;
  --blk: #050505; /* Richer black */
  --dark: #0a0a0a;
  --d2: #121212;
  --pur: #6D6D6D;
  --wh: #ffffff;
  --txt: #f0f0f0;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow: 0 0 20px rgba(192, 115, 32, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  background: #000;
  color: var(--txt);
  overflow-x: hidden;
  position: relative;
}

/* Global Texture / Grain Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025; /* Even more subtle, organic grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border: 2px solid #000;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--y);
  box-shadow: var(--glow);
}

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

.centered {
  text-align: center;
}

.yellow {
  color: var(--y);
}

.section-tag {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--y);
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.section-h2 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.05em; /* Tighter tracking for high-end look */
  margin-bottom: 60px;
}

.section-h2 span.italic {
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Glassmorphism / Material Utility */
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)), 
                    linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  border-radius: 16px;
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Glow Utils */
.glow-y {
  text-shadow: var(--glow);
}

.bg-glow-y {
  box-shadow: var(--glow);
}

/* ========================
   HEADER
   ======================== */
.header {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s;
}

.header .logo img {
  height: 48px;
  width: auto;
  display: block;
}

.selector-logo {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height 0.3s ease;
}

.header-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg) brightness(1.2) drop-shadow(0 0 2px rgba(255, 255, 255, 0.2)) !important;
  transition: height 0.3s ease;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav a {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wh);
  text-decoration: none;
  transition: color 0.2s;
}

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

.btn-nav {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--y);
  color: var(--blk);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--glow);
}

.btn-nav:hover {
  background: var(--wh);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--wh);
  border-radius: 2px;
}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 62px);
  background: #000;
}

/* LEFT: dark simulated photo */
.hero-left {
  background-image: linear-gradient(to right, rgba(0,0,0,0.6), transparent), url('images/hero-bg-premium.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.05);
}

/* Subtle gradient radials to simulate studio lighting */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(192, 115, 32, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(192, 115, 32, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Simulated floor reflection */
.hero-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(192, 115, 32, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Decorative background elements */
.bg-deco {
  position: absolute;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.deco-1 {
  top: 5%;
  left: -5%;
  transform: rotate(-5deg);
}

.deco-2 {
  bottom: 10%;
  right: -15%;
  transform: rotate(5deg);
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(255, 255, 255, 0.02);
}

.bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shape-cross {
  width: 150px;
  height: 150px;
  background:
    linear-gradient(rgba(192, 115, 32, 0.03) 0%, rgba(192, 115, 32, 0.03) 100%) center/2px 100% no-repeat,
    linear-gradient(rgba(192, 115, 32, 0.03) 0%, rgba(192, 115, 32, 0.03) 100%) center/100% 2px no-repeat;
  top: 15%;
  right: 10%;
}


/* Magazine/Flyer simulation */
.magazine-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.magazine {
  background: var(--wh);
  border-radius: 20px;
  width: 320px;
  transform: rotate(-3deg) translateY(0);
  box-shadow: 
    -20px 30px 60px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-20px); }
}

.magazine:hover {
  transform: rotate(0deg) scale(1.05);
}

.mag-header {
  background: var(--blk);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mag-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.mag-body {
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mag-gym-info {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", monospace;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.4;
}

.mag-eyebrow {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 2px;
}

.mag-total-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 8px;
}

.mag-price {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--blk);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.mag-eur {
  font-size: 0.4em;
  vertical-align: super;
}

.mag-month {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.mag-receipt {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 2px dashed rgba(0, 0, 0, 0.25);
  border-bottom: 2px dashed rgba(0, 0, 0, 0.25);
  padding: 14px 0;
  margin-bottom: 8px;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blk);
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
  padding-bottom: 5px;
}

.receipt-item span:last-child {
  font-size: 0.7rem;
}

/* RIGHT: two stacked cards */
.hero-right {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 10px 6px;
  gap: 8px;
  background: #080808;
  min-height: 0;
}

/* yellow form card */
.form-card {
  background: linear-gradient(135deg, #C07320 0%, #C07320 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 40px 48px;
  color: var(--blk);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 40px 80px -20px rgba(192, 115, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.form-tag {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  display: block;
}

.form-title {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 6px;
}

.form-group input {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--blk);
  outline: none;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-bottom-color: var(--blk);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.4;
}

.form-check input[type="checkbox"] {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  accent-color: var(--blk);
  margin-top: 2px;
}

.form-check a {
  color: var(--blk);
  font-weight: 700;
}

.btn-enviar {
  width: 100%;
  background: var(--blk);
  color: var(--wh);
  border: none;
  padding: 16px;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-enviar:hover {
  background: #2a2a2a;
}

.form-ok {
  display: none;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.08);
  padding: 9px;
  border-radius: 3px;
  text-align: center;
}

/* purple features card */
.features-card {
  background: rgba(40, 40, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 22px 16px;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
}


.feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* shared */
.ck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--y);
  color: var(--blk);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================
   SHARED BUTTON
   ======================== */
.btn-yellow {
  display: inline-block;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--y);
  color: var(--blk);
  padding: 12px 22px;
  border-radius: 3px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(192, 115, 32, 0.25);
}

.btn-yellow:hover {
  background: var(--yd);
  transform: translateY(-2px);
}

/* ========================
   OBJETIVOS
   ======================== */
.objetivos {
  background: radial-gradient(circle at 50% 50%, #0d0d0d 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.obj-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  cursor: pointer;
}

.obj-card .obj-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.obj-card:hover .obj-bg {
  transform: scale(1.1);
}

.obj-card--1 .obj-bg { background-image: url('images/obj-lifestyle.jpg'); }
.obj-card--2 .obj-bg { background-image: url('images/obj-muscle.jpg'); }
.obj-card--3 .obj-bg { background-image: url('images/obj-fitness.jpg'); }

.obj-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  transition: background 0.4s;
  z-index: 1;
}

.obj-card:hover .obj-shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(192, 115, 32, 0.05) 100%);
}

.obj-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  z-index: 2;
}

.obj-tag {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.obj-body h3 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  transform: translateY(5px);
  transition: transform 0.3s;
}

.obj-card:hover .obj-body h3 {
  transform: translateY(0);
}

/* ========================
   EXPERIMENTAL
   ======================== */
.experimental {
  background: radial-gradient(circle at 0% 0%, #0a0a0a 0%, #000 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--y);
}

.experimental::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4) 100%), url('images/hero-bg-premium.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}

.section-h2 {
  color: var(--wh);
}


.exp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.exp-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.exp-item .ck {
  background: var(--y);
  color: var(--blk);
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(204, 172, 0, 0.3);
}

/* ========================
   AULAS DE GRUPO
   ======================== */
.aulas {
  background: #0d0d0d;
  padding-bottom: 80px;
}

.aulas-banner {
  background: var(--blk);
  padding: 60px 24px 54px;
  border-bottom: 4px solid var(--y);
}

.aulas-h2 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
  color: #fff;
}

.aulas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.aula-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s;
  will-change: transform;
}

.aula-card:hover {
  border-color: rgba(192, 115, 32, 0.6);
  transform: translateY(-6px);
}

.aula-ico {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.aula-card h4 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 7px;
}

.aula-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.aula-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(204, 172, 0, 0.08);
  border-color: rgba(204, 172, 0, 0.3);
}

.more-num {
  font-family: "Avenir", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

.more-label {
  font-size: 0.78rem;
  color: #000;
  font-weight: 700;
}

/* ========================
   PLANOS
   ======================== */
.planos {
  background: var(--blk);
  padding: 90px 0;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.plano-card {
  background: linear-gradient(160deg, #0f0f0f, #050505);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s;
  will-change: transform;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.plano-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 222, 33, 0.5);
}

.plano-card.featured {
  border: 2px solid var(--y);
  box-shadow: 0 0 50px rgba(255, 222, 33, 0.2);
  transform: scale(1.08);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.plano-card.featured:hover {
  transform: scale(1.08) translateY(-15px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 222, 33, 0.3);
}

@keyframes floatCard {
  0%, 100% { transform: scale(1.08) translateY(0); }
  50% { transform: scale(1.08) translateY(-10px); }
}

.plano-badge {
  background: var(--y);
  color: var(--blk);
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
}

.plano-top {
  padding: 26px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plano-top h3 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--y);
  margin-bottom: 10px;
}

.plano-preco {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pnum {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pnum sup {
  font-size: 1rem;
  vertical-align: super;
}

.pper {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.plano-list {
  list-style: none;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plano-list li {
  font-size: 0.85rem;
}

.plano-list li.yes {
  color: #fff;
  font-weight: 500;
}

.plano-list li.yes i {
  color: var(--y);
  filter: drop-shadow(0 0 5px rgba(255, 222, 33, 0.4));
  margin-right: 10px;
}

.plano-list li.no {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: line-through;
}

.plano-list li.no i {
  margin-right: 10px;
}

.btn-plano {
  display: block;
  margin: auto 24px 24px;
  text-align: center;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--y);
  color: var(--blk);
  padding: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 25px rgba(204, 172, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-plano::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.btn-plano:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.planos-note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ========================
   LOCALIZAÇÕES
   ======================== */
.localizacoes {
  background: #0d0d0d;
  padding: 90px 0;
}

.locs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.loc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s;
  will-change: transform;
}

.loc-card:hover {
  border-color: var(--y);
  transform: translateY(-8px);
}

.loc-ico {
  font-size: 2.2rem;
  color: var(--y);
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(var(--glow));
}

.loc-card h3 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}

.loc-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 13px;
}

.loc-tel {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--y);
  text-decoration: none;
}

.loc-tel:hover {
  text-decoration: underline;
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: linear-gradient(135deg, #C07320 0%, #C07320 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'INPACTO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(0,0,0,0.03);
  pointer-events: none;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blk);
  line-height: 0.95;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.btn-dark {
  display: inline-block;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--blk);
  color: var(--wh);
  padding: 20px 48px;
  border-radius: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--blk);
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 24px;
  gap: 60px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  height: 52px !important;
  width: auto !important;
  display: block !important;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.6)) !important;
  opacity: 1 !important;
}

.footer-logo sup {
  font-size: 0.5em;
  vertical-align: super;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--y);
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--wh);
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.soc:hover {
  background: var(--y);
  color: var(--blk);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  padding: 13px 24px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-powered {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.04em;
}

.footer-powered a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-powered a:hover {
  color: var(--y);
}

/* ========================
   WHATSAPP FLOATING BUTTON
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s;
  will-change: transform;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65), 0 2px 8px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0); }
}


/* ========================
   ANIMATIONS
   ======================== */
/* ========================
   ANIMATIONS & DYNAMIC
   ======================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-up { transform: translateY(24px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Specific Interactive effects — obj-card only (others set above) */
.obj-card {
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.35s;
  will-change: transform;
}

.obj-card:hover {
  transform: translateY(-6px) scale(1.015);
}

/* Floating Flyer Animation */
@keyframes float {
  0% { transform: rotate(-5deg) translateY(0px); }
  50% { transform: rotate(-4deg) translateY(-15px); }
  100% { transform: rotate(-5deg) translateY(0px); }
}

.floating-flyer {
  animation: float 5s ease-in-out infinite;
}

/* Header dynamic state */
.header.scrolled {
  background: rgba(35, 31, 32, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header.scrolled .header-inner {
  height: 58px;
}

.header.scrolled .header-logo {
  height: 32px;
}


/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    min-height: 320px;
  }

  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .plano-card.featured {
    transform: scale(1);
  }

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

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

  .exp-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .obj-grid {
    grid-template-columns: 1fr;
  }

  .obj-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 80px 32px 32px;
    z-index: 1500;
    overflow-y: auto;
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav a {
    font-size: 1.3rem;
  }

  .burger {
    display: flex;
    z-index: 1600;
  }

  .btn-nav {
    display: none;
  }

  .hero-right {
    padding: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .locs-grid {
    grid-template-columns: 1fr;
  }

  .magazine {
    width: 180px;
  }

  .mag-price {
    font-size: 3rem;
  }
}

/* ========================
   SELECTOR PAGE (Splash)
   ======================== */
.selector-body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px 0; /* Reduced padding */
}

.selector-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.selector-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--y, #ffd700);
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.selector-logo {
  height: 24px;
  width: auto;
}

.selector-grid {
  flex: 1;
  display: flex;
  gap: 12px;
  padding: 0;
}

.sel-card {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 215, 0, 0.4);
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh; /* Scale to fill most of the screen */
}

.sel-card:hover {
  border-color: var(--y, #ffd700);
}

.sel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(0.5) contrast(1.1);
}

.card-bairro .sel-bg {
  background-image: url('images/sel-bairro.jpg'), linear-gradient(45deg, #1a1a1a, #000);
}

.card-aves .sel-bg {
  background-image: url('images/sel-aves.jpg'), linear-gradient(45deg, #000, #1a1a1a);
}

.sel-card:hover .sel-bg {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.2);
}

.sel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8));
  transition: opacity 0.4s;
}

.sel-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sel-title {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
  text-transform: uppercase;
}

.sel-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 30px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}

.sel-card:hover .sel-btn {
  opacity: 1;
  transform: translateY(0);
  background: #fff;
  color: #000;
}

/* Responsive Selector */
@media (max-width: 991px) {
  .sel-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .selector-body { height: auto; overflow: visible; }
  .selector-grid { flex-direction: column; height: auto; gap: 30px; padding: 30px 0; }
  .sel-card { min-height: 300px; }
  .sel-title { font-size: 2.2rem; }
  .sel-btn { opacity: 1; transform: none; }
}

/* Selector Footer */
.sel-footer {
  margin-top: 40px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sel-footer-main {
  display: grid;
  grid-template-columns: 0.8fr 2fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.sel-footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sel-loc h4 {
  color: var(--y, #ffd700);
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}

.sel-loc p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.sel-loc .sel-tel, 
.sel-loc .sel-email {
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem !important;
  display: block;
}

.sel-footer-cta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.sel-footer-cta h3 {
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--y, #ffd700);
  line-height: 1.2;
  margin: 0;
}

.sel-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 20px;
}

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

.sel-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.sel-footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.sel-footer-bottom a:hover {
  color: var(--y, #ffd700);
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .sel-footer-main { grid-template-columns: 1fr; gap: 40px; }
  .sel-footer-cta { text-align: left; align-items: flex-start; }
}

@media (max-width: 768px) {
  .sel-footer { padding: 30px 20px; }
  .sel-footer-info { grid-template-columns: 1fr; }
  .sel-footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* Vertical Magazine Logos */
.mag-logo-vertical {
  height: 85px !important;
  width: auto;
}

/* Selector Card Logo Styling */
.sel-logo-yellow {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
  z-index: 2;
}

.sel-card:hover .sel-logo-yellow {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.8));
}

@media (max-width: 768px) {
  .sel-logo-yellow {
    height: 90px;
  }
}
/* TOP BAR CTA */
.top-bar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--y);
  background: linear-gradient(90deg, var(--y), #da8428, var(--y));
  background-size: 200% auto;
  color: var(--blk);
  padding: 10px 20px;
  text-decoration: none;
  font-family: "Avenir", "Avenir Next", "Segoe UI", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2000;
  position: relative;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.top-bar-cta:hover {
  background-position: right center;
  color: var(--blk);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.top-bar-cta i {
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.top-bar-cta:hover i {
  transform: translateX(4px);
}

/* FORÇAR TODOS OS LOGOS A BRANCO */
img[src*='logo'], 
.header-logo, 
.selector-logo, 
.mag-logo-img, 
.footer-logo-img, 
.logo img {
  filter: brightness(0) invert(1) !important;
}

/* INDEX CTA FLOAT FIX */
.selector-container .top-bar-cta {
  margin-bottom: 50px;
  border-radius: 6px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 25px rgba(192, 115, 32, 0.3);
}

/* PROMO MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: radial-gradient(circle at top right, #1a1a1a, #050505);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  max-width: 90%;
  width: 450px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #fff;
}
.modal-tag {
  display: inline-block;
  background: var(--y);
  color: var(--blk);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.modal-body h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 15px;
  line-height: 1.1;
  color: #fff;
}
.modal-body p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.5;
}
.modal-btn {
  width: 100%;
  display: block;
  text-align: center;
}

/* NEW VISUAL MODAL */
.modal-content-visual {
  background: #0a0a0a;
  border-radius: 16px;
  position: relative;
  display: flex;
  overflow: hidden;
  max-width: 95%;
  width: 750px;
  min-height: 550px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.1);
}
.modal-overlay.active .modal-content-visual {
  transform: translateY(0) scale(1);
}
.modal-left {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.modal-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(10,10,10,1));
}
.modal-right {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.modal-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 115, 32, 0.15);
  color: var(--y);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border: 1px solid rgba(192, 115, 32, 0.3);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--y);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--y);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px var(--y); }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.modal-right h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 30px;
}
.countdown-visual {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.cd-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
  position: relative;
}
.cd-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.3);
}
.modal-visual-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.m-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--wh);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.m-ico:hover {
  background: var(--y);
  color: var(--blk);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .modal-content-visual { flex-direction: column; }
  .modal-left { min-height: 150px; }
  .modal-left::after { background: linear-gradient(to bottom, transparent, rgba(10,10,10,1)); }
}

/* IMPACT MODAL - LESS CONTENT MORE TRANSITION */
.modal-content-impact {
  /* Removed solid background for image transparency */

  background: rgba(10, 10, 10, 0.85);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  max-width: 90%;
  width: 350px;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(192, 115, 32, 0.2);
  transform: perspective(1000px) rotateX(-15deg) translateY(50px) scale(0.9);
  opacity: 0;
  transition: none; /* replaced by bounce animation */
}
.modal-overlay.active .modal-content-impact {
  animation: bounceModal 0.9s ease-out forwards;
  opacity: 1;
}

@keyframes bounceModal {
  0% { transform: translateY(150px) scale(0.6); opacity: 0; }
  45% { transform: translateY(-25px) scale(1.05); opacity: 1; }
  65% { transform: translateY(12px) scale(0.98); }
  85% { transform: translateY(-4px) scale(1.01); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.impact-bg-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(192, 115, 32, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  animation: rotateGlow 8s linear infinite;
  pointer-events: none;
}
@keyframes rotateGlow {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.impact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.modal-close-impact {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close-impact:hover {
  background: var(--y);
  color: var(--blk);
  transform: rotate(90deg);
}

.impact-tag, .impact-title, .impact-btn {
  opacity: 0;
}

.modal-overlay.active .impact-tag {
  animation: revealScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.3s;
}
.modal-overlay.active .impact-title {
  animation: revealSlideIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.4s;
}
.modal-overlay.active .impact-btn {
  animation: revealUpBtn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.55s;
}

@keyframes revealScale {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes revealSlideIn {
  0% { opacity: 0; transform: translateY(30px) skewY(2deg); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0) skewY(0); filter: blur(0); }
}
@keyframes revealUpBtn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.impact-tag {
  display: inline-block;
  color: var(--y);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  position: relative;
}
.impact-tag::before, .impact-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(192, 115, 32, 0.4);
}
.impact-tag::before { right: 100%; margin-right: 15px; }
.impact-tag::after { left: 100%; margin-left: 15px; }

.impact-title {
  font-size: clamp(2rem, 6vw, 2.7rem);
  line-height: 0.95;
  margin-bottom: 40px;
  text-shadow: 0 10px 20px rgba(0,0,0,0.5);
  font-weight: 700;
}

.impact-btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(192, 115, 32, 0.3);
  transition: all 0.3s;
}
.impact-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(192, 115, 32, 0.5);
}

/* IMAGE BACKGROUND FOR IMPACT MODAL */
.impact-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  z-index: 0;
  transform: scale(1.1);
}
.modal-overlay.active .impact-bg-image {
  animation: bgZoomOut 8s ease-out forwards;
}
.impact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
@keyframes bgZoomOut {
  0% { transform: scale(1.15) translateY(-20px); }
  100% { transform: scale(1) translateY(0); }
}
