:root {
    /* --primario: #FFAA1C; */
    
    /* --primario: #ffcc00; */
    --primario: #fed550;
    --primario_darker: #d6b033;
    --primario_dark: #ffc916;
    --secundario_dark:#0033ff;
    --secundario:#00a2e4;
    --secundario_light:#2ec4ff;
    --gris:#757575;
    --fondo:#e0e0e0;
    --navbar_fondo:#fbf8f8;
 
 }

 #basicPlan:hover{

  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  svg path{
    fill: var(--secundario);
  }
}
#industrialPlan:hover{

  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  svg path{
    fill: var(--primario);
  }
}
 #livePlatform:hover{

  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  svg path{
    fill: red;
  }
}
body {
    background-color: var(--fondo);
}

.custom-btn {
    font-size: 14px; /* Cambia el tamaño del texto */
    width: 130px;
    background-color: var(--secundario);
  }

.rojo-escarlata {
  color:#D90D09;
  font-weight: bold;
}
.verde-esmeralda {
  color:#028A0F;
  font-weight: bold;

}

  .custom-btn-primary {
    font-size: 14px; /* Cambia el tamaño del texto */
    width: 130px;
    color: black;
    border-color: var(--primario);
    background-color: var(--primario);

  }
  .custom-btn-primary:hover {
    background-color: var(--primario_dark);
    border-color: var(--primario_dark);
    color:black;
  }
/* The hero image */
.hero-image {
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../img/hero.jpg");
    height: 80vh;
    width:  100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }
  #contact { position:relative; }
  #contact #contact1 { position:absolute; top:-120px;}

  .background-video {
    position: absolute;
    margin-top: 200px;
    top: 50%;
    left: 50%;
    height: 100vh;
    width: 100vw;

}
.page-hero {
    position: relative;
    overflow: hidden;
}

.background-video-content {
    position: relative;
    z-index: 1;
}

.hero {
    position: relative;
    height: 90vh; /* Ocupa toda la altura de la pantalla */
    overflow: hidden;
  }
  
  #heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw; /* Ocupa todo el ancho de la pantalla */
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    object-fit: cover; /* Recorta el video para que siempre ocupe el contenedor */
    transform: translate(-50%, -50%); /* Centra el video */
    z-index: 1;
  }
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  /* Contenido que va sobre el video */
  .hero-content {
    position: relative;
    top: 30%;
    left: 5%;
    z-index: 2;
    font-size: 40px;
    color: white;
    text-shadow: black ;
  }


.titulo {
  display: inline-flex;
  font-size: 2rem;
  background-color:var(--secundario);
  transform: skew(-30deg);
  margin: 1rem;
}

.titulo-content {
  transform: skew(30deg);
  padding: 0 0.5em;
  color: white;
}
