/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --primary-teal: #0b5c64;
  --primary-teal-dark: #074248;
  --primary-teal-medium: #0F6B76;
  --primary-teal-light: #e7f2f3;
  --accent-wood: #C49A6C;
  --accent-wood-hover: #b08759;
  --accent-wood-light: #fdfaf7;
  
  --text-main: #1e2f31;
  --text-muted: #5e7375;
  --text-light: #ffffff;
  
  --bg-light: #f4f8f8;
  --bg-white: #ffffff;
  
  --shadow-sm: 0 2px 4px rgba(11, 92, 100, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 92, 100, 0.08);
  --shadow-lg: 0 10px 25px rgba(11, 92, 100, 0.12);
  --shadow-hover: 0 20px 35px rgba(11, 92, 100, 0.18);
  
  --font-family-body: 'Inter', sans-serif;
  --font-family-heading: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--primary-teal-dark);
}

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

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(11, 92, 100, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(11, 92, 100, 0.3);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-teal);
  border: 1px solid var(--primary-teal-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--primary-teal-light);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-smooth);
}

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

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

.logo-svg {
  width: 38px;
  height: 38px;
  color: var(--primary-teal-medium);
}

.logo-svg .drum-swirl {
  transform-origin: 50px 60px;
  transform: translate(50px, 60px) scale(0.32) translate(-50px, -50px) rotate(0deg);
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo:hover .logo-svg .drum-swirl {
  transform: translate(50px, 60px) scale(0.32) translate(-50px, -50px) rotate(360deg);
}

.logo-text {
  font-family: var(--font-family-heading);
  font-weight: 400; /* CLUBE */
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.logo-text .logo-bold {
  font-weight: 800; /* LAVE */
  margin-right: 2px;
  color: var(--primary-teal-dark);
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-btn-franchise {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
}

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

.nav-btn-franchise::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-teal);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 140px 20px 80px 20px;
  background: linear-gradient(180deg, #f2f7f7 0%, var(--bg-white) 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-title .highlight {
  color: var(--accent-wood);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  color: var(--text-light);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--accent-wood);
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.visual-content h3 {
  color: var(--text-light);
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.visual-content p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.visual-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.visual-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.visual-map-link {
  font-weight: 600;
  font-size: 13px;
  color: var(--accent-wood);
  display: inline-block;
}

.visual-map-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   DIFERENCIAIS BANNER
   ========================================================================== */
.banner-features {
  padding: 40px 20px;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(11, 92, 100, 0.05);
  border-bottom: 1px solid rgba(11, 92, 100, 0.05);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  font-size: 32px;
  background-color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.feature-text h4 {
  font-size: 16px;
  color: var(--primary-teal-dark);
}

.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVIÇOS SECTION
   ========================================================================== */
.services {
  padding: 100px 20px;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(11, 92, 100, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 92, 100, 0.15);
}

.service-card.featured {
  background: linear-gradient(180deg, var(--accent-wood-light) 0%, var(--bg-white) 100%);
  border: 2px solid var(--accent-wood);
  box-shadow: var(--shadow-md);
}

.service-card.featured:hover {
  box-shadow: var(--shadow-hover);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary-teal);
  background-color: var(--primary-teal-light);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
}

.service-badge.gold {
  color: var(--accent-wood-hover);
  background-color: #fdf5ea;
}

.service-icon-wrapper {
  font-size: 40px;
  margin-bottom: 5px;
}

.service-card h3 {
  font-size: 26px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.price-box {
  background-color: var(--bg-light);
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.service-card.featured .price-box {
  background-color: #fdf5ea;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-main);
}

.price-row strong {
  font-size: 18px;
  color: var(--primary-teal-dark);
  font-family: var(--font-family-heading);
}

.price-row .gold-text {
  color: var(--accent-wood-hover);
  font-size: 22px;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-info-footer {
  max-width: 800px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-alert {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal-dark);
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  text-align: center;
}

.info-restriction {
  border-left: 3px solid #f59e0b;
  background-color: #fffbeb;
  color: #b45309;
  padding: 12px 20px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-size: 13px;
}

/* ==========================================================================
   TIMELINE LOCKER SECTION
   ========================================================================== */
.timeline-section {
  padding: 100px 20px;
  background-color: var(--bg-light);
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: var(--primary-teal-light);
}

.timeline-step {
  display: flex;
  gap: 30px;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-teal);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg-light);
}

.step-card {
  flex: 1;
  background-color: var(--bg-white);
  padding: 25px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 92, 100, 0.03);
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   FRANQUIA SECTION
   ========================================================================== */
.franchise {
  padding: 100px 20px;
  background-color: var(--bg-white);
}

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

.franchise-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.gold-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: #fdf5ea;
  color: var(--accent-wood-hover);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.franchise-info h2 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
}

.franchise-info p {
  font-size: 16px;
  color: var(--text-muted);
}

.franchise-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.perk {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.perk-check {
  font-size: 16px;
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk strong {
  display: block;
  font-size: 15px;
  color: var(--primary-teal-dark);
}

.perk span {
  font-size: 13px;
  color: var(--text-muted);
}

.franchise-form-wrapper {
  background-color: var(--bg-light);
  border: 1px solid rgba(11, 92, 100, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.franchise-form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.franchise-form-wrapper p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(11, 92, 100, 0.15);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-white);
  color: var(--text-main);
  font-family: var(--font-family-body);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(11, 92, 100, 0.1);
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 13px;
}

.form-status.success {
  background-color: #d1fae5;
  color: #065f46;
}

.form-status.error {
  background-color: #fee2e2;
  color: #991b1b;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #101e20;
  color: #94a8aa;
  padding: 80px 20px 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-brand p {
  font-size: 14px;
}

.footer-slogan {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-info h4, .footer-address h4 {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-info p, .footer-address p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-info a {
  color: var(--accent-wood);
}

.footer-info a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  text-align: center;
  opacity: 0.7;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid .service-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(11, 92, 100, 0.05);
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-subtitle {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid .service-card.featured {
    grid-column: span 1;
  }
  
  .franchise-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .timeline-line {
    left: 15px;
  }
  
  .timeline-step {
    gap: 15px;
  }
  
  .step-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
    box-shadow: 0 0 0 4px var(--bg-light);
  }
  
  .franchise-form-wrapper {
    padding: 25px 20px;
  }
}
