/*submenu plantillas*/
.submenu-plantillas {
  background-color: #f5f5f5;
  padding:100px 20px 20px 20px;
  font-size: 0.95rem;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.submenu-plantillas .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.submenu-plantillas a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
  padding-right: 10px;
  padding-left: 10px;

}

.submenu-plantillas a:hover {
  text-decoration: underline;
}

/*page header*/

.page-header-servicios{
    width:100%;
    height: auto;
    background: url("img/stacked-peaks-haikei.svg") no-repeat center center;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 40px;
}
.page-header-servicios h1{
    color: #fff;
    text-align: center;
    font-size: 2rem;
}


/*plantillas*/
.plantillas-landing {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1e1e1e;
}

.plantilla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.plantilla-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plantilla-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.plantilla-card .contenido {
  padding: 20px;
  text-align: left;
}

.plantilla-card h3 {
  font-size: 20px;
  color: #0046ad;
  margin-bottom: 10px;
}

.plantilla-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-demo {
  display: inline-block;
  background-color: #008cdd;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-demo:hover {
  background-color: #006ca8;
}

