﻿/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Cuesta Supermercados)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors - Light Theme */
  --primary-color: #007f59;
  --primary-hover: #006043;
  --secondary-color: #c5a059;
  --secondary-hover: #b28e46;
  
  --bg-primary: #f8faf7;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f0f4ef;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  /* Fonts */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Variables */
/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  .header,
  main,
  section,
  footer,
  .hero,
  .footer,
  .clube-footer,
  .container,
  .hero-content,
  .app-promo-content,
  .footer-grid,
  .footer-bottom,
  .store-grid,
  .grid-3,
  .simple-hero-content,
  .nps-hero-content {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
    margin-left: auto;
    margin-right: auto;
  }

}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

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

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

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

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

/* ==========================================================================
   BUTTONS & ACCENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-family: var(--font-headings);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  gap: 10px;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    max-width: 340px;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 6px -1px rgba(0, 127, 89, 0.2), 0 2px 4px -1px rgba(0, 127, 89, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 10px 15px -3px rgba(0, 127, 89, 0.3), 0 4px 6px -2px rgba(0, 127, 89, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 6px -1px rgba(197, 160, 89, 0.2), 0 2px 4px -1px rgba(197, 160, 89, 0.1);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  box-shadow: 0 10px 15px -3px rgba(197, 160, 89, 0.3), 0 4px 6px -2px rgba(197, 160, 89, 0.1);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border: 2px solid #25d366;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  color: #ffffff;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--bg-tertiary);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: var(--header-height);
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-fast);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  color: var(--text-main);
  opacity: 0.85;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

@media (min-width: 769px) {
  .nav-link-clube {
    padding: 9px 18px;
    border: 1.5px solid var(--primary-color);
    border-radius: 999px;
    color: var(--primary-color);
    opacity: 1;
  }

  .nav-link-clube:hover,
  .nav-link-clube.active {
    background-color: var(--primary-color);
    color: #ffffff;
  }

  .nav-link-clube::after {
    display: none;
  }
}

/* Mobile Menu Toggle */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  min-width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
  margin-left: 16px;
}

.menu-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .header .container {
    max-width: 100vw;
    overflow: visible;
  }

  .menu-btn {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: calc(100dvh - var(--header-height));
    background-color: var(--bg-secondary);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 18px 28px;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-normal);
    z-index: 1005;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 18px;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.25rem;
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  
  /* Hamburger open animation */
  .menu-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 127, 89, 0.08) 0%, rgba(248, 250, 247, 0) 70%);
  z-index: -1;
}

.hero-content {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-height: 680px;
  width: min(100%, 560px);
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-family: var(--font-headings);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero::before {
    right: 0;
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   MISSION, VISION, VALUES
   ========================================================================== */
.mvv {
  background-color: var(--bg-secondary);
  transition: background-color var(--transition-normal);
}

.mvv-card {
  padding: 40px;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.mvv-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(0, 127, 89, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 24px;
}

.mvv-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mvv-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   CLUBE CUESTA (APP PROMO)
   ========================================================================== */
.app-promo {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.app-promo-content {
  display: flex;
  align-items: center;
  gap: 72px;
}

.app-promo-text {
  flex: 1;
}

.app-promo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.app-promo-image img {
  max-width: 100%;
  width: min(100%, 520px);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.app-promo-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.app-promo-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 500px) {
  .app-features-grid {
    grid-template-columns: 1fr;
  }

  .app-feature-item {
    align-items: flex-start;
  }
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.app-feature-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 3px;
}

.app-feature-icon,
.store-info-icon,
.footer-contact-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.icon-map-pin {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.icon-phone {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.57 2.61a2 2 0 0 1-.45 2.11L8 9.67a16 16 0 0 0 6.33 6.33l1.23-1.23a2 2 0 0 1 2.11-.45c.84.25 1.71.45 2.61.57A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.57 2.61a2 2 0 0 1-.45 2.11L8 9.67a16 16 0 0 0 6.33 6.33l1.23-1.23a2 2 0 0 1 2.11-.45c.84.25 1.71.45 2.61.57A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.icon-clock {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.icon-mail {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.icon-sparkles {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 2 1.7 5.1L19 9l-5.3 1.9L12 16l-1.7-5.1L5 9l5.3-1.9L12 2Zm7 11 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 13l.8 2.2L8 16l-2.2.8L5 19l-.8-2.2L2 16l2.2-.8L5 13Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 2 1.7 5.1L19 9l-5.3 1.9L12 16l-1.7-5.1L5 9l5.3-1.9L12 2Zm7 11 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 13l.8 2.2L8 16l-2.2.8L5 19l-.8-2.2L2 16l2.2-.8L5 13Z'/%3E%3C/svg%3E");
}

.icon-gift {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 22V7'/%3E%3Cpath d='M12 7H8.5A2.5 2.5 0 1 1 11 4.5C11 6 12 7 12 7Z'/%3E%3Cpath d='M12 7h3.5A2.5 2.5 0 1 0 13 4.5C13 6 12 7 12 7Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 22V7'/%3E%3Cpath d='M12 7H8.5A2.5 2.5 0 1 1 11 4.5C11 6 12 7 12 7Z'/%3E%3Cpath d='M12 7h3.5A2.5 2.5 0 1 0 13 4.5C13 6 12 7 12 7Z'/%3E%3C/svg%3E");
}

.icon-bell {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3C/svg%3E");
}

.icon-chart {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Crect x='7' y='12' width='3' height='5'/%3E%3Crect x='12' y='8' width='3' height='9'/%3E%3Crect x='17' y='5' width='3' height='12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Crect x='7' y='12' width='3' height='5'/%3E%3Crect x='12' y='8' width='3' height='9'/%3E%3Crect x='17' y='5' width='3' height='12'/%3E%3C/svg%3E");
}

.app-feature-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.app-feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.app-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  background-color: var(--text-main);
  color: var(--bg-secondary);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.app-badge:hover {
  transform: translateY(-2px);
  background-color: #000000;
}

.app-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.app-badge-text span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
}

.app-badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .app-promo-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 36px;
  }
  
  .app-feature-item {
    text-align: left;
  }
  
  .app-badges {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .app-promo-image img {
    width: min(100%, 360px);
    max-height: 520px;
  }
}

/* ==========================================================================
   STORES SECTION (INTERACTIVE FILTER)
   ========================================================================== */
.stores-section {
  background-color: var(--bg-secondary);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-family: var(--font-headings);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0, 127, 89, 0.2);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: all var(--transition-normal);
}

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

@media (max-width: 640px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), opacity var(--transition-normal);
}

.store-card.hidden {
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.store-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
}

.store-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-color);
}

.store-city {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(0, 127, 89, 0.1);
  color: var(--primary-color);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.store-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.store-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-info-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}

.store-info-icon {
  color: var(--primary-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.store-info-text {
  color: var(--text-muted);
}

.store-card-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
}

@media (max-width: 420px) {
  .store-card-footer {
    flex-direction: column;
  }
}

.store-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.store-btn-map {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.store-btn-map:hover {
  background-color: var(--primary-hover);
}

.store-btn-contact {
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.store-btn-contact:hover {
  background-color: var(--bg-tertiary);
}

/* ==========================================================================
   TIMELINE PAGE
   ========================================================================== */
.history-intro {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 0;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.history-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.history-intro h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.history-intro .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cuesta-meaning {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border-left: 5px solid var(--primary-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.cuesta-meaning h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.timeline-section {
  background-color: var(--bg-secondary);
  position: relative;
}

/* Vertical line */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 30px;
  }
}

.timeline-item {
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
}

.timeline-item-inner {
  width: 45%;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.timeline-item:hover .timeline-item-inner {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .timeline-item {
    justify-content: flex-end !important;
  }
  
  .timeline-item-inner {
    width: calc(100% - 60px);
  }
}

/* Timeline dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 24px;
  height: 24px;
  background-color: var(--bg-secondary);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--secondary-color);
  transform: translateX(-50%) scale(1.2);
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 30px;
  }
}

/* Timeline content styling */
.timeline-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 10px 24px;
  display: inline-block;
}

.timeline-item:nth-child(even) .timeline-date {
  background-color: var(--secondary-color);
}

.timeline-body {
  padding: 24px;
}

.timeline-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.timeline-body p {
  color: var(--text-muted);
}

.timeline-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #004b35; /* Verde escuro da marca */
  color: rgba(255, 255, 255, 0.85); /* Melhor contraste sobre fundo verde */
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-col,
  .footer-links,
  .footer-contact-item {
    align-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: #004b35;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-link-item a {
  transition: all var(--transition-fast);
  word-break: break-word;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  min-width: 0;
  word-break: break-word;
}

.footer-contact-icon {
  color: var(--secondary-color);
  font-size: 1.125rem;
  margin-top: 3px;
}

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

.developer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.developer-credit a {
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.developer-credit a:hover {
  opacity: 1;
}

.developer-credit img {
  display: block;
  max-height: 15px;
  max-width: 86px;
  width: auto;
  object-fit: contain;
}

.simple-page {
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  min-height: calc(100vh - var(--header-height));
}

.simple-hero {
  padding: 100px 0;
}

.simple-hero-content,
.nps-hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.simple-hero-text h1 {
  color: var(--text-main);
  font-size: 3rem;
  line-height: 1.1;
  margin: 20px 0;
}

.simple-hero-text p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
}

.simple-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

@media (max-width: 640px) {
  .simple-hero-content,
  .nps-hero-content {
    width: 100%;
    gap: 28px;
  }

  .simple-card {
    padding: 24px 20px;
  }
}

.simple-card h2 {
  margin-bottom: 12px;
}

.simple-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.nps-hero-content {
  grid-template-columns: 0.9fr 1.1fr;
}

.nps-hero-centered {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.nps-hero-centered .simple-hero-text p {
  margin-left: auto;
  margin-right: auto;
}

.nps-hero-centered .nps-actions {
  justify-content: center;
}

.nps-art img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.nps-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nps-options,
.nps-stores {
  background-color: var(--bg-primary);
}

.nps-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nps-choice-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nps-choice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.nps-choice-card h3 {
  font-size: 1.25rem;
}

.nps-choice-card p {
  color: var(--text-muted);
}

.nps-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.nps-store-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.nps-store-grid a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .simple-hero-content,
  .nps-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .simple-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .nps-actions {
    justify-content: center;
  }

  .nps-choice-grid,
  .nps-store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .simple-hero {
    padding: 56px 0;
  }

  .simple-hero-text h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(37, 211, 102, 0.2);
  z-index: 999;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 35px;
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 24px;
  }

  .back-to-top {
    right: 21px;
    bottom: 96px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Intersection Observer)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   CLUBE CUESTA LANDING PAGE (clube.html)
   ========================================================================== */
.clube-body {
  background-color: #ffffff;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.clube-body::before {
  content: '%';
  position: absolute;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(0, 127, 89, 0.03); /* Verde da marca suave */
  top: -50px;
  right: -50px;
  pointer-events: none;
  font-family: var(--font-headings);
}

.clube-body::after {
  content: '%';
  position: absolute;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(197, 160, 89, 0.04); /* Ouro da marca suave */
  bottom: 10%;
  left: -50px;
  pointer-events: none;
  font-family: var(--font-headings);
}

.clube-header {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.clube-hero {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 0;
  overflow: visible;
  min-height: calc(100vh - var(--header-height) - 160px); /* Ajuste para o rodapé */
}

.clube-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.clube-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 5;
  padding-bottom: 62px;
}

.clube-right {
  flex: 1.2;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  min-width: 0;
  height: clamp(610px, calc(100vh - var(--header-height) - 132px), 760px);
  overflow: visible;
  margin-bottom: -18px;
}

/* --- TICKET 3D RECREATION (Image Reference) --- */
.ticket-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 440px;
}

.ticket-box {
  background: linear-gradient(135deg, #009e6d 0%, #006b47 100%);
  border: 6px solid #00b377;
  border-radius: 24px;
  width: 100%;
  padding: 30px 24px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 2px 5px rgba(255, 255, 255, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ticket-inner-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px 40px;
  width: 85%;
  text-align: center;
  box-shadow: 0 6px 0 #e2e8f0;
}

.ticket-inner-card h2 {
  color: #007f59;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-headings);
  letter-spacing: 1px;
  margin: 0;
}

.ticket-starburst {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 64px;
  height: 64px;
  background-color: #ffd200;
  color: #007f59;
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: rotate(15deg);
  border: 3px solid #ffffff;
  animation: pulse-star 3s ease-in-out infinite;
  font-family: var(--font-headings);
}

@keyframes pulse-star {
  0% { transform: rotate(15deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.06); }
  100% { transform: rotate(15deg) scale(1); }
}

.ticket-stars {
  display: flex;
  gap: 8px;
  justify-content: center;
  color: #ffd200;
  font-size: 1.25rem;
  margin: 5px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ticket-ribbon {
  background-color: #ffffff;
  color: #007f59;
  font-family: var(--font-headings);
  font-size: 2.3rem;
  font-weight: 900;
  padding: 8px 30px;
  width: 105%;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  letter-spacing: 2px;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

.ticket-sub-box {
  background-color: #ff5500;
  border: 3px solid #ffcc00;
  border-radius: 16px;
  padding: 16px 20px;
  width: 95%;
  margin-top: 15px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  position: relative;
}

.ticket-sub-box::before {
  content: '';
  position: absolute;
  top: -15px;
  right: 40px;
  border-width: 0 15px 15px 15px;
  border-style: solid;
  border-color: transparent transparent #ffcc00 transparent;
}

.ticket-sub-box h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-headings);
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin: 0;
}

.clube-store-badge {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  max-width: 180px;
  justify-content: center;
}

.clube-store-badge img {
  height: 32px;
  width: auto;
}

.clube-mascot-crop {
  position: absolute;
  bottom: -18px;
  right: clamp(-48px, -2vw, 8px);
  height: clamp(640px, 78vh, 860px);
  width: auto;
  object-fit: contain;
  animation: none;
  transform-origin: bottom center;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.18));
}

.clube-mascot-mobile {
  display: none;
}

@keyframes floatMascot {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* App Badges custom styling */
.clube-app-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.clube-app-link {
  transition: transform var(--transition-fast);
}

.clube-app-link:hover {
  transform: translateY(-3px);
}

.clube-badge-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.clube-download-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-md);
  align-items: flex-start;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.clube-download-message {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.clube-input-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  width: 100%;
}

.clube-input-group {
  position: relative;
  flex-grow: 1;
}

.clube-input-group label {
  position: absolute;
  top: -8px;
  left: 12px;
  background-color: var(--primary-color);
  padding: 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 4px;
  z-index: 2;
}

.clube-input-group input {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  color: var(--text-main);
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  border: 2px solid var(--border-color);
  transition: border-color var(--transition-fast);
}

.clube-input-group input::placeholder {
  color: var(--text-muted);
}

.clube-input-group input:focus {
  border-color: var(--primary-color);
  background-color: var(--bg-secondary);
}

.clube-btn-continue {
  height: 48px;
  padding: 0 32px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.clube-btn-continue:hover {
  background-color: var(--primary-hover);
}

.clube-btn-continue:active {
  transform: scale(0.98);
}

.clube-footer {
  background-color: #004b35; /* Verde escuro da marca */
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 4;
}

.clube-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.clube-footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
}

.clube-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsividade para a página do Clube */
@media (max-width: 992px) {
  .clube-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-bottom: 0;
  }
  
  .clube-left {
    align-items: center;
    width: 100%;
    padding-bottom: 0;
  }
  
  .clube-right {
    align-self: center;
    width: 100%;
    max-width: 520px;
    height: 460px;
    margin-bottom: -20px;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .clube-mascot-crop {
    position: absolute;
    top: 0;
    right: 50%;
    height: 590px;
    width: auto;
    object-fit: contain;
    animation: floatMascotMobile 6s ease-in-out infinite;
    transform: translateX(50%);
    transform-origin: top center;
  }

  @keyframes floatMascotMobile {
    0% { transform: translateX(50%) translateY(0); }
    50% { transform: translateX(50%) translateY(-10px); }
    100% { transform: translateX(50%) translateY(0); }
  }
  
  .clube-download-box {
    justify-content: center;
    width: 100%;
    max-width: 500px;
  }

  .clube-download-action {
    align-items: center;
    text-align: center;
  }

  .clube-app-links {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .clube-hero {
    padding-top: calc(var(--header-height) + 24px);
  }

  .clube-hero-content {
    gap: 24px;
  }

  .clube-left {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .ticket-container {
    max-width: 330px;
  }

  .clube-right {
    display: none;
  }

  .clube-mascot-mobile {
    display: block;
    width: min(100%, 300px);
    height: auto;
    margin-top: -2px;
    margin-bottom: -10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .clube-mascot-mobile img {
    display: block;
    position: relative;
    left: 50%;
    max-height: 430px;
    max-width: 100%;
    height: auto;
    width: auto;
    transform: translateX(-50%);
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.16));
  }

  @keyframes floatMascotMobile {
    0% { transform: translateX(50%) translateY(0); }
    50% { transform: translateX(50%) translateY(-8px); }
    100% { transform: translateX(50%) translateY(0); }
  }

  .clube-ticket-container {
    width: 100%;
    max-width: 320px;
  }
  
  .clube-ticket-title {
    font-size: 1.5rem;
  }
  
  .clube-ticket-desc {
    font-size: 1.25rem;
  }
  
  .clube-input-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .clube-btn-continue {
    width: 100%;
  }
  
  .clube-download-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .clube-download-text {
    align-items: center;
  }
  
  .clube-footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .clube-footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .clube-badge-img {
    height: 48px;
  }
}


