/* ---------------------------------------------------------
   G.E Transportes - paleta basada en el logotipo (Logo.png)
   --------------------------------------------------------- */
:root {
  --ge-primary: #16305c;       /* azul marino del logotipo */
  --ge-primary-dark: #0c1d38;  /* azul marino oscuro (fondo/degradado) */
  --ge-primary-light: #2a4d85; /* azul marino claro para hover/acentos */
  --ge-secondary: #b5541f;     /* naranja/cobre del chevron */
  --ge-secondary-light: #d9793f;
  --ge-light: #f5f7fa;         /* fondo claro */
  --ge-white: #ffffff;
  --ge-text: #1b2a41;
  --ge-muted: #5c6b7f;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--ge-primary-light);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  color: var(--ge-text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ----------------------- Navbar ----------------------- */
.ge-navbar {
  background-color: var(--ge-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.ge-navbar .navbar-brand img {
  height: 42px;
  width: auto;
  margin-right: 0.5rem;
}

.ge-navbar .navbar-brand {
  font-weight: 700;
  color: var(--ge-primary);
}

.ge-navbar .nav-link {
  color: var(--ge-primary) !important;
  font-weight: 500;
}

.ge-navbar .nav-link:hover,
.ge-navbar .nav-link.active {
  color: var(--ge-secondary) !important;
}

.btn-ge-primary {
  background-color: var(--ge-secondary);
  border-color: var(--ge-secondary);
  color: var(--ge-white);
  font-weight: 600;
}

.btn-ge-primary:hover,
.btn-ge-primary:focus {
  background-color: var(--ge-secondary-light);
  border-color: var(--ge-secondary-light);
  color: var(--ge-white);
}

.btn-ge-outline {
  background-color: transparent;
  border: 2px solid var(--ge-white);
  color: var(--ge-white);
  font-weight: 600;
}

.btn-ge-outline:hover {
  background-color: var(--ge-white);
  color: var(--ge-primary);
}

.btn-ge-outline-dark {
  background-color: transparent;
  border: 2px solid var(--ge-primary);
  color: var(--ge-primary);
  font-weight: 600;
}

.btn-ge-outline-dark:hover {
  background-color: var(--ge-primary);
  color: var(--ge-white);
}

/* ----------------------- Hero ----------------------- */
.ge-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ge-primary-dark) 0%, var(--ge-primary) 60%, var(--ge-primary-light) 100%);
  color: var(--ge-white);
  padding: 5.5rem 1rem;
  overflow: hidden;
}

.ge-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/Empresa/Galeria/1.jpeg") center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.ge-hero .container {
  position: relative;
  z-index: 1;
}

.ge-hero h1 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ge-hero .lead {
  color: #dbe4f0;
}

/* ----------------------- Section helpers ----------------------- */
.ge-section {
  padding: 4rem 0;
}

.ge-section-alt {
  background-color: var(--ge-light);
}

.ge-section-title {
  color: var(--ge-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.ge-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--ge-secondary);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.ge-section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------- Cards / feature blocks ----------------------- */
.ge-feature-card {
  background-color: var(--ge-white);
  border: 1px solid #e5e9ef;
  border-radius: 0.5rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ge-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(22, 48, 92, 0.12);
}

.ge-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(22, 48, 92, 0.08);
  color: var(--ge-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.ge-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ge-primary);
}

/* ----------------------- Servicios ----------------------- */
.ge-service-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.25rem rgba(22, 48, 92, 0.08);
  height: 100%;
}

.ge-service-card .ge-service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--ge-secondary);
  color: var(--ge-white);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ge-service-card .card-title {
  color: var(--ge-primary);
  font-weight: 700;
}

.ge-service-card ul li {
  margin-bottom: 0.35rem;
}

/* ----------------------- CTA ----------------------- */
.ge-cta {
  background: linear-gradient(120deg, var(--ge-secondary) 0%, var(--ge-secondary-light) 100%);
  color: var(--ge-white);
  padding: 3.5rem 1rem;
  border-radius: 0.5rem;
}

/* ----------------------- Gallery ----------------------- */
.ge-gallery img {
  border-radius: 0.5rem;
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 0.25rem 0.75rem rgba(22, 48, 92, 0.15);
}

/* ----------------------- Timeline / valores ----------------------- */
.ge-value-item {
  border-left: 3px solid var(--ge-secondary);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}

.ge-value-item h3 {
  color: var(--ge-primary);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ----------------------- Contact ----------------------- */
.ge-contact-card {
  background-color: var(--ge-primary);
  color: var(--ge-white);
  border-radius: 0.5rem;
  padding: 2rem;
}

.ge-contact-card a {
  color: var(--ge-white);
}

/* ----------------------- Blog ----------------------- */
.ge-blog-card {
  border: 1px solid #e5e9ef;
  border-radius: 0.5rem;
  height: 100%;
}

.ge-blog-card .badge {
  background-color: var(--ge-secondary);
}

/* ----------------------- Footer ----------------------- */
.ge-footer {
  background-color: var(--ge-primary-dark);
  color: #cfd9e8;
  padding: 3rem 0 1.5rem;
}

.ge-footer h5 {
  color: var(--ge-white);
  font-weight: 700;
}

.ge-footer a {
  color: #cfd9e8;
  text-decoration: none;
}

.ge-footer a:hover {
  color: var(--ge-secondary-light);
}

.ge-footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0 1rem;
}

.ge-whatsapp-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  background-color: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  z-index: 1030;
}

.ge-whatsapp-btn:hover {
  color: #fff;
  filter: brightness(1.05);
}