/* supplement.css — fallback for missing Qode Bridge theme CSS.
   Original commercial theme files were not archived. */

:root { --accent: #81d742; --accent-dark: #6bb02e; --ink: #151515; --muted: #555; }

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: 'Raleway','Montserrat','Lato','Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size: 16px; line-height: 1.6; color: #333; background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat','Raleway',sans-serif; line-height: 1.25; color: var(--ink); }

/* ---- layout wrappers ---- */
.wrapper, .wrapper_inner { width: 100%; }
.container { width: 100%; }
.container_inner, .footer_inner {
  max-width: 1150px; margin: 0 auto; padding: 0 20px;
}
.content_inner { width: 100%; }
.clearfix::after { content: ""; display: table; clear: both; }

/* ---- header / nav ---- */
header.page_header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid #eee; width: 100%;
}
.header_inner,
.header_top_bottom_holder,
.header_bottom { width: 100%; }
.header_inner { max-width: none; padding: 0; display: block; }

.header_bottom .container_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 8px 16px;
}
.header_inner_left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.header_inner_right { display: none; }

.logo_wrapper, .q_logo { line-height: 0; }
.q_logo a { display: inline-block; }
.q_logo img { display: none; max-height: 52px; width: auto; }
.q_logo img.normal { display: block; }

/* CSS hamburger — Font Awesome webfont files are missing */
.mobile_menu_button {
  display: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 4px;
  flex-shrink: 0;
}
.mobile_menu_button span {
  display: block;
  position: relative;
  width: 22px;
  height: 16px;
}
.mobile_menu_button i { display: none !important; }
.mobile_menu_button span::before,
.mobile_menu_button span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}
.mobile_menu_button span::before { top: 0; box-shadow: 0 7px 0 var(--ink); }
.mobile_menu_button span::after { bottom: 0; }
.mobile_menu_button.open span::before {
  top: 7px; box-shadow: none; transform: rotate(45deg);
}
.mobile_menu_button.open span::after {
  bottom: 7px; transform: rotate(-45deg);
}

nav.main_menu { margin-left: auto; }
nav.main_menu > ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
}
nav.main_menu > ul > li { position: relative; }
nav.main_menu > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px; color: var(--ink); font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
nav.main_menu > ul > li > a:hover,
nav.main_menu > ul > li.active > a { color: var(--accent); }
nav.main_menu .menu_icon,
nav.main_menu span.plus { display: none; }

/* Bridge dropdown is .second, not ul.sub_menu */
nav.main_menu ul li .second {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 220px; z-index: 200;
  background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 8px 0;
}
nav.main_menu ul li:hover > .second { display: block; }
nav.main_menu ul li .second ul { list-style: none; margin: 0; padding: 0; }
nav.main_menu ul li .second li a {
  display: block; padding: 8px 18px; color: #333; font-size: 13px;
  text-transform: none; letter-spacing: 0; font-weight: 500;
}
nav.main_menu ul li .second li a:hover { color: var(--accent); background: #f7f7f7; }

nav.mobile_menu { display: none; width: 100%; flex-basis: 100%; }
nav.mobile_menu ul { list-style: none; margin: 0; padding: 8px 0 16px; }
nav.mobile_menu li { position: relative; border-top: 1px solid #eee; }
nav.mobile_menu li a {
  display: block; padding: 12px 8px; color: var(--ink);
  font-weight: 600; font-size: 14px; text-transform: uppercase;
}
nav.mobile_menu .sub_menu { display: none; padding-left: 12px; }
nav.mobile_menu li.open > .sub_menu { display: block; }
nav.mobile_menu .mobile_arrow {
  position: absolute; right: 4px; top: 8px;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
nav.mobile_menu .mobile_arrow .fa-angle-down { display: none; }
nav.mobile_menu li.open > .mobile_arrow .fa-angle-right { display: none; }
nav.mobile_menu li.open > .mobile_arrow .fa-angle-down { display: inline; }

@media (max-width: 1000px) {
  .mobile_menu_button { display: block; }
  nav.main_menu { display: none !important; }
  nav.mobile_menu.open { display: block; }
}

/* ---- page title banner ---- */
/* Original title photos lived in missing style_dynamic.css; .image divs are empty. */
.title_outer.animate_title_area {
  opacity: 1 !important;
  height: auto !important;
}
.title_outer .title {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 220px;
  background-color: #111;
  background-image: url('/wp-content/uploads/2016/10/Absoluto-para-web-1024x765.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
.title_outer .title.position_left {
  justify-content: flex-start;
  text-align: left;
}
.title_outer .title::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.58) 100%);
  z-index: 0;
  pointer-events: none;
}
.title .image { display: none; }
.title_holder {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  height: auto !important;
}
.title h1,
.title h1 span {
  font-size: clamp(22px, 4vw, 36px);
  color: #fff !important;
  margin: 0 0 8px;
  max-width: 900px;
}
.title.position_center h1 { margin-left: auto; margin-right: auto; }
.title .subtitle,
.title .text_above_title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  max-width: 720px;
  margin: 12px auto 0;
  color: #f2f2f2 !important;
}
.title.position_left .subtitle,
.title.position_left .text_above_title { margin-left: 0; margin-right: 0; }
.separator.small.center,
.separator.small.left {
  display: block; width: 60px; height: 2px; margin: 12px auto;
  background: var(--accent);
}
.title.position_left .separator.small { margin-left: 0; }

/* ---- Visual Composer ---- */
.vc_row, .wpb_row { position: relative; }
.wpb_column { box-sizing: border-box; }
.wpb_text_column .wpb_wrapper { line-height: 1.7; }
.wpb_content_element { margin-bottom: 24px; }
.grid_section > .container,
.full_section_inner,
.section_inner { max-width: 1150px; margin: 0 auto; padding: 0 20px; }
.full_width, .full_width_inner { width: 100%; }
.parallax_section_holder {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  min-height: 180px;
}
.parallax_section_holder.fondo {
  background-image: url('/wp-content/uploads/2016/10/03.jpg');
}
.wpb_map_wraper iframe { width: 100%; }

/* ---- buttons ---- */
.qbutton, .button, button, input[type="submit"], .wpb_button {
  display: inline-block; padding: 12px 26px; background: var(--accent); color: #fff !important;
  border: none; border-radius: 3px; font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: .04em; cursor: pointer;
}
.qbutton:hover, .button:hover, button:hover, input[type="submit"]:hover { background: var(--accent-dark); }

/* ---- thrive / lead forms: missing plugin CSS left white-on-white text ---- */
.ttfm1, .ttfm2 { color: inherit !important; font-family: 'Montserrat','Raleway',sans-serif !important; }
.thrv-leads-form-box {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 24px 20px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.thrv_lead_generation input[type="text"],
.thrv_lead_generation input[type="email"] {
  width: 100%; padding: 12px 14px; border: 1px solid #ccc; border-radius: 2px;
  font-size: 15px; color: var(--ink); background: #fff;
}
.tve_lead_generated_inputs_container {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch;
}
.tve_lg_input_container { flex: 1 1 180px; }
.tve_submit_container { flex: 0 1 200px; }
.tve_submit_container button { width: 100%; height: 100%; min-height: 44px; }
.tve_custom_font_size { font-size: inherit !important; }
h2 .tve_custom_font_size, h2.ttfm2, h2.rft {
  font-size: clamp(26px, 4vw, 40px) !important;
}

/* ---- footer ---- */
footer { background: #151515; color: #cfcfcf; margin-top: 40px; }
footer .ttfm1, footer .ttfm2 { color: #fff !important; }
.footer_bottom_holder, .footer_bottom { padding: 40px 0; }
.footer_bottom_columns {
  display: flex; flex-wrap: wrap; gap: 30px;
  max-width: 1150px; margin: 0 auto; padding: 0 20px;
}
.footer_bottom_column { flex: 1 1 260px; }
footer a { color: #fff; }
footer a:hover { color: var(--accent); }

/* ---- misc ---- */
.content { min-height: 200px; }
ul, ol { padding-left: 22px; }
table { border-collapse: collapse; max-width: 100%; }
table td, table th { border: 1px solid #ddd; padding: 8px 12px; }
#back_to_top { display: none; }

/* article + sidebar row (inline flex on article template) */
@media (max-width: 800px) {
  .page_container_inner > div[style*="display:flex"] {
    flex-direction: column !important;
  }
  .page_container_inner aside {
    flex: 1 1 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    position: static !important;
  }
}

@media (max-width: 768px) {
  .header_bottom .container_inner { min-height: 64px; }
  .footer_bottom_columns { flex-direction: column; }
  .tve_lead_generated_inputs_container { flex-direction: column; }
  .tve_submit_container { flex: 1 1 auto; }
}

/* reveal-on-scroll: VC hides blocks until waypoint JS runs (JS is missing) */
.wpb_animate_when_almost_visible { opacity: 1 !important; }
.vc_gitem-animate .vc_gitem-zone-b,
.vc_gitem-animate-fadeIn .vc_gitem-zone-b,
.vc_gitem-animate-scaleIn .vc_gitem-zone-b { opacity: 1 !important; }
.vc_pie_chart { opacity: 1 !important; }
.vc_row[data-vc-full-width].vc_hidden { opacity: 1 !important; }
