@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  /* Dorados metálicos */
  --gold-base: #C5A059;
  --gold-light: #FEEBC1;
  --gold-dark: #7F592B;

  /* Verde esmeralda */
  --emerald-base: #0B3B24;
  --emerald-light: #1E6E45;

  /* Fondos oscuros premium */
  --black-deep: #0A0A0A;
  --black-soft: #1F1F1F;

  /* Alias semánticos */
  --color-primary: var(--gold-base);
  --color-secondary: var(--emerald-base);
  --color-bg-dark: var(--black-deep);
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(
    circle at top right,
    #1F1F1F,
    #0A0A0A 70%
  );
  color: #ffffff;
}

.hero-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  min-height: 100vh;
}

        
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10,10,10,0.65),
    rgba(10,10,10,0.85)
  );
  z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: 100vh;
    display: flex;
    align-items: center; /* Centra verticalmente en el hero */
}

.hero-content .row {
    width: 100%;
    margin: 0 auto;
}


.hero-card {
    background: rgba(11, 59, 36, 0.35); /* Verde esmeralda translúcido */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 20px;
    padding: 2rem;
    height: 100%; /* Para que todas midan lo mismo en la fila */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-width: 300px; /* Evita que se deformen cuando hay varias */
}

.hero-card i {
    color: var(--gold-base);
}

.highlight-box {
    background: rgba(11, 59, 36, 0.8);
    border-left: 4px solid var(--gold-base);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.highlight-box h6 {
    color: var(--gold-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mt-auto {
    margin-top: auto !important;
    padding-top: 1rem;
}

.custom-navbar {
  transition: all 0.4s ease;
  padding: 15px 0;
  z-index: 5;
}

.custom-navbar.scrolled {
  background: linear-gradient(135deg, var(--black-deep), var(--emerald-base));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  padding: 10px 0;
}

.custom-navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--gold-base) !important;
}


.logo-navbar {
  width: 280px;
}

.navbar-brand img {
  height: 100px;
  width: auto;
}

.social-icon {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--gold-light);
}


.bg-dark {
    --bs-bg-opacity: 1;
    font-size: 1.0rem;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important;
}

.fw-bold {
    font-weight: 1100!important;
}

.btn-warning {
    background-color: var(--gold-base);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-warning:hover {
    background-color: var(--gold-light);
    transform: scale(1.02);
}


.hero-title-main {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem); 
    color: var(--gold-base);
    font-weight: 800 !important;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-title-sub {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-header {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}


/* BOTÓN FLOTANTE WHATSAPP */
.btn-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  z-index: 9999;
}

/* Hover */
.btn-whatsapp:hover {
  background-color: #1ebe5c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}


 
@media (max-width: 992px) {
  .custom-navbar {
    background: rgba(11, 59, 36, 0.95);
  }
  .col-lg-4:only-child {
        max-width: 450px;
    }  
}

@media (max-width: 768px) {
  .hero-content {
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-card {
    margin: 0 auto;
  }

  .btn-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }  
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 65px;
  }
}
 