/* ============================================
   STYLES — Pedro Soares Personal Trainer
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0C66B7;
  --primary-dark: #084A8A;
  --primary-light: #0A93DD;
  --primary-lighter: #E8F4FD;
  --secondary: #0A93DD;
  --accent: #B0B1B3;
  --white: #FFFFFF;
  --bg-light: #F8FAFB;
  --bg-warm: #F0F6FB;
  --text: #1A1A2E;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE57;
  --shadow-sm: 0 2px 8px rgba(12, 102, 183, 0.06);
  --shadow-md: 0 4px 24px rgba(12, 102, 183, 0.1);
  --shadow-lg: 0 12px 48px rgba(12, 102, 183, 0.14);
  --shadow-xl: 0 20px 60px rgba(12, 102, 183, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---- Section Utilities ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-tag-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

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

.text-highlight-light {
  color: #7DD3FC;
}

.text-accent {
  color: var(--primary-dark);
  font-weight: 500;
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  margin: 16px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

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

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

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

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

.btn-white:hover {
  background: var(--primary-lighter);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  animation: arrowBounce 0.6s ease infinite;
}


/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  pointer-events: all;
  animation: modalOverlayIn 0.3s ease forwards;
}

.modal-overlay.is-closing {
  animation: modalOverlayOut 0.25s ease forwards;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  box-shadow: var(--shadow-xl);
}

.modal-overlay.is-active .modal-content {
  animation: modalContentIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.modal-overlay.is-closing .modal-content {
  animation: modalContentOut 0.25s ease forwards;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary-lighter);
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.modal-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-cta {
  width: 100%;
  justify-content: center;
}


/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(12, 102, 183, 0.08);
  padding: 10px 0;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  transition: var(--transition);
}

.logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.logo-img-footer {
  height: 68px;
  filter: brightness(0) invert(1);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.header:not(.scrolled) .logo-name {
  color: var(--white);
}

.logo-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header:not(.scrolled) .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

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

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.header-cta {
  font-size: 14px;
  padding: 10px 24px;
}

.header:not(.scrolled) .header-cta {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.header:not(.scrolled) .header-cta:hover {
  background: var(--primary-lighter);
  transform: translateY(-2px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: var(--transition);
  transform-origin: center;
}

.header:not(.scrolled) .menu-toggle span {
  background: var(--white);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav-overlay.is-active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger mobile links */
.mobile-nav-overlay.is-active .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.is-active .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-overlay.is-active .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.is-active .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.is-active .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay.is-active .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav-link:hover {
  color: var(--primary-light);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-cta {
  margin-top: 24px;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav-overlay.is-active .mobile-nav-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}


/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #062040 0%, var(--primary-dark) 40%, var(--primary) 100%);
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation: shapeFloat1 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: shapeFloat2 25s ease-in-out infinite;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 40%;
  animation: shapeFloat3 18s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.badge-pulse {
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
}

.badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #4ADE80;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
  margin-left: 12px;
}

.hero-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title strong {
  font-weight: 800;
}

.hero-highlight {
  font-weight: 800;
}

.hero-highlight {
  background: linear-gradient(135deg, #7DD3FC, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-size: 28px;
  font-weight: 700;
  color: #7DD3FC;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-placeholder {
  width: 420px;
  height: 520px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 15px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.hero-image-placeholder i {
  font-size: 80px;
  opacity: 0.4;
}

.hero-image-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  opacity: 0.3;
  filter: blur(40px);
  z-index: 1;
}

/* Nametag */
.hero-nametag {
  position: absolute;
  bottom: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: nametagFloat 4s ease-in-out infinite;
}

.nametag-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
}

.nametag-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.nametag-verified {
  color: var(--primary);
  font-size: 18px;
}

.nametag-role {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-indicator-inline {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 32px;
  font-size: 10px;
}

.scroll-indicator-inline .scroll-mouse {
  width: 20px;
  height: 32px;
  border-width: 1.5px;
  border-radius: 11px;
  padding-top: 6px;
}

.scroll-indicator-inline .scroll-wheel {
  width: 3px;
  height: 6px;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}


/* ================================================
   MARQUEE
   ================================================ */
.marquee-section {
  background: var(--primary-lighter);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 45s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
  padding: 0 32px;
  position: relative;
}

.marquee-item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  position: absolute;
  right: 0;
}

.marquee-item i {
  font-size: 20px;
  color: var(--primary);
}


/* ================================================
   PROBLEM SECTION
   ================================================ */
.problem-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-image-real {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

/* Problem Visual Cards */
.problem-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}

.problem-card {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.problem-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.problem-card-before {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.problem-card-before h4 {
  color: #B91C1C;
}

.problem-card-after {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.problem-card-after h4 {
  color: #15803D;
}

.problem-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.problem-card-icon-red {
  background: #FEE2E2;
  color: #DC2626;
}

.problem-card-icon-green {
  background: #DCFCE7;
  color: #16A34A;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.problem-card-before .problem-list li {
  color: #991B1B;
}

.problem-card-before .problem-list li i {
  color: #DC2626;
  font-size: 16px;
  font-weight: bold;
}

.problem-card-after .problem-list li {
  color: #166534;
}

.problem-card-after .problem-list li i {
  color: #16A34A;
  font-size: 16px;
  font-weight: bold;
}

.problem-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.problem-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.problem-content .btn {
  margin-top: 12px;
}


/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  z-index: 0;
}

.services-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.015) 20px,
    rgba(255, 255, 255, 0.015) 40px
  );
  animation: diagonalMove 60s linear infinite;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

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

.service-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(12, 102, 183, 0.08);
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.service-card-colored .service-card-arrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-white {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-card-white:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-colored {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.service-card-colored:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-white .service-icon {
  background: var(--primary-lighter);
  color: var(--primary);
}

.service-card-white:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card-colored .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.service-card-white p {
  color: var(--text-secondary);
}


/* ================================================
   SWIM SECTION (Natação)
   ================================================ */
.swim-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #052444 0%, #0A4A8A 40%, #0E78C9 70%, #1B9EE8 100%);
  color: var(--white);
}

.swim-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.swim-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
  filter: blur(2px);
}

.swim-shape-1 {
  width: 400px;
  height: 400px;
  top: -80px;
  right: -120px;
  animation: shapeFloat1 22s ease-in-out infinite;
}

.swim-shape-2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: -80px;
  animation: shapeFloat2 26s ease-in-out infinite;
}

.swim-wave-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(125, 211, 252, 0.18), transparent 50%);
}

.swim-section .container {
  position: relative;
  z-index: 2;
}

.swim-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* ---- Tag ---- */
.swim-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 211, 252, 0.18);
  border: 1px solid rgba(125, 211, 252, 0.4);
  color: #BAE6FD;
}

.swim-tag i {
  font-size: 16px;
}

.swim-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.swim-title-highlight {
  background: linear-gradient(135deg, #7DD3FC, #38BDF8 50%, #BAE6FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.swim-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 540px;
}

.swim-lead strong {
  color: var(--white);
  font-weight: 700;
}

/* ---- Features list ---- */
.swim-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.swim-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 4px 0;
  transition: var(--transition);
}

.swim-feature:hover .swim-feature-icon {
  transform: scale(1.05);
}

.swim-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(125, 211, 252, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #7DD3FC;
  transition: var(--transition);
}

.swim-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.swim-feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.swim-feature-text p span {
  color: #7DD3FC;
  margin: 0 4px;
}

/* ---- CTA Box ---- */
.swim-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.swim-cta-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.swim-cta-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.swim-cta-text p i {
  color: #7DD3FC;
  font-size: 15px;
}

.swim-cta-btn {
  flex-shrink: 0;
}

/* ---- Visual ---- */
.swim-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.swim-image-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
}

.swim-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.swim-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.swim-image-card .swim-floating-tag {
  z-index: 4;
}

/* Video controls */
.swim-video-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.swim-video-wrap:hover .swim-video-controls,
.swim-video-controls:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.swim-video-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  backdrop-filter: blur(8px);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.swim-video-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.swim-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.swim-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.swim-pulse {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(125, 211, 252, 0.6);
  animation: pulseRing 3s ease-out infinite;
}

.swim-pulse-2 {
  top: auto;
  left: auto;
  bottom: 25%;
  right: 30%;
  animation-delay: 1.5s;
}

/* Floating tags */
.swim-floating-tag {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  animation: float 5s ease-in-out infinite;
}

.swim-floating-tag i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.swim-floating-tag span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.swim-tag-1 {
  top: 8%;
  left: -28px;
  animation-delay: 0s;
}

.swim-tag-2 {
  top: 50%;
  right: -28px;
  animation-delay: 1s;
}

.swim-tag-2 i {
  color: #EF4444;
}

.swim-tag-3 {
  bottom: 10%;
  left: 12%;
  animation-delay: 2s;
}

.swim-tag-3 i {
  color: #F59E0B;
}


/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--primary-lighter), #D4E8F8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(12, 102, 183, 0.1);
}

.about-image-placeholder i {
  font-size: 72px;
  opacity: 0.35;
}

.about-image-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image-placeholder:has(.about-image-real) {
  padding: 0;
  background: transparent;
}

.about-image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  z-index: 2;
}

.about-image-badge i {
  font-size: 22px;
  color: var(--primary);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  gap: 20px;
  margin: 32px 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.highlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
  border: 2px solid transparent;
}

.highlight-item:hover .highlight-icon {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.about-whatsapp-btn {
  display: none;
}

.about-image-mobile,
.problem-image-mobile {
  display: none;
}


/* ================================================
   DIFFERENTIALS SECTION
   ================================================ */
.differentials-section {
  padding: 100px 0;
  background: var(--white);
}

.differentials-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid transparent;
  transition: var(--transition);
}

.diff-card:hover {
  background: var(--primary-lighter);
  border-color: rgba(12, 102, 183, 0.12);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.diff-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.diff-card:hover .diff-icon {
  background: var(--primary);
  color: var(--white);
}

.diff-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.diff-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.diff-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--primary-lighter), #C9E2F5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(12, 102, 183, 0.1);
}

.diff-image-placeholder i {
  font-size: 64px;
  opacity: 0.35;
}

.diff-image-real {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}


/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-sidebar p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.is-active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.faq-item.is-active .faq-question {
  background: var(--primary-lighter);
  color: var(--primary-dark);
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}

.faq-item.is-active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #062040 0%, var(--primary-dark) 50%, var(--primary) 100%);
}

.pricing-bg-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.02) 30px,
    rgba(255, 255, 255, 0.02) 60px
  );
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.pricing-card-featured {
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-12px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 48px rgba(10, 147, 221, 0.4);
}

.pricing-card-featured:hover {
  transform: translateY(-18px);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #422006;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
}

.pricing-badge i {
  font-size: 14px;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pricing-tag-light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.pricing-name {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.pricing-card-featured .pricing-name {
  color: var(--white);
}

.pricing-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  min-height: 44px;
}

.pricing-card-featured .pricing-desc {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-card-featured .pricing-price {
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-card-featured .pricing-currency {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.pricing-card-featured .pricing-value {
  color: var(--white);
}

.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 4px;
}

.pricing-card-featured .pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-features li i {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-featured .pricing-features li i {
  color: #7DD3FC;
}

.btn-outline-pricing {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  width: 100%;
  justify-content: center;
}

.btn-outline-pricing:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured .btn-white {
  width: 100%;
  justify-content: center;
}

/* Presential Card */
.presential-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
}

.presential-content > .section-tag {
  margin-bottom: 16px;
}

.presential-content h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.presential-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 48px;
  max-width: 760px;
  line-height: 1.7;
}

.presential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.presential-block {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.presential-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.presential-block h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.presential-block h4 i {
  color: var(--primary);
  font-size: 20px;
  background: var(--primary-lighter);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.presential-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.presential-block li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
}

.presential-block li i {
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.presential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.presential-tags span {
  background: var(--primary-lighter);
  border: 1px solid rgba(12, 102, 183, 0.15);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
}

.presential-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.presential-info {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  flex-wrap: wrap;
}

.presential-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.presential-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7DD3FC;
}

.presential-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.presential-info-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

.presential-info-big {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #0A1628;
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer .logo-name {
  color: var(--white);
}

.logo-footer .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #7DD3FC;
  letter-spacing: 0.5px;
}

.footer-cref i {
  font-size: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-col a i {
  font-size: 16px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-services-line {
  margin-top: 4px;
  font-size: 13px;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
  margin-top: 8px;
}

.footer-dev:hover {
  opacity: 1;
  filter: brightness(1.3);
}

.footer-dev img {
  height: 18px;
}

.footer-dev span {
  color: #ffffff;
}

.footer-dev span strong {
  color: #e00000;
  font-weight: 700;
}


/* ================================================
   FLOATING ELEMENTS
   ================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0) translateY(20px);
  pointer-events: none;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #2BE673 0%, #25D366 100%);
}

.floating-whatsapp::after {
  content: 'Fale comigo';
  position: absolute;
  right: calc(100% + 12px);
  background: var(--white);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulseRing 2.5s ease-out infinite;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

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


/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title { font-size: 38px; }
  .hero-subtitle { margin: 0 auto 28px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; display: flex; }

  .hero-image-placeholder {
    width: 340px;
    height: 420px;
    margin: 0 auto;
  }

  .hero-nametag { left: 50%; transform: translateX(-50%); bottom: -10px; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .swim-layout { grid-template-columns: 1fr; gap: 48px; }
  .swim-title { font-size: 42px; }
  .swim-image-card { max-width: 360px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .differentials-layout { grid-template-columns: 1fr; }
  .differentials-image { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; gap: 32px; }
  .pricing-card-featured { transform: translateY(0); }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .presential-grid { grid-template-columns: repeat(2, 1fr); }
  .presential-card { padding: 40px 32px; }
  .presential-footer { flex-direction: column; align-items: flex-start; }
  .presential-info { flex-direction: column; align-items: flex-start; gap: 16px; }
  .presential-info-divider { display: none; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: 34px; }
  .cta-content h2 { font-size: 34px; }
}


/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .container { padding: 0 20px; }

  /* ---- Section padding: 48px top/bottom on all sections ---- */
  .hero,
  .problem-section,
  .services-section,
  .about-section,
  .differentials-section,
  .faq-section,
  .cta-section,
  .pricing-section {
    padding: 48px 0;
  }

  .hero { padding-top: 140px; padding-bottom: 48px; }

  /* ---- Titles, subtitles & content: 100% width, left-aligned ---- */
  .section-header {
    text-align: left;
    margin-bottom: 32px;
  }

  .section-header .section-subtitle { margin: 0; max-width: 100%; }

  .section-title,
  .section-subtitle,
  .hero-title,
  .hero-subtitle,
  .pricing-name,
  .pricing-desc,
  .presential-content h3,
  .presential-lead {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .section-title { font-size: 28px; line-height: 1.25; }
  .section-subtitle { font-size: 16px; }
  .hero-title { font-size: 32px; line-height: 1.2; }
  .hero-subtitle { font-size: 15px; max-width: 100%; }

  /* ---- Buttons: 100% width on mobile ---- */
  .hero-actions { display: flex; }
  .hero-actions .btn,
  .problem-content .btn,
  .about-whatsapp-btn,
  .presential-footer .btn,
  .pricing-card .btn,
  .btn-outline-pricing {
    width: 100%;
    justify-content: center;
  }

  .btn-lg { padding: 16px 32px; font-size: 16px; }

  /* ---- Hero ---- */
  .hero-inner { text-align: left; }
  .hero-content { text-align: left; }
  .hero-image {
    width: 100%;
    display: block;
  }
  .hero-image-wrapper {
    width: 100%;
    display: block;
  }
  .hero-image-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 3/4;
    margin: 0 !important;
  }
  .hero-nametag {
    left: auto;
    right: 16px;
    bottom: -16px;
    transform: none;
  }
  .hero-nametag {
    left: 50%;
    bottom: -10px;
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
  }
  .hero-nametag .nametag-name { white-space: nowrap; }
  .scroll-indicator { display: none; }

  /* ---- Problem ---- */
  .problem-grid { gap: 32px; }
  .problem-content { text-align: left; }
  .problem-image { display: none; }
  .problem-image-mobile {
    display: block !important;
    margin: 8px 0 24px;
  }
  .problem-visual { flex-direction: column; }
  .problem-arrow { transform: rotate(90deg); }

  /* ---- Services ---- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ---- Swim ---- */
  .swim-section { padding: 48px 0; }
  .swim-title { font-size: 36px; }
  .swim-lead { font-size: 16px; max-width: 100%; }
  .swim-feature { padding: 14px 16px; gap: 12px; }
  .swim-feature-icon { width: 44px; height: 44px; min-width: 44px; font-size: 20px; }
  .swim-feature-text h4 { font-size: 15px; }
  .swim-feature-text p { font-size: 13px; }
  .swim-cta-box {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 20px;
  }
  .swim-cta-btn { width: 100%; justify-content: center; }
  .swim-image-card { max-width: 100%; }
  .swim-floating-tag { padding: 10px 12px; }
  .swim-floating-tag span { font-size: 11px; }
  .swim-floating-tag i { font-size: 18px; }
  .swim-tag-1 { left: -10px; }
  .swim-tag-2 { right: -10px; }
  .swim-tag-3 { left: 8%; }

  /* ---- About ---- */
  .about-content { text-align: left; }
  .about-image { display: none; }
  .about-image-mobile { display: block !important; margin-bottom: 24px; }
  .about-highlights {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }
  .about-whatsapp-btn { display: inline-flex; }

  /* ---- Differentials ---- */
  .differentials-grid { grid-template-columns: 1fr; }

  /* ---- Pricing ---- */
  .pricing-card { padding: 32px 24px; }
  .pricing-name { font-size: 26px; }
  .pricing-value { font-size: 64px; }
  .pricing-currency { font-size: 26px; }
  .pricing-period { font-size: 18px; }
  .pricing-card-header { text-align: left; }

  /* ---- Presential ---- */
  .presential-card { padding: 28px 20px; }
  .presential-content h3 { font-size: 26px; }
  .presential-grid { grid-template-columns: 1fr; gap: 14px; }
  .presential-footer {
    padding: 0;
    background: transparent;
    border: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .presential-info { width: 100%; }
  .presential-info-big { font-size: 26px; line-height: 1.2; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 0; }

  /* ---- Floating ---- */
  .floating-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 26px; }
  .back-to-top { bottom: 20px; left: 20px; width: 42px; height: 42px; font-size: 18px; }
}


/* ================================================
   RESPONSIVE — SMALL (≤480px)
   ================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 24px; }
  .cta-content h2 { font-size: 24px; }

  .hero-image-placeholder {
    width: 240px;
    height: 300px;
  }

  .hero-nametag { padding: 8px 12px; gap: 8px; }
  .nametag-avatar { width: 36px; height: 36px; font-size: 22px; }
  .nametag-name { font-size: 14px; }
  .nametag-role { font-size: 12px; }

  .modal-content { padding: 32px 24px; }
  .modal-icon { width: 64px; height: 64px; font-size: 28px; }
  .modal-content h3 { font-size: 22px; }

  .service-card { padding: 28px 20px; }
  .diff-card { padding: 16px; }

  .comparison-side { padding: 16px 12px; }
  .comparison-side i { font-size: 36px; }
  .comparison-side span { font-size: 12px; }

  .faq-question { padding: 16px 18px; font-size: 15px; }
}
