/* =========================
   IDENTIDAD CORPORATIVA
========================= */

:root {
  --negro: #111111;
  --grafito: #202020;
  --turquesa: #00A6A6;
  --gris: #666666;
  --claro: #f5f7f7;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--grafito);
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.logo span {
  color: var(--turquesa);
}

/* BOTONES */
.btn-totems {
  background: var(--turquesa);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-totems:hover {
  background: #008888;
  color: white;
}


.hero {

    display: block;
    padding-top: 100px;
    padding-bottom: 70px;
    overflow: visible;

}



.hero-image-container {

    width: 100%;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    text-align: center;

}



.hero-totems {

    width: 100%;
    height: auto;
    display: block;

}



.hero-content {

    position: static !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 auto;
    max-width: 900px;

}

.hero h1 {

    margin-top: 0;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;

}



.hero p {

    margin-top: 20px;

}

.hero .row,
.hero .col-lg-9,
.hero-content{

    position:relative !important;
    display:block !important;
    clear:both !important;

}

/* Móvil */
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }



  .hero h1 {
    font-size: 2.5rem;
  }
}

/* SECCIONES */
.section-title {
  font-weight: 800;
  text-transform: uppercase;
}

.section-title span {
  color: var(--turquesa);
}

/* TARJETAS */
.card-service {
  border: none;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-service:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.icon {
  font-size: 40px;
  color: var(--turquesa);
}

/* SOFTWARE */
.cloud {
  background: var(--negro);
  color: white;
}

.cloud span {
  color: var(--turquesa);
}

/* FORMULARIO */
.form-control {
  border-radius: 10px;
  padding: 12px;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
}

footer span {
  color: var(--turquesa);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
