
/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #e8742a;
  --color-primary-hover: #d4631d;
  --color-dark-navy: #0b1a2b;
  --color-hero-bg: #0e1f33;
  --color-fleet-bg: #eef3f7;
  --color-gallery-bg: #082741;
  --color-prefooter-bg: #020d17;
  --color-footer-bg: #01080f;
  --color-text-light: #ffffff;
  --color-text-muted: #a0b0c0;
  --color-text-dark: #1a1a1a;
  --color-text-subtitle: #8a9bb0;
  --color-cta-blue: #2a7fff;
  --color-cta-blue-hover: #1a6ae6;
  --color-navbar-bg: #ffffff;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Archivo', sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  background-color: var(--color-dark-navy);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Utility Classes ---------- */
.espacio{
	padding: 150px 0;
}

h3.subtitulo{
	margin-bottom: 50px;
	
	font-size: 24px;
	font-weight: 800;
}
h3.subtitulo span{
	font-weight: 400;
}
	
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.section-title strong {
  font-weight: 700;
}

.text-orange {
  color: var(--color-primary);
}

/* navbar */
.navbar-kona {
  background-color: var(--color-navbar-bg);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  /*position: sticky;
  top: 0;
  z-index: 1030;*/
}

.navbar-logo-icon {
  display: flex;
  align-items: center;
}

.navbar-logo-icon svg,
.navbar-logo-icon img {
  height: auto;
  width: 304px;
}

.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: 3px;
}

.navbar-brand:hover .navbar-brand-text {
  color: var(--color-text-dark);
}

.navbar-kona .nav-link {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 106px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  
  height: 106px;
  padding: 0px 20px;
  min-width: 182px;
  
  transition: background-color 0.3s ease;
}

.nav-link-quienes{
	background: #8792a6 url(../_img/sombra.png) no-repeat left top;
}
.nav-link-quienes:hover{
	background: color-mix(in srgb, #8792a6, black 20%);
}

.nav-link-servicios{
	background: #5e697d url(../_img/sombra.png) no-repeat left top;
}
.nav-link-servicios:hover{
	background: color-mix(in srgb, #5e697d, black 20%);
}

.nav-link-flota{
	background: #505b77 url(../_img/sombra.png) no-repeat left top;
}
.nav-link-flota:hover{
	background: color-mix(in srgb, #505b77, black 20%);
}

.nav-link-contacto{
	background: #2d3241 url(../_img/sombra.png) no-repeat left top;
}
.nav-link-contacto:hover{
	background: color-mix(in srgb, #2d3241, black 20%);
}

.navbar-kona .nav-link-llamanos {
  background: #2568ef url(../_img/sombra.png) no-repeat left top; 
}
.navbar-kona .nav-link-llamanos:hover {
  background-color: color-mix(in srgb, var(--color-cta-blue), black 20%);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* header */
.header-hero {
  position: relative;
  overflow: hidden;
}

.header-hero-wrapper {
  position: relative;
  min-height: 600px;
}

.header-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.header-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
}

h1.header-hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

p.header-hero-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 2.25rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.header-hero-map {
  margin-top: 10px;
}

/* hero quienes somos */
.hero-section {
  background: #061b2d url(../_img/montana.png) no-repeat center bottom;
  background-size: 1920px;
  
  text-align: center;
}
.hero-section .subtitulo{
	color: #eac9a6;
}
.hero-section h1{
	color: #bedcff;
	font-size: 45px;
	font-weight: 800;
}
.hero-section p{
	font-size: 22px;
}

a.link-kona{
	color: #cd840b;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}
a.link-kona:hover{
	text-decoration: underline;
}

.modal-content{}
h1.modal-title{
	margin-left: 15px;
	color: black;
}
.modal-body p{
	padding: 10px 15px;
	
	font-size: 21px;
	line-height: 1.9rem;
}

/* servicios */
.servicios-section {
	background: #020d17;
}
.servicios-section .subtitulo{
	color: #eac9a6;
}

.servicio-card {
  position: relative;
}
.servicio-img-wrapper {
  width: 100%;
  
  overflow: hidden;
  border-radius: 30px;
}
.servicio-img-wrapper img {
  width: 100%;
  height: inherit;
}
.servicio-card h5 {
	margin: 50px 0;
	padding: 0 30px 0 0;
	
  	font-family: var(--font-primary);
  	font-size: 28px;
  	font-weight: 400;
  	color: white;
  	line-height: 1.2;
}

/* features bar */
.features-bar {
  padding: 50px 0;
  
  background: #093e6d;
  border-bottom: 1px solid rgba(232, 116, 42, 0.2);
}
.features-bar span {
	display: inline-block;
	padding: 5px 30px;
	
	font-family: var(--font-heading);
	font-size: 19px;
  	font-style: italic;
  	font-weight: 500;
  	letter-spacing: 1px;
  	text-transform: uppercase;
  	color: white;
}
.features-bar strong {
  color: white;
  font-weight: 800;
}

/* flota */
.flota-section {
  background-color: var(--color-fleet-bg);
}
.flota-section .subtitulo{
	color: #061b2d;
}

.flota-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 25px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flota-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.flota-card-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.flota-card-img img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.flota-card h5 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0px;
}
.flota-card p {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

/* galeria */
.galeria-section {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#082741+0,051b2d+100 */
	background: linear-gradient(to bottom,  #082741 0%,#051b2d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	
}
.galeria-section .subtitulo{
	color: #bedcff;
}
.galeria-section img{
	border-radius: 30px;
}

/* clientes */
.clientes-section {
  background: white;
}
.clientes-section .subtitulo{
	color: #061b2d;
}
img.cliente-img{
	height: 85px;
}

/* pre-footer */
.prefooter-section {
  background-color: var(--color-prefooter-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.prefooter-section.espacio{
	padding: 150px 0 100px 0;
}

.prefooter-section h5 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #bedcff;
  margin-bottom: 45px;
}

.prefooter-section ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.prefooter-section ul li {
  font-size: 19px;
  color: white;
  line-height: 1.4;
  
  padding-bottom: 24px;
  padding-left: 48px;
  
  background: url(../_img/icono-check.png) no-repeat 0 0;
  background-size: 24px;
}
.prefooter-section ul li.icono-argentina{
    background: url(../_img/icono-argentina.png) no-repeat 0 0;
    background-size: 24px;
}
.prefooter-section ul li.icono-chile{
    background: url(../_img/icono-chile.png) no-repeat 0 0;
    background-size: 24px;
}
.prefooter-section ul li.icono-montana{
    background: url(../_img/icono-montana.png) no-repeat 0 0;
    background-size: 24px;
}
.prefooter-section ul li.icono-email{
    background: url(../_img/icono-email.png) no-repeat 0 0;
    background-size: 24px;
}

.prefooter-section a {
  color: #2a9ada;
}
.prefooter-section a:hover {
  text-decoration: underline;
}

/* footer */
.footer-section {
  background-color: var(--color-footer-bg);
  padding: 45px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-logo {
  opacity: 1;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-links a {
  font-size: 11px;
  color: #bedcff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-links a:hover {
  color: var(--color-primary);
}

a.whatsapp{
	z-index: 9999;
	position: fixed;
	right: 48px;
	bottom: 48px;
	opacity: 1;
}
a.whatsapp:hover{
	opacity: 0.8;
}














