/* ===============================
   BASE
================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
  background: #fff;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

p {
  line-height: 1.6;
}

/* ===============================
   HERO
================================ */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: #c9a24d;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b38f3f;
  transform: translateY(-1px);
}

/* ===============================
   SECTIONS
================================ */
.section-light {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-dark {
  padding: 70px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

/* ===============================
   SHOWREEL
================================ */
.section-intro {
  max-width: 620px;
  margin: 0 auto 20px;
  font-size: 14px;
  opacity: 0.9;
}

.video-wrapper {
  max-width: 520px;     /* 🔑 tamaño profesional */
  margin: 30px auto;
  padding: 10px;
  background: #000;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.video-wrapper video {
  width: 100%;
  max-height: 280px;    /* 🔑 evita look amateur */
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ===============================
   SERVICES
================================ */
.services {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.service-box {
  max-width: 420px;
  text-align: center;
}

.service-box img {
  width: 100%;
  max-width: 380px;
  max-height: 240px;    /* 🔑 imágenes controladas */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.service-box p {
  margin-top: 14px;
  font-size: 15px;
}

/* ===============================
   ABOUT
================================ */
.about-text {
  max-width: 700px;
  margin: auto;
  font-size: 15px;
  opacity: 0.95;
}

/* ===============================
   CONTACT
================================ */
.contact a {
  color: #c9a24d;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* ===============================
   FOOTER
================================ */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* ===============================
   WHATSAPP BUTTON
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* ===============================
   UTILS
================================ */
.center {
  text-align: center;
}