/* =====================================================
   🎨 Estilos RCM - Paleta gris fresco + azul/fucsia logo
   ===================================================== */
:root {
  --rcm-blue: #009BEE;
  --rcm-fuchsia: #E30C96;
  --rcm-dark: #1A2750;
  --rcm-bg: #F5F6FA;           /* fondo general gris claro */
  --rcm-card: #FFFFFF;         /* fondo de tarjetas */
  --rcm-text: #1E1E2F;         /* texto oscuro */
  --rcm-muted: #4A4A5E;
  --rcm-gradient: linear-gradient(90deg, var(--rcm-blue), var(--rcm-fuchsia));
}

/* ===== GLOBAL ===== */
html, body {
  background-color: var(--rcm-bg);
  color: var(--rcm-text);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  color: var(--rcm-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--rcm-fuchsia);
}

/* ===== HEADER ===== */
.header {
  background: #ffffff;
  border-bottom: 3px solid var(--rcm-fuchsia);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: 86px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .logo img {
  height: 60px;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: var(--rcm-dark);
  font-weight: 500;
  position: relative;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--rcm-fuchsia);
}

/* ===== HERO ===== */
.hero-rcm {
  background: linear-gradient(180deg, #ffffff 0%, #F5F6FA 100%);
  padding: 80px 0;
  color: var(--rcm-text);
}

.hero-rcm .hero-content {
  text-align: left;
}

.hero-rcm h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.text-gradient-rcm {
  background: var(--rcm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-rcm .btn-rcm {
  margin-top: 15px;
}

/* ===== BUTTONS ===== */
.btn-rcm {
  background: var(--rcm-gradient);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, filter 0.3s ease;
}

.btn-rcm:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-outline-rcm {
  border: 2px solid var(--rcm-blue);
  color: var(--rcm-blue);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-rcm:hover {
  background: var(--rcm-gradient);
  color: #fff;
  border-color: transparent;
}

/* ===== ABOUT US ===== */
#about-us {
  background-color: #f9fafb;
}

#about-us h2 {
  color: var(--rcm-dark);
}

/* ===== PAQUETES ===== */
#paquetes {
  background: #ffffff;
}

.package-card {
  background-color: var(--rcm-card);
  border: 1px solid #e3e4e7;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.package-cover {
  height: 130px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.grad-cyan { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.grad-purple { background: linear-gradient(135deg, #8b5cf6, #E30C96); }
.grad-amber { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.grad-green { background: linear-gradient(135deg, #22c55e, #009BEE); }
.grad-pink { background: linear-gradient(135deg, var(--rcm-fuchsia), #6366f1); }

.package-card h5 {
  font-weight: 600;
  color: var(--rcm-dark);
}

.package-card .card-text {
  color: var(--rcm-muted);
}

.package-card .card-footer {
  background: transparent;
}

/* ===== DRONE ===== */
#drone {
  background-color: #f8fafc;
  text-align: center;
  padding: 80px 0;
}

#drone h2 {
  color: var(--rcm-dark);
}

#drone img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

/* ===== STREAMING ===== */
#live-streaming {
  background: #ffffff;
  padding: 80px 0;
}

#live-streaming h2 {
  color: var(--rcm-dark);
}

#live-streaming iframe {
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: #ffffff;
  border-top: 3px solid var(--rcm-fuchsia);
  color: var(--rcm-dark);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.footer .social-link img {
  height: 32px;
  transition: transform 0.2s ease;
}

.footer .social-link:hover img {
  transform: scale(1.2);
}

/* ===== FORM / CONTACT ===== */
.form-control {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
}

.form-control:focus {
  outline: none;
  border-color: var(--rcm-blue);
  box-shadow: 0 0 0 3px rgba(0, 155, 238, 0.2);
}

/* ===== UTILIDADES ===== */
.text-rcm { color: var(--rcm-fuchsia); }
.text-rcm-blue { color: var(--rcm-blue); }
.text-center { text-align: center; }
