:root {
  --primary-color: #f6ed42;
  --primary-dark: #e6d73a;
  --secondary-color: #1A1A1A;
  --background-dark: #0F0F0F;
  --background-light: #1F1F1F;
  --text-light: #FFFFFF;
  --text-gray: #B0B0B0;
  --border-color: #333333;
  --success-color: #f6ed42;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

/* Navegação */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--background-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
  white-space: nowrap;
  width: auto;
  text-align: center;
  display: inline-block;
}

.logo-seven {
  background: var(--primary-color);
  color: var(--background-dark);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-weight: 900;
  font-size: 1.6rem;
  display: inline-block;
  min-width: 32px;
  text-align: center;
  margin-left: 0.2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  z-index: 3;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

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

.btn-outline {
  background: var(--primary-color);
  color: var(--background-dark);
  border-color: var(--primary-color);
  
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--background-dark);
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.5);
}



/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 1.5rem;
  position: relative;
  display: block;
  width: 100%;
  color: var(--text-light);
}

.plans .section-title {
  color: white;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto;
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: var(--background-light);
}

/* Grid de Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
}

.feature-card {
  background: #0A0A0A;
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #2A2A2A;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(246, 237, 66, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .feature-card {
    padding: 0.8rem;
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(246, 237, 66, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 237, 66, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(246, 237, 66, 0.3);
}

/* Cards de Oferta Especial */
.feature-card.special-offer {
  background: #0A0A0A;
  border: 1px solid rgba(246, 237, 66, 0.2);
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(246, 237, 66, 0.2);
}

.feature-card.special-offer::before {
  background: linear-gradient(90deg, transparent, rgba(246, 237, 66, 0.2), transparent);
}

.feature-card.special-offer:hover {
  border-color: rgba(246, 237, 66, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(246, 237, 66, 0.4);
  transform: translateY(-8px);
}

.offer-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: black;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(255, 122, 0, 0.4);
  animation: pulse 2s infinite;
  z-index: 20;
}

@media (max-width: 480px) {
  .offer-badge {
    padding: 0.2rem 0.4rem;
    font-size: 0.5rem;
    top: -6px;
    right: -6px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
  }
}

.feature-card.special-offer .feature-icon {
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
}

.feature-card.special-offer h3 {
  color: var(--text-light);
}

/* Cards Dinâmicos com Movimento e Sombra Laranja */
.dynamic-card {
  position: relative;
  overflow: hidden;
  animation: cardFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(255, 122, 0, 0.1);
}

.dynamic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 122, 0, 0.02) 0%, 
    transparent 50%, 
    rgba(255, 122, 0, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}



.dynamic-card .feature-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
  }
}

.dynamic-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(255, 122, 0, 0.3),
              0 0 25px rgba(255, 122, 0, 0.3);
}

.dynamic-card:hover .feature-icon {
  animation-duration: 1s;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}



.feature-icon {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
}

@media (max-width: 480px) {
  .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text-light);
  position: relative;
  z-index: 2;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 480px) {
  .feature-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  flex-grow: 1;
}

@media (max-width: 480px) {
  .feature-card p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
}





/* Plans Section */
.plans {
  padding: 6rem 0;
  background: var(--background-dark);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 400px;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 3rem;
  }
}

.plan-card {
  position: relative;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(246, 237, 66, 0.15);
}

.plan-card.featured {
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: visible;
  transform: none;
  z-index: 1;
  margin: 0;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 0 20px rgba(246, 237, 66, 0.2);
  padding-top: 2.5rem;
}

.plan-card.featured:hover {
  box-shadow: 0 0 35px rgba(246, 237, 66, 0.25);
  transform: translateY(-8px);
}

.plan-badge {
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f6ed42;
  color: #000;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  min-width: 160px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

/* Efeito de hover removido conforme solicitado */

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-align: center;
}

.plan-price {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.payment-method {
  margin: 0 auto 0.5rem;
  text-align: center;
  width: 100%;
}

.payment-text {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-style: italic;
}

.monthly-option {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.monthly-label {
  color: var(--text-gray);
  font-weight: 500;
}

.monthly-price {
  color: var(--text-light);
  font-weight: 600;
}

.installments {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 0.3rem;
}

.currency {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-right: 0.2rem;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  align-self: flex-end;
  margin-bottom: 0.3rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features i {
  color: var(--success-color);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--background-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--secondary-color);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(246, 237, 66, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-color);
}

.faq-question:hover h3 {
  color: var(--background-dark);
}

.faq-question:hover i {
  color: var(--background-dark);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* Video Section */
.video-section {
  padding: 6rem 0;
  background: var(--background-dark);
  text-align: center;
}

.video-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 600px;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 122, 0, 0.2);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 122, 0, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .video-wrapper {
    border-radius: 15px;
  }
}

/* Community Section */
.community {
  padding: 6rem 0;
  background: var(--background-dark);
  text-align: center;
}

.community-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(246, 237, 66, 0.15);
}

.social-link i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--secondary-color);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  height: 35px;
  width: auto;
  max-width: 150px;
}

.footer-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-logo h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-gray);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { 
    opacity: 0; 
    transform: translateX(30px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
}

/* Seção Escolha de Academia */
.academy-selection {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
}

.academy-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: 20px;
}

.academy-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.academy-slide {
  min-width: 100%;
  opacity: 0;
  transform: translateX(100%) scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.academy-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.academy-card {
  background: var(--background-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.academy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(255, 122, 0, 0.2);
}

.academy-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.academy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.academy-card:hover .academy-image img {
  transform: scale(1.05);
}

.academy-info {
  padding: 2rem;
}

.academy-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.academy-address {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.academy-address i {
  color: var(--primary-color);
}

.academy-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(255, 122, 0, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 122, 0, 0.2);
}

.academy-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.academy-hours p {
  color: var(--text-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.academy-hours i {
  color: var(--primary-color);
}

/* Controles do Carrossel de Academia */
.academy-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 122, 0, 0.9);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.academy-carousel-btn:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.academy-carousel-btn.prev {
  left: -25px;
}

.academy-carousel-btn.next {
  right: -25px;
}

.academy-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.academy-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.academy-indicator.active,
.academy-indicator:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--background-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-card.featured {
    transform: none;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Academia Carousel Mobile */
  .academy-carousel-container {
    margin: 2rem auto 0;
  }

  .academy-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .academy-carousel-btn.prev {
    left: -20px;
  }

  .academy-carousel-btn.next {
    right: -20px;
  }

  .academy-info {
    padding: 1.5rem;
  }

  .academy-info h3 {
    font-size: 1.5rem;
  }

  .academy-features {
    gap: 0.5rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .academy-hours {
    padding: 0.8rem;
  }

  .academy-hours p {
    font-size: 0.85rem;
  }

  .carousel-indicators {
    margin-top: 1.5rem;
    gap: 0.6rem;
  }

  .indicator {
    width: 6px;
    height: 6px;
  }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 30px;
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float i {
    font-size: 26px;
  }
}

/* Título da seção de planos em branco */
.plans .section-title {
  color: white !important;
}

/* Texto da seção de planos */
.plans {
  color: var(--text-light);
}

/* Botão "Escolher Plano" do plano START com texto preto */
.plans .btn-primary {
  color: black !important;
}

/* Botão "Escolher Plano" do plano INFINITY BLACK com fundo amarelo e texto preto */
.plans .btn-outline {
  background: var(--primary-color) !important;
  color: black !important;
}

/* Hover do botão INFINITY BLACK - texto preto sobre fundo amarelo */
.plans .btn-outline:hover {
  color: black !important;
}

/* Botão "Faça sua matrícula agora" com texto preto */
.hero .btn-primary {
  color: black !important;
}

/* Botão "Conheça a Infinity 7" com texto branco */
.hero .btn-secondary {
  color: white !important;
}

.hero .btn-secondary:hover {
  color: black !important;
}
