/* --- Paleta de Colores y Variables --- */
:root {
  --primary-dark-blue: #0D1B2A;
  --secondary-steel-blue: #415A77;
  --background-light-gray: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --accent-gold: #FCA311;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* --- Estilos Generales --- */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark-blue);
}

p {
  color: var(--secondary-steel-blue);
}

.padding-top-bottom-120 {
  padding: 120px 0;
}

.padding-top-bottom-90 {
  padding: 90px 0;
}

.padding-top-90 {
  padding-top: 90px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.bg-light-gray {
  background-color: var(--background-light-gray);
}

.text-white {
  color: var(--text-light);
}

/* --- Títulos de Sección --- */
.heading-wraper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.heading-devider {
  border-top: 3px solid var(--accent-gold);
  width: 60px;
  margin: 0 auto;
}

/* --- Barra de Navegación --- */
.navbar-default {
  background-color: var(--primary-dark-blue);
  border: none;
  /* AÑADIDO: Aumentamos el padding vertical para más altura */
  padding: 10px 0; 
  transition: all 0.3s ease;
}

.navbar-brand {
  /* AÑADIDO: Ajustamos el padding para centrar el logo más alto */
  padding: 5px 15px;
  height: auto; /* Permitimos que la altura se ajuste al contenido */
}

.navbar-brand img {
  /* CAMBIO: Logo más grande */
  height: 40px; 
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle; /* Alinea mejor la imagen con el texto */
}

.navbar-brand .logo-wraper {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  /* CAMBIO: Texto del logo un poco más grande */
  font-size: 24px; 
  display: inline-block;
  vertical-align: middle;
}

.navbar-default .navbar-nav > li > a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  /* CAMBIO: Letras de los enlaces más grandes */
  font-size: 15px; 
  /* AÑADIDO: Más espacio vertical para los enlaces */
  padding-top: 20px;
  padding-bottom: 20px;
  transition: color 0.3s ease;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .active > a {
  color: var(--accent-gold) !important;
  background-color: transparent !important;
}

/* Ajuste para el botón en móvil */
.navbar-toggle {
    margin-top: 12px;
    margin-bottom: 12px;
}

/* --- Sección Hero --- */
#hero {
  background-color: var(--primary-dark-blue);
  background-image: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('../images/background.png'); 
  background-size: cover;
  background-position: center;
  padding: 180px 0;
}

#hero .cta-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-light);
}

#hero .slider-para {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Botones Personalizados --- */
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-custom {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--accent-gold);
}

.btn-primary-custom:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark-blue);
  border-color: var(--accent-gold);
}

.btn-accent-custom {
  background-color: var(--accent-gold);
  color: var(--primary-dark-blue);
}

.btn-accent-custom:hover {
  background-color: #e8930a; /* Un tono de dorado más oscuro */
  color: var(--primary-dark-blue);
}


/* --- Sección Uniformes (Features) --- */
.feature-wiget {
  text-align: center;
  padding: 20px;
}

.feature-wiget .icon-wraper {
  font-size: 48px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.feature-wiget h4 {
  font-size: 20px;
  margin-bottom: 15px;
}


/* --- Sección Personalización (CTA) --- */
.cta-section {
  background-color: var(--secondary-steel-blue);
  padding: 100px 0;
}

.cta-section .cta-heading {
  color: var(--text-light);
  font-size: 32px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 20px auto 40px;
}

/* --- Sección Clientes --- */
.client-logos img {
  max-height: 60px;
  margin: 15px auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Sección Contacto --- */
.contact-form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: none;
}

/* --- Footer --- */
footer {
  background-color: var(--primary-dark-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0;
}
footer p {
  color: rgba(255, 255, 255, 0.7);
}
.footer-divider {
  border-top: 1px solid var(--secondary-steel-blue);
  width: 100px;
  margin: 30px auto;
}


/* Usamos el ID para asegurar que los estilos se apliquen */
/* --- Scroll to Top (VERSIÓN REFORZADA) --- */
#scroll-top-div {
  position: fixed !important;
  right: 25px !important;
  bottom: 25px !important;
  width: 50px !important;
  height: 50px !important;
  background-color: #FCA311 !important; /* Usamos el color directo */
  color: #0D1B2A !important;             /* Usamos el color directo */
  border-radius: 50% !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;

  /* Centrado de la flecha */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#scroll-top-div i {
  font-size: 30px !important;
  font-weight: bold !important;
}

/* El script lo controla, pero lo definimos por si acaso */
.scroll-top-div {
    display: none;
}