/* =================================================================
   ViaOrigen.com - Archivo CSS Exclusivo e Independiente
   Basado en arquitectura de referencia y adaptado con variables corporativas
   ================================================================= */

@charset "utf-8";

:root {
    --brand-primary: #ed5441;
    --brand-secondary: #fee16f;
    --brand-dark: #0a1525;
    --brand-text: #666666;
    --brand-bg: #ffffff;
}

/* Reset y Bases */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

a, a:hover, a:active {
    outline: 0 !important;
    text-decoration: none;
}

body {
    background: var(--brand-bg);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: var(--brand-text);
    margin: 0;
}

h2 {
    font-size: 36px;
    color: #222222;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
    text-transform: uppercase;
}

h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #222222;
    font-size: 20px;
    margin: 0 0 10px 0;
}

h6 {
    font-size: 15px;
    color: #888888;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px 0;
}

p {
    line-height: 26px;
    margin: 0 0 15px 0;
}

/* Header Estilos */
#header_wrapper {
    background: #000000;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 999;
}

.header_box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 26px;
    line-height: 40px;
    letter-spacing: 1px;
}

/* Navegación */
.navbar-inverse {
    background-color: transparent;
    border-color: transparent;
    margin-bottom: 0;
}

.navbar {
    border: 0;
    min-height: auto;
}

.navStyle {
    float: right;
}

.navStyle ul li {
    display: inline-block;
    margin: 0 12px;
}

.navStyle ul li a {
    display: block;
    font-size: 14px;
    color: #f7f7f7;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.navStyle ul li a:hover,
.navStyle ul li.active a {
    color: var(--brand-secondary);
}

/* Hero Section */
.top_cont_outer {
    position: relative;
    background-size: cover;
}

.hero_wrapper {
    background: rgba(10, 21, 37, 0.82);
    padding: 100px 0 120px 0;
}

.top_left_cont h3 {
    font-size: 15px;
    color: var(--brand-secondary);
    margin: 0 0 15px 0;
    text-align: left;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.top_left_cont h2 {
    font-size: 42px;
    color: #FFFFFF;
    line-height: 54px;
    margin: 0 0 25px 0;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    text-transform: none;
}

.top_left_cont p {
    font-size: 17px;
    color: #e0e0e0;
    margin: 0 0 35px 0;
    line-height: 30px;
    text-align: left;
}

a.read_more2 {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--brand-primary);
    color: #fff;
    border: 1px solid var(--brand-primary);
    transition: all 0.2s ease-in-out;
}

a.read_more2:hover {
    background: #ffffff;
    color: var(--brand-primary);
    border: 1px solid #ffffff;
}

/* Servicios / Pilares */
.service_block {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.service_icon span {
    display: inline-block;
    height: 80px;
    width: 80px;
    border: 2px solid var(--brand-secondary);
    border-radius: 50%;
    line-height: 76px;
    text-align: center;
}

.service_icon i {
    color: var(--brand-secondary);
    font-size: 32px;
}

.service_block h3 {
    font-size: 22px;
    color: #fff;
    margin: 25px 0 15px;
}

.service_block p {
    font-size: 15px;
    color: #b0b0b0;
    margin: 0;
}

/* Footer Estilos */
.footer_wrapper {
    background: #000000;
}

.footer_bottom {
    border-top: 1px solid #222222;
    padding: 25px 0;
}

.footer_bottom span {
    display: block;
    font-size: 13px;
    color: #888888;
    text-align: center;
    line-height: 22px;
}

.footer_bottom span a {
    color: var(--brand-secondary);
    margin: 0 5px;
}

.footer_bottom span a:hover {
    color: #fff;
}