/* ======================================================
   SALIR DEL CRÁTER — CSS Final v2
   ====================================================== */

/* ---- NAV: Borde ámbar + sombra ---- */
nav.navbar {
  border-bottom: 3px solid #E07B28 !important;
  box-shadow: 0 3px 20px rgba(26, 58, 92, 0.5) !important;
}

/* ---- HEADER ROW: Gradiente profundo ---- */
.header-row {
  background: linear-gradient(180deg, #1A3A5C 0%, #235B86 100%) !important;
}

/* ---- LOGO ---- */
img.logo-header {
  max-height: 52px !important;
  width: auto !important;
}

/* ---- MENU NAV LINKS HOVER ---- */
.ss-menu-item a:hover, nav a.nav-link:hover {
  color: #E07B28 !important;
  text-decoration: none !important;
}

/* ---- HERO BUTTON: Naranja-ámbar llamativo ---- */
a.ss-switched-link {
  background-color: #E07B28 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.65em 2.2em !important;
  font-weight: 700 !important;
  font-size: 0.9em !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 18px rgba(224, 123, 40, 0.5) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  text-decoration: none !important;
}
a.ss-switched-link:hover {
  background-color: #c5691a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(224, 123, 40, 0.65) !important;
  text-decoration: none !important;
}

/* ---- BOTONES GENERALES ---- */
.btn-secondary {
  background-color: #E07B28 !important;
  border-color: #E07B28 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 0.55em 1.8em !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 0.88em !important;
  box-shadow: 0 4px 14px rgba(224, 123, 40, 0.4) !important;
  transition: all 0.3s ease !important;
}
.btn-secondary:hover {
  background-color: #c5691a !important;
  transform: translateY(-2px) !important;
}
.btn-outline-primary {
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

/* ---- TIPOGRAFÍA: Fuerte y moderna ---- */
h1 {
  font-weight: 800 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}
h2 { font-weight: 800 !important; }
h3 { font-weight: 700 !important; }

/* ---- GALERÍA: Imágenes hover ---- */
.sitePage img:not(.logo-header) {
  transition: transform 0.4s ease !important;
}
.sitePage img:not(.logo-header):hover {
  transform: scale(1.05) !important;
}

/* ---- SECCIÓN "ACERCA DE": Mejorar apariencia ---- */
/* Sección con fondo blanco/natural - mejorar espaciado */
.sitePage:nth-child(6) {
  padding: 3rem 0 !important;
}

/* ---- FOOTER: Gradiente oscuro + separador ámbar ---- */
footer {
  background: linear-gradient(135deg, #0F2340 0%, #1A3A5C 100%) !important;
  border-top: 3px solid #E07B28 !important;
}

/* ---- FORMULARIO CONTACTO ---- */
input[type="text"]:not(.inputarea),
input[type="email"]:not(.inputarea),
input[type="tel"]:not(.inputarea),
textarea:not(.inputarea) {
  border-radius: 10px !important;
  border: 2px solid #c8d8e8 !important;
  padding: 0.65em 1em !important;
  transition: border-color 0.25s ease !important;
}
input[type="text"]:focus:not(.inputarea),
input[type="email"]:focus:not(.inputarea),
textarea:focus:not(.inputarea) {
  border-color: #235B86 !important;
  box-shadow: 0 0 0 3px rgba(35, 91, 134, 0.18) !important;
  outline: none !important;
}

/* ---- SEPARADORES ---- */
.ss-separator { border-color: #E07B28 !important; border-width: 2px !important; }

/* ---- SCROLL + TIPOGRAFÍA ---- */
html { scroll-behavior: smooth !important; }
body { -webkit-font-smoothing: antialiased !important; }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  h1 { font-size: 1.9rem !important; }
  h2 { font-size: 1.35rem !important; }
  a.ss-switched-link { padding: 0.6em 1.5em !important; }
}