@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    background-color: #f7f7f7;
    color: #eee;
    font-family: Poppins;
    font-size: 14px;
}
a{
    text-decoration: none;
}
header{
	position: fixed;
	top: 0;
    left: 0;
    background: black;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	z-index: 100;
}

header a{
    color: #eee;
    margin-right: 40px;
}

.video-header {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

.video-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.services {
  padding: 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.services h2 {
  padding: 30px;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #002244;
}

.card-grid {
  padding: 0px 60px 40px 60px ;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  
}

.card {
  background: #fff;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  background: #0022447e;
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 0;

}

.fondo{
    width: 100%; 
    height: 180px; 
    background-color: rgba(6, 9, 73, 0.519);
    position: absolute; 
    top: 0; 
    left: 0; 
    bottom: 0;
    display: flex;
}

.card h3 {
  font-size: 1.2em;
  color: #002244;
  margin-bottom: 10px;
  padding: 20px;
}

.card p {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 15px;
  padding: 20px;
}

.card a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
  font-size: 0.9em;
  padding: 20px;
}
