* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom Alert Styles */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.custom-alert-overlay.show {
  opacity: 1;
  visibility: visible;
}

.custom-alert-box {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 80px rgba(231, 76, 60, 0.3), 0 0 0 1px rgba(231, 76, 60, 0.1);
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(231, 76, 60, 0.1);
}

.custom-alert-overlay.show .custom-alert-box {
  transform: scale(1) translateY(0);
}

.custom-alert-content {
  text-align: center;
  margin-bottom: 2rem;
}

.custom-alert-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.custom-alert-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.custom-alert-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.custom-alert-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.custom-alert-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-alert-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.custom-alert-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.custom-alert-btn:hover::before {
  left: 100%;
}

.custom-alert-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.custom-alert-btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #0d7377);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.custom-alert-btn-cancel {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  color: #fff;
  box-shadow: 0 5px 20px rgba(149, 165, 166, 0.3);
}

.custom-alert-btn-cancel:hover {
  background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo i {
  color: #e74c3c;
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #e74c3c;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e74c3c;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/hero_banner.JPEG") center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-secondary {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/placeholder.svg?height=600&width=1200")
    center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title span {
  color: #e74c3c;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #e74c3c;
  color: #fff;
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #333;
}

.btn-outline {
  background: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}

.btn-outline:hover {
  background: #e74c3c;
  color: #fff;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.section-title span {
  color: #e74c3c;
}

.section-subtitle {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.section-subtitle span {
  color: #e74c3c;
}

/* About Section */
.about {
  padding: 8rem 0 5rem 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  color: #e74c3c;
  font-size: 1.2rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* SIMPLIFIED Service Card Hover */
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #e74c3c;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
  text-decoration: none;
  color: inherit;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Plans Section */
.plans {
  padding: 5rem 0;
  background: #f8f9fa;
}

/* Plans Section Title - REMOVE background */
.plans .section-title {
  color: #333;
  text-shadow: none;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 3rem;
}

.plans .section-title span {
  color: #e74c3c;
}

/* Plans Cards Grid */
.plans-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.plan-category-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: visible;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.plan-category-card:hover {
  transform: translateY(-5px);
}

.plan-category-card-unique {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.plan-category-card-unique:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
  border-color: #e74c3c;
}

/* Updated dropdown headers to have red background and white text */
.plan-card-header-musculacao,
.plan-card-header-funcional,
.plan-card-header-danca,
.plan-card-header-alongamento,
.plan-card-header-personfight {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 15px 15px 0 0;
}

.plan-card-header-musculacao h3,
.plan-card-header-funcional h3,
.plan-card-header-danca h3,
.plan-card-header-alongamento h3,
.plan-card-header-personfight h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
  text-align: center;
  color: white;
}

.plan-card-header-musculacao:hover,
.plan-card-header-funcional:hover,
.plan-card-header-danca:hover,
.plan-card-header-alongamento:hover,
.plan-card-header-personfight:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
}

.plan-card-header-musculacao.active,
.plan-card-header-funcional.active,
.plan-card-header-danca.active,
.plan-card-header-alongamento.active,
.plan-card-header-personfight.active {
  background: linear-gradient(135deg, #c0392b, #a93226);
}

.plan-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.plan-card-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.toggle-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-btn-musculacao,
.toggle-btn-funcional,
.toggle-btn-danca,
.toggle-btn-alongamento,
.toggle-btn-personfight {
  background: #e74c3c;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: none;
  /* Prevent button from interfering with header click */
}

.toggle-btn-musculacao i,
.toggle-btn-funcional i,
.toggle-btn-danca i,
.toggle-btn-alongamento i,
.toggle-btn-personfight i {
  transition: transform 0.3s ease;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.toggle-btn.active {
  transform: rotate(180deg);
}

.plan-card-options {
  background: #f8f9fa;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  display: none;
  animation: slideDown 0.3s ease;
  margin-top: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.plan-card-options.show {
  display: block;
  opacity: 1;
  max-height: 1000px;
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.plan-duration-section {
  margin-bottom: 1.5rem;
}

.plan-duration-section h4 {
  color: #e74c3c;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 0.5rem;
}

.plan-options-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.plan-option-compact {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.plan-option-compact:hover {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.plan-option-compact:hover strong {
  color: #fff;
}

.plan-option-compact:hover span {
  color: #fff;
}

.plan-option-compact.selected {
  border: 2px solid #e74c3c;
  background: #fff5f5;
}

.plan-option-compact span {
  font-size: 0.9rem;
  color: #666;
}

.plan-option-compact strong {
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 700;
}

.plan-benefits-compact {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #2d5a2d;
  line-height: 1.5;
  margin-top: 1rem;
}

/* Global Plans Section */
.global-plans-section {
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.global-plans-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.global-plans-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  border-radius: 2px;
}

.global-plans-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #666;
  font-style: italic;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-card.featured {
  border: 3px solid #e74c3c;
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.titulocards {
  color: #fff;
}

.plan-price {
  margin-bottom: 2rem;
}

.plan-intro {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.2rem;
  color: #666;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #e74c3c;
}

.period {
  font-size: 1rem;
  color: #666;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features .fa-check {
  color: #27ae60;
}

.plan-features .fa-times {
  color: #e74c3c;
}

/* FIXED: Align all plan buttons at bottom */
.plan-card .btn {
  margin-top: auto;
}

/* Additional Info */
.additional-info {
  margin-top: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h4 i {
  color: #e74c3c;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Person Fight Page Styles */
.modality-details {
  padding: 5rem 0;
  background: #fff;
}

.modality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.modality-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.modality-benefits {
  margin: 2rem 0;
}

.modality-benefits h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.modality-benefits ul {
  list-style: none;
}

.modality-benefits ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modality-benefits ul li i {
  color: #27ae60;
}

.schedule-info {
  margin: 2rem 0;
}

.schedule-info h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.schedule-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 4px solid #e74c3c;
}

.schedule-item i {
  color: #e74c3c;
}

.schedule-note {
  font-style: italic;
  color: #666;
  text-align: center;
  margin-top: 1rem;
}

.modality-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plans-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.nutrition-section {
  margin-top: 4rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.nutrition-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.nutrition-card:hover {
  transform: translateY(-5px);
}

.nutrition-card.featured-nutrition {
  border: 3px solid #e74c3c;
}

.nutrition-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.nutrition-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.nutrition-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.nutrition-price {
  font-size: 2rem;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.nutrition-card p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Supplements Banner */
.supplements-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
}

.banner-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.banner-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.banner-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-item i {
  color: #27ae60;
}

.banner-action {
  text-align: center;
}

.special-offer-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.offer-text {
  font-size: 1rem;
  font-weight: 600;
}

.offer-highlight {
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-supplements {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.btn-supplements:hover {
  background: linear-gradient(135deg, #128c7e, #0d7377);
  transform: translateY(-2px);
}

.banner-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

.banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.banner-icon i {
  font-size: 1.5rem;
  color: #fff;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: #e74c3c;
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.footer-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e74c3c;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #e74c3c;
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: #e74c3c;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e74c3c;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .plans-cards-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .modality-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nutrition-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}
