/* ===== VARIABLES ===== */
:root {
  /* Colors */
  --primary: #00b4ae;  /* Teal */
  --primary-dark: #008b8a;
  --primary-light: #e0f7f7;
  --secondary: #ff6b6b;
  --accent: #ff9e7d;
  --white: #ffffff;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --dark-gray: #6c757d;
  --dark: #343a40;
  --black: #212529;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Container */
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button, .btn {
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-align: center;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 180, 174, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 174, 0.4);
  color: var(--white);
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Section */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.main-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.header-cta .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  height: auto;
  line-height: 1.5;
  white-space: nowrap;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  vertical-align: middle;
}

/* Ajuste para o botão no cabeçalho */
.header-cta .whatsapp-btn {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Ajuste para o botão flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--accent-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

.hamburger span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 5px;
}

.hamburger.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 5px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  padding: 80px 25px 30px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu nav ul li {
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  border-radius: 6px;
  overflow: hidden;
}

.mobile-menu.active nav ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu nav ul li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu nav ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu nav ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu nav ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu nav ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu nav ul li:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu nav ul li a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  padding: 14px 15px;
  transition: all 0.25s ease;
  position: relative;
  font-family: var(--font-secondary);
  background: transparent;
  border-left: 3px solid transparent;
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
  color: var(--primary);
  padding-left: 20px;
  background-color: rgba(0, 180, 174, 0.05);
  border-left-color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Close button for mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 1002;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-menu-close:hover {
  color: var(--white);
  background-color: var(--primary);
  transform: rotate(90deg);
}

/* Header adjustments when menu is open */
.header-content {
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

body.menu-open .header-content {
  transform: translateX(-280px);
}

/* Hide scrollbar when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Smooth transitions for mobile menu */
@media (max-width: 992px) {
  .mobile-menu {
    transform: translateX(0);
    right: -280px;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  body.menu-open .header-content {
    transform: translateX(-280px);
  }
}

/* ===== HEADER STYLES ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Estilos para imagens do logo */
.logo-img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Estilos para a imagem do rodapé */
.footer-logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

/* Estilos para a imagem do atleta */
.featured-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, rgba(0, 180, 174, 0.95), rgba(0, 139, 138, 0.95)), 
              url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.cta-button.primary {
  background-color: var(--white);
  color: var(--primary);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
  background-color: var(--light);
  color: var(--primary-dark);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.small-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 90%;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  object-fit: contain;
}

.hero-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image:hover .profile-image {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  left: auto;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.experience-badge .years {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.experience-badge span:last-child {
  font-size: 0.8rem;
  opacity: 0.9;
}

.experience-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 180, 174, 0.95);
  color: white;
  padding: 12px 15px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 0 0 12px 12px;
  transform: translateZ(0);
  will-change: transform;
}

.experience-banner .highlight {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

.experience-banner span:last-child {
  font-size: 1rem;
  opacity: 0.9;
  display: block;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave-divider .shape-fill {
  fill: #FFFFFF;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--dark-gray);
}

/* ===== ABOUT COURSE SECTION ===== */
.about-course {
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  
  .about-text {
    padding-right: 0;
  }
}

.about-text {
  padding-right: 2rem;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.features-list {
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature.animate {
  opacity: 1;
  transform: translateX(0);
}

.feature i {
  color: var(--primary);
  font-size: 1.25rem;
  min-width: 24px;
}

.feature span {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

.testimonial {
  background: var(--light);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.testimonial.animate {
  opacity: 1;
  transform: translateY(0);
}

.quote {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--dark);
  line-height: 1.6;
}

.author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 400px;
  max-height: 600px;
  background: #f5f5f5; /* Cor de fundo para carregamento suave */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image .featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
  min-height: 400px;
  max-height: 600px;
  margin: 0 auto;
  object-position: center center;
  background-color: #f5f5f5; /* Cor de fundo para carregamento */
}

.about-image:hover .featured-image {
  transform: scale(1.05);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FOR WHOM SECTION ===== */
.for-whom {
  padding: 6rem 0;
  background-color: var(--light);
  text-align: center;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.sport {
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sport.animate {
  opacity: 1;
  transform: translateY(0);
}

.sport:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-md);
}

.sport i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
  transition: var(--transition);
}

.sport:hover i {
  transform: scale(1.2);
  color: var(--primary-dark);
}

.sport span {
  font-weight: 600;
  color: var(--dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.benefits-list {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-item i {
  color: var(--white);
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.guarantee-badge {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.cta-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-form.animate {
  opacity: 1;
  transform: translateY(0);
}

.form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-container > p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--medium-gray);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="url"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--dark);
  background-color: var(--white);
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 174, 0.15);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 180, 174, 0.3);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--medium-gray);
  justify-content: center;
}

.form-footer i {
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 5rem 0 0;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-contact h4::after,
.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 0.25rem;
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  border: none;
  cursor: pointer;
}

.whatsapp-float i {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1;
}

.whatsapp-float span {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  width: 140px;
  height: 60px;
  padding: 10px 5px;
  border-radius: 30px;
}

.whatsapp-float:hover i {
  margin-bottom: 5px;
}

.whatsapp-float:hover span {
  display: block;
  animation: fadeIn 0.3s ease;
  margin-top: 2px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 180, 174, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 180, 174, 0.4);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-content,
  .about-content,
  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .about-image {
    order: -1;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  /* Show mobile menu toggle button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Adjust header for mobile */
  .header-content {
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .header-cta .whatsapp-btn {
    display: none;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  /* Adjust hero section for mobile */
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14.5px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-float i {
    font-size: 1.5rem;
  }
  
  .whatsapp-float:hover {
    width: 120px;
    height: 50px;
    padding: 8px 5px;
  }
  
  .whatsapp-float span {
    font-size: 0.65rem;
  }
  
  .experience-banner .highlight {
    font-size: 1.5rem;
  }
  
  .experience-banner span:last-child {
    font-size: 0.85rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo,
  .footer-contact,
  .footer-links {
    text-align: center;
  }
  
  .footer-contact h4::after,
  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    bottom: 6rem;
    right: 1.5rem;
  }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}
