/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111111;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.header {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
}

.header-content {
  max-width: 600px;
}

.logo {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 14px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.tagline {
  font-size: 16px;
  font-weight: 400;
  color: #C8C0B0;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.sub {
  font-size: 20px;
  font-weight: 300;
  color: #E0DDD7;
  line-height: 1.6;
}

/* ===== SECTIONS ===== */
.section {
  padding: 48px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: #C8C0B0;
  text-align: center;
  margin-bottom: 28px;
}

/* ===== SERVICES ===== */
.services {
  background-color: #111111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.service-card {
  background: #1a1a1a;
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: #C8C0B0;
  transform: translateY(-4px);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 1.6;
}

/* ===== WORKS ===== */
.works {
  background-color: #111111;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #222222;
  transition: border-color 0.3s ease;
}

.work-card:hover {
  border-color: #C8C0B0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
  background: #0a0a0a;
}

.video-wrapper--landscape {
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  border-radius: 16px;
}

.work-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17, 17, 17, 0.85);
  color: #C8C0B0;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: #111111;
  text-align: center;
}

.coming-soon {
  font-style: italic;
  color: #555555;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 50%, #111111 100%);
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: #E0DDD7;
  margin-bottom: 40px;
}

.btn-cta {
  display: inline-block;
  background: #25D366;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid #222222;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 8px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-link {
  color: #C8C0B0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFFFFF;
}

.footer-copy {
  font-size: 12px;
  color: #555555;
  margin-top: 16px;
}

/* ===== WHATSAPP FLOAT ===== */
.wsp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.wsp-float:hover {
  transform: scale(1.1);
}

/* ===== REELS GRID (3 col) ===== */
.reels-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== YOUTUBE GRID (full width) ===== */
.youtube-grid {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.testimonial-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #1e1e1e;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.testimonial-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 600px) {
  .header {
    min-height: 60vh;
    padding: 48px 20px;
  }

  .logo {
    font-size: 52px;
    letter-spacing: 10px;
  }

  .tagline {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .sub {
    font-size: 16px;
    line-height: 1.7;
  }

  .section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Servicios: 1 columna */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  /* Reels: 1 columna, tamaño completo */
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* YouTube: ancho completo */
  .youtube-grid {
    max-width: 100%;
  }

  /* Video wrappers más altos para que se vean bien */
  .video-wrapper {
    padding-bottom: 177.78%;
  }

  /* Testimonios: 1 columna para que se lean bien */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonial-img {
    border-radius: 12px;
    width: 100%;
  }

  /* CTA */
  .cta-title {
    font-size: 26px;
  }

  .cta-sub {
    font-size: 16px;
  }

  .btn-cta {
    font-size: 15px;
    padding: 14px 32px;
  }

  /* Footer */
  .footer {
    padding: 36px 16px;
  }

  /* WhatsApp más grande en mobile */
  .wsp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 16px;
  }
}
