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

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0b0b0b;
  color: #f5f5f5;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

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

.logo-area img {
  height: 46px;
  width: auto;
}

.logo-text {
  font-size: 0.85rem;
  color: #8f8f8f;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

nav li a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

nav li a:hover {
  background: #1aff6a;
  color: #050505;
}

.btn-main {
  background: #1aff6a;
  color: #050505;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(26,255,106,0.3);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 72px;
  background: radial-gradient(circle at top left, #1aff6a11 0, transparent 55%),
              radial-gradient(circle at bottom right, #1aff6a18 0, #050505 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin-bottom: 0.75rem;
}

.hero-copy h1 span {
  color: #1aff6a;
}

.hero-copy p {
  color: #c9c9c9;
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: #e5e5e5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid #444;
  background: transparent;
  color: #f5f5f5;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: #888;
}

.hero-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #b0b0b0;
}

.hero-info-card {
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.45);
  min-width: 170px;
}

.hero-info-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #f5f5f5;
}

.hero-media {
  position: relative;
}

.hero-main-photo {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.hero-main-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0,0,0,0.7);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-tag span.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1aff6a;
  box-shadow: 0 0 0 4px rgba(26,255,106,0.35);
}

section {
  padding: 3.5rem 1.25rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.section-heading h2 {
  font-size: 1.6rem;
}

.section-heading p {
  color: #b5b5b5;
  font-size: 0.9rem;
}

/* Promotions */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1.3rem;
}

.card {
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg,#151515,#050505);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 0.9rem 1rem 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-text {
  font-size: 0.85rem;
  color: #c0c0c0;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #1aff6a;
  color: #050505;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery-item::after {
  content: "Ver foto";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  background: linear-gradient(to top,rgba(0,0,0,0.9),transparent);
  color: #f5f5f5;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2rem;
  cursor: pointer;
}

/* Coach */
.coach-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 1.8rem;
  align-items: center;
}

.coach-photo {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.coach-text p {
  color: #c7c7c7;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.coach-bullets {
  list-style: none;
  margin-top: 0.5rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.coach-bullets li::before {
  content: "•";
  color: #1aff6a;
  margin-right: 0.4rem;
}

/* Video & social */
.media-grid {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: 1.6rem;
}

.video-wrapper,
.fb-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

.video-wrapper iframe,
.fb-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.social-list {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #c3c3c3;
}

.social-pill {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.25rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-pill span.icon {
  font-size: 1rem;
}

/* Contact & location */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
  gap: 1.5rem;
}

.contact-card,
.location-card {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.1rem 1.2rem;
  background: radial-gradient(circle at top,#161616,#050505);
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-size: 0.85rem;
  color: #d0d0d0;
}

input, textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid #333;
  background: #101010;
  color: #f5f5f5;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #1aff6a;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.map-wrapper {
  position: relative;
  padding-top: 62%;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.7rem;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details {
  font-size: 0.87rem;
  color: #c9c9c9;
}

.location-details p + p {
  margin-top: 0.25rem;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 1.25rem 1.6rem;
  margin-top: 1.5rem;
  background: #050505;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: #a0a0a0;
}

footer p strong {
  color: #f5f5f5;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 1.1rem;
  right: 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  z-index: 1800;
}

.whatsapp-float span {
  font-size: 1.8rem;
  color: white;
}

/* Mobile nav */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.35rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-media {
    order: -1;
  }
  .coach-layout,
  .media-grid,
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 720px) {
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #050505;
    flex-direction: column;
    width: 220px;
    padding: 0.75rem 1rem 0.9rem;
    border-bottom-left-radius: 1rem;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }
  nav ul.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-container {
    padding-inline: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.8rem;
  }
  .hero-info-card {
    min-width: 0;
    flex: 1 1 100%;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 0.9rem;
    right: 0.9rem;
  }
}
