/* =========================================================================
   PROMETEO UV-C — Landing standalone stylesheet
   ========================================================================= */

/* Palette & Reset ---------------------------------------------------------- */
:root {
  --p-navy: #0e3a8a;
  --p-navy-dark: #0a2d6e;
  --p-teal: #1eb0b8;
  --p-teal-light: #2bc3c0;
  --p-teal-dark: #0e8e96;
  --p-pink: #e91e63;
  --p-pink-light: #ff4d8a;
  --p-gray: #6d8093;
  --p-light: #f5f7fa;
}

/* Reset il body di Pofo per la landing */
html, body.prometeo-landing-body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'GothamBook', 'Univers LT Std', 'Univers Condensed', sans-serif !important;
  color: #333;
  background: #fff;
}
body.prometeo-landing-body * { box-sizing: border-box; }
body.prometeo-landing-body p { font-family: 'GothamBook', 'Univers LT Std', sans-serif; }
body.prometeo-landing-body p { line-height: 36px !important; }

#prometeo-landing-root { width: 100%; }

/* Top bar (LinkedIn + email) ---------------------------------------------- */
.prometeo-topbar {
  background: var(--p-navy);
  color: #fff;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 12px;
}
.prometeo-topbar .ln-icon {
  width: 22px; height: 22px;
  background: var(--p-navy-dark);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-style: italic; font-size: 12px;
  text-decoration: none;
}
.prometeo-topbar .ln-icon:hover { background: var(--p-teal); }
.prometeo-topbar .email { color: #fff; text-decoration: none; }
.prometeo-topbar .email:hover { color: var(--p-teal-light); }
.prometeo-topbar .email .icon { margin-right: 8px; }

/* Main menu bar ----------------------------------------------------------- */
.prometeo-menubar {
  background: linear-gradient(90deg, var(--p-teal) 0%, var(--p-teal-light) 100%);
  padding: 16px 40px;
  text-align: right;
  border-bottom: 3px solid #1381a7;
  position: relative;
}
.prometeo-menubar nav { display: inline-flex; gap: 28px; }
.prometeo-menubar nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'GothamMedium', 'Univers Condensed', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity .2s;
}
.prometeo-menubar nav a:hover { opacity: 0.7; }

/* Hamburger toggle (mobile) ----------------------------------------------- */
.prometeo-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  width: 44px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.prometeo-menu-toggle .hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.prometeo-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.prometeo-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.prometeo-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Brand row (logo + claim) ------------------------------------------------ */
.prometeo-brand {
  background: #fff;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 3px solid #1381a7;
}

/* Override Pofo: rimuove il margin-top di 32px applicato quando admin-bar è attiva */
body.admin-bar nav,
body.admin-bar .no-sticky .navbar-non-sticky-top.navbar-brand-top { margin-top: 0; }
.prometeo-logo { display: flex; align-items: center; gap: 18px; }
.prometeo-logo .logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
.prometeo-claim { text-align: right; }
.prometeo-claim h1 {
  font-family: 'Univers Condensed', 'GothamBook', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #555;
  margin: 0 0 6px 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.prometeo-claim h1 strong { font-family: 'GothamBold', sans-serif; font-weight: bold; color: #444; }
.prometeo-claim p {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 16px;
  color: #777;
  margin: 0;
  font-weight: 400;
}

/* Hero -------------------------------------------------------------------- */
.prometeo-hero {
  position: relative;
  min-height: 540px;
  background: #0a0a3a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prometeo-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.prometeo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,58,0.25) 0%, rgba(10,10,58,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.prometeo-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
}
.prometeo-hero-content .placeholder {
  font-family: 'Univers Condensed', 'GothamBook', sans-serif;
  font-size: 38px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.prometeo-quote-card {
  position: absolute;
  top: 40px; right: 40px;
  max-width: 340px;
  background: #f5f5f5;
  padding: 28px 32px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  z-index: 3;
}
.prometeo-quote-card .quote-mark {
  font-family: Georgia, serif;
  color: var(--p-teal);
  font-size: 56px;
  line-height: 0;
  position: absolute;
}
.prometeo-quote-card .quote-mark.open { top: 22px; left: 12px; }
.prometeo-quote-card .quote-mark.close { bottom: 6px; right: 14px; }
.prometeo-quote-card p { margin: 0 0 4px 0; }
.prometeo-quote-card .author {
  font-weight: 600;
  text-align: right;
  margin-top: 8px;
  color: #555;
}

/* Hero slider dots -------------------------------------------------------- */
.prometeo-dots {
  background: #fff;
  text-align: center;
  padding: 28px 0 22px 0;
}
.prometeo-dots span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  background: #fff;
  border: 1px solid var(--p-navy);
}
.prometeo-dots span.active { background: var(--p-navy); }

/* Community CTA ----------------------------------------------------------- */
.prometeo-community {
  position: relative;
  background: #6d8093 url('/wp-content/uploads/2026/06/linkendin-scaled.jpg') center center / cover no-repeat;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: 60px;
}
.prometeo-community::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(14, 58, 138, 0.55);
  pointer-events: none;
  z-index: 1;
}
.prometeo-community > * { position: relative; z-index: 2; }
.prometeo-community::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.3) 0.8px, transparent 0.8px);
  background-size: 60px 60px, 35px 35px;
  background-position: 0 0, 20px 25px;
  opacity: 0.55;
  pointer-events: none;
}
.prometeo-community h2 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.prometeo-community p {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 30px 0;
  position: relative; z-index: 2;
}
.prometeo-community .cta {
  display: inline-block;
  background: var(--p-teal);
  color: #fff;
  padding: 13px 50px;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s;
  position: relative; z-index: 2;
}
.prometeo-community .cta:hover { background: var(--p-teal-dark); }

/* Decorative gradient bar ------------------------------------------------- */
.prometeo-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--p-teal) 0%, var(--p-teal-light) 50%, var(--p-pink) 100%);
}

/* Footer ------------------------------------------------------------------ */
.prometeo-footer {
  background: #023782;
  color: #fff;
  padding: 50px 40px 25px 40px;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
}
.prometeo-footer .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.prometeo-footer .col {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  line-height: 1.7;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.prometeo-footer .col .ico {
  width: 36px; height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.prometeo-footer .col strong { font-weight: 700; }
.prometeo-footer .footer-logo { display: flex; align-items: center; }
.prometeo-footer .footer-logo .logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.prometeo-footer .legal {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding-top: 20px;
  font-size: 11px;
  color: #fff;
}
.prometeo-footer .legal a { color: #fff; text-decoration: none; }
.prometeo-footer .legal a:hover { text-decoration: underline; }

/* WPBakery: rimuovi padding/margin extra ---------------------------------- */
#prometeo-landing-root .wpb_content_element { margin-bottom: 0 !important; }
#prometeo-landing-root .wpb_text_column { margin-bottom: 0 !important; }

/* =========================================================================
   ROW DEFAULT = CONTAINER BOXED
   Le righe vc_row create dall'editor Visual Composer GUI sono centrate
   come container (max-width 1200px) di default. Le righe che ospitano
   wrapper interni full-bleed (.prometeo-page-inner, hero, banner, strip)
   diventano automaticamente edge-to-edge tramite :has() opt-out.

   NB: Visual Composer (quando _wpb_vc_js_status = true) avvolge il post
   content con un `<div class="wpb-content-wrapper">`, quindi le `.vc_row`
   NON sono figli diretti di `.prometeo-main`. Il selettore deve coprire
   ENTRAMBE le strutture:
     - .prometeo-main > .vc_row                              (rendering "raw")
     - .prometeo-main > .wpb-content-wrapper > .vc_row       (rendering VC standard)
   ========================================================================= */
.prometeo-main > .vc_row,
.prometeo-main > .wpb-content-wrapper > .vc_row {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Opt-out: righe storiche con wrapper interno o asset full-bleed.
   Quelle pagine hanno già un proprio sistema di centering / sfondi edge. */
.prometeo-main > .vc_row:has(.prometeo-page-inner),
.prometeo-main > .vc_row:has(.prometeo-hero),
.prometeo-main > .vc_row:has(.prometeo-uv-banner),
.prometeo-main > .vc_row:has(.prometeo-clean-hero),
.prometeo-main > .vc_row:has(.prometeo-vine-hero),
.prometeo-main > .vc_row:has(.prometeo-apply-strip),
.prometeo-main > .vc_row:has(.azienda-divider-gradient),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.prometeo-page-inner),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.prometeo-hero),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.prometeo-uv-banner),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.prometeo-clean-hero),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.prometeo-vine-hero),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.prometeo-apply-strip),
.prometeo-main > .wpb-content-wrapper > .vc_row:has(.azienda-divider-gradient),
.prometeo-main > .vc_row[data-vc-stretch-content="true"],
.prometeo-main > .wpb-content-wrapper > .vc_row[data-vc-stretch-content="true"] {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* OPT-OUT VC GUI - VARIANTE 1: "Stretch row" (sfondo full-bleed, CONTENUTO boxed 1200px).
   Pofo applica `data-vc-full-width="true"` SENZA `data-vc-stretch-content`.
   La row si estende a tutta la viewport (sfondo edge-to-edge), ma il content
   resta centrato in 1200px usando padding orizzontale calcolato.
   `max(20px, calc((100vw - 1200px) / 2))`:
     - viewport >= 1240px -> padding = (100vw - 1200) / 2 (centra il content)
     - viewport < 1240px  -> padding = 20px (mobile/tablet)

   IMPORTANTE: VC core js_composer_front.min.js, dopo il page load, INIETTA
   uno style inline sulla section con `data-vc-full-width="true"`:
       style="width: 100vw; max-width: 100vw;
              padding-left: 0px !important... no: 0px (NO !important);
              padding-right: 0px;"
   Quindi DOBBIAMO usare `!important` per battere lo style inline e tenere
   il content boxed. Senza !important il content va full-bleed. */
.prometeo-main > .vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"]),
.prometeo-main > .wpb-content-wrapper > .vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"]) {
  margin-left: 0;
  margin-right: 0;
  padding-left: max(20px, calc((100vw - 1200px) / 2)) !important;
  padding-right: max(20px, calc((100vw - 1200px) / 2)) !important;
}

/* Pagina azienda: vc_row boxed 1200px come tutte le altre.
   Gli sfondi grigi delle fasce storiche e della VM si estendono
   edge-to-edge via box-shadow + clip-path (vedi sezione "AZIENDA"). */

/* Logo link wrapper (anchor) --------------------------------------------- */
.prometeo-logo { text-decoration: none; color: inherit; }

/* Menu active state ------------------------------------------------------- */
.prometeo-menubar nav a.active { opacity: 1; border-bottom: 2px solid #fff; padding-bottom: 2px; }

/* =========================================================================
   GENERIC PAGE SHELL (pagine interne: contatti, azienda, soluzioni, ecc.)
   ========================================================================= */
.prometeo-main { background: #fff; }
.prometeo-page { background: #fff; padding: 0 0 50px 0; }
.prometeo-page-inner { max-width: 1100px; margin: 0 auto; padding: 40px 40px; }
.prometeo-page-title {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #2b2b2b;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 30px 0 50px 0;
}
.prometeo-section-head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 0 8px 0;
  border-bottom: 0;
}
.prometeo-section-head .head-mark {
  width: 24px; height: 24px;
  background: linear-gradient(180deg, var(--p-teal) 0%, var(--p-navy) 100%);
  border-radius: 3px;
  flex-shrink: 0;
}
.prometeo-section-head h2 {
  font-family: 'Univers Condensed', 'GothamMedium', sans-serif;
  font-size: 32px;
  color: var(--p-navy);
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}
.prometeo-section-head h2 .cap { font-size: 38px; font-weight: 400; }
.prometeo-section-head h2 .wave,
.prometeo-section-head h2 .dots-deco,
.prometeo-section-head h2 .aria-wave { color: var(--p-teal); font-weight: 400; margin-left: 8px; }
.prometeo-product-title {
  font-family: 'Univers Condensed', 'GothamBook', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--p-teal);
  margin: 35px 0 4px 0;
  letter-spacing: 1px;
}
.prometeo-product-title strong { font-family: 'GothamBold', sans-serif; font-weight: bold; color: var(--p-teal); }
.prometeo-product-title .quiver-dot {
  display: inline-block;
  width: 22px; height: 22px;
  background-image: radial-gradient(circle, var(--p-teal) 30%, transparent 31%);
  background-size: 6px 6px;
  vertical-align: middle;
}
.prometeo-product-subtitle {
  background: #e4eff1;
  padding: 16px 22px;
  color: var(--p-teal-dark);
  font-family: 'Univers Condensed', 'GothamBook', sans-serif;
  font-size: 19px;
  font-weight: 300;
  margin: 0 0 28px 0;
}
.prometeo-lead {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 14px 0;
}
.prometeo-foot-note {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  margin: 30px 0;
}
.prometeo-subtitle {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--p-teal);
  margin: 24px 0 14px 0;
}
.prometeo-why-title {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--p-teal);
  margin: 40px 0 22px 0;
}
.prometeo-why-title strong { font-weight: 700; }
.prometeo-divider-thin {
  height: 2px;
  background: linear-gradient(90deg, var(--p-teal) 0%, var(--p-pink) 100%);
  margin: 30px 0;
}
.prometeo-callout {
  position: relative;
  background: #f5f7fa;
  padding: 16px 22px 16px 30px;
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.prometeo-callout .bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--p-teal);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}

/* =========================================================================
   PAGE: CONTATTI (form)
   ========================================================================= */
.prometeo-form { max-width: 820px; margin: 0 auto; }
.prometeo-form .form-row { margin: 0 0 14px 0; }
.prometeo-form input,
.prometeo-form textarea {
  width: 100%;
  background: #eceef0;
  border: 0;
  padding: 16px 20px;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 14px;
  color: #444;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  transition: background .2s, box-shadow .2s;
}
.prometeo-form input::placeholder,
.prometeo-form textarea::placeholder { color: #6b6b6b; }
.prometeo-form input:focus,
.prometeo-form textarea:focus {
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--p-teal);
}
.prometeo-form textarea { min-height: 150px; resize: vertical; }
.prometeo-form .form-row-submit { margin-top: 20px; }
.prometeo-btn-primary {
  background: var(--p-navy);
  color: #fff;
  border: 0;
  padding: 14px 36px;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .2s;
}
.prometeo-btn-primary:hover { background: var(--p-navy-dark); }

/* =========================================================================
   PAGE: AZIENDA (Prometeo myth + Vision/Mission)
   ========================================================================= */
.prometeo-story-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  margin: 0 auto 0 auto;
  max-width: 1100px;
  padding: 30px 40px 0 40px;
  gap: 0;
}
.prometeo-story-hero .story-image {
  background: #d7d3c8;
  min-height: 380px;
  overflow: hidden;
}
.prometeo-story-hero .story-image svg { display: block; width: 100%; height: 100%; min-height: 380px; }
.prometeo-story-hero .story-quote {
  background: #d5d8db;
  padding: 40px 36px;
  display: flex;
  align-items: center;
}
.prometeo-story-hero .story-quote p {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 32px;
  color: var(--p-navy);
  line-height: 1.3;
  font-weight: 300;
  margin: 0;
}
.prometeo-story-hero .story-quote .initial {
  font-size: 50px;
  font-weight: 700;
  color: var(--p-navy);
  vertical-align: -4px;
  line-height: 1;
}
.prometeo-story-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 40px;
  background: #f3f4f6;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.prometeo-story-text + .prometeo-story-text { background: #fff; }
.prometeo-story-text p { margin: 0; }
.prometeo-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 40px 40px 40px;
}
.prometeo-vm .vm-col { position: relative; padding-top: 30px; }
.prometeo-vm .vm-flag {
  display: block;
  width: 60px; height: 30px;
  background: linear-gradient(180deg, var(--p-teal) 0%, var(--p-navy) 100%);
  margin-bottom: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.prometeo-vm h3 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 20px;
  color: var(--p-navy);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 14px 0;
}
.prometeo-vm p {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  margin: 0;
}

/* =========================================================================
   PAGE: AZIENDA — layout Visual Composer (fedele a Pagina 2.pdf)
   Targeting via body.prometeo-page-azienda + selettori VC nativi
   (vc_row-o-content-middle = hero, vc_row-o-content-top = vm,
    .vc_row:not(.vc_row-flex) = righe full-width testo/divider).
   ========================================================================= */
body.prometeo-page-azienda .prometeo-main { background: #fff; padding-bottom: 0; }
body.prometeo-page-azienda .prometeo-page-inner { max-width: none; padding: 0; }
body.prometeo-page-azienda .wpb-content-wrapper { max-width: none; padding: 0; }

/* Reset margini VC dentro la pagina azienda -------------------------------
   NOTA: limitato all'asse verticale per non rompere `margin-left/right: auto`
   del default container (`.prometeo-main > .vc_row` / wpb-content-wrapper). */
body.prometeo-page-azienda .vc_row { margin-top: 0 !important; margin-bottom: 0 !important; }
body.prometeo-page-azienda .wpb_column,
body.prometeo-page-azienda .vc_column_container > .vc_column-inner { padding: 0 !important; }
body.prometeo-page-azienda .wpb_content_element,
body.prometeo-page-azienda .wpb_text_column { margin: 0 !important; }

/* Hero row 50/50: dipinto + quote (.vc_row-o-content-middle) -------------- */
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .wpb_column { display: flex; }
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .vc_column-inner,
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .wpb_wrapper { width: 100%; display: flex; flex-direction: column; }
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .wpb_text_column { width: 100%; flex: 1; }
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .wpb_text_column > .wpb_wrapper { flex: 1; }

.azienda-painting {
  width: 100%;
  min-height: 380px;
  background: #d0bb89;
  overflow: hidden;
  display: block;
  flex: 1;
}
.azienda-painting svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .vc_col-sm-6:last-child .wpb_wrapper {
  background: #e8e6e3;
  padding: 60px 50px;
  min-height: 380px;
  display: flex;
  align-items: center;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle p.quote-body {
  font-family: 'Univers Condensed', 'GothamBook', sans-serif;
  font-size: 32px;
  color: #1a3a8c;
  line-height: 1.3;
  font-weight: 300;
  margin: 0;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle p.quote-body .big {
  font-family: 'GothamBold', sans-serif;
  font-size: 44px;
  color: #1a3a8c;
  vertical-align: -3px;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-middle p.quote-body .small-caps {
  font-family: 'GothamBold', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Story text rows: vc_row boxed 1200px, sfondo grigio esteso edge-to-edge
   via box-shadow orizzontale + clip-path per evitare overflow verticale */
body.prometeo-page-azienda .vc_row:not(.vc_row-flex):not(:has(.azienda-divider-gradient)) {
  background: #ececec;
  box-shadow: 0 0 0 100vmax #ececec;
  clip-path: inset(0 -100vmax);
  padding: 0;
}
body.prometeo-page-azienda .vc_row:not(.vc_row-flex):not(:has(.azienda-divider-gradient)):nth-of-type(3) {
  background: #f4f4f4;
  box-shadow: 0 0 0 100vmax #f4f4f4;
}
body.prometeo-page-azienda .vc_row:not(.vc_row-flex) .wpb_wrapper > .wpb_text_column {
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 22px 40px;
}
body.prometeo-page-azienda .vc_row:not(.vc_row-flex) .wpb_text_column p {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2b2b2b;
  margin: 0;
}
body.prometeo-page-azienda .vc_row:not(.vc_row-flex) .wpb_text_column strong {
  font-family: 'GothamBold', sans-serif;
  color: var(--p-navy);
  font-weight: 700;
}

/* Divider gradient (row che contiene .azienda-divider-gradient) ----------- */
body.prometeo-page-azienda .vc_row:not(.vc_row-flex):has(.azienda-divider-gradient) {
  background: #f4f4f4;
}
body.prometeo-page-azienda .vc_row:not(.vc_row-flex) .wpb_wrapper > .wpb_text_column:has(.azienda-divider-gradient) {
  max-width: 1100px;
  padding: 6px 40px;
  background: transparent;
}
.azienda-divider-gradient {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--p-teal) 0%, #1381a7 50%, var(--p-pink) 100%);
  margin: 8px 0;
}

/* Vision / Mission 50/50 (.vc_row-o-content-top): boxed 1200px con sfondo
   grigio chiaro edge-to-edge (box-shadow + clip-path) */
body.prometeo-page-azienda .vc_row.vc_row-o-content-top {
  background: #f4f4f4;
  box-shadow: 0 0 0 100vmax #f4f4f4;
  clip-path: inset(0 -100vmax);
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-top .wpb_wrapper {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 30px;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-top h3 {
  font-family: 'GothamBold', 'GothamMedium', sans-serif;
  font-size: 22px;
  color: var(--p-navy);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 14px 0;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-top h3 .vm-flag {
  display: inline-block;
  width: 36px;
  height: 24px;
  background: linear-gradient(180deg, var(--p-teal) 0%, #1381a7 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 4px;
}
body.prometeo-page-azienda .vc_row.vc_row-o-content-top p {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #2b2b2b;
  text-align: justify;
  margin: 0;
}

/* Responsive azienda VC --------------------------------------------------- */
@media (max-width: 900px) {
  body.prometeo-page-azienda .vc_row.vc_row-o-content-middle { display: block; }
  .azienda-painting { min-height: 260px; }
  body.prometeo-page-azienda .vc_row.vc_row-o-content-middle .vc_col-sm-6:last-child .wpb_wrapper {
    min-height: auto;
    padding: 40px 24px;
  }
  body.prometeo-page-azienda .vc_row.vc_row-o-content-middle p.quote-body { font-size: 24px; }
  body.prometeo-page-azienda .vc_row.vc_row-o-content-middle p.quote-body .big { font-size: 32px; }
  body.prometeo-page-azienda .vc_row.vc_row-o-content-middle p.quote-body .small-caps { font-size: 24px; }
  body.prometeo-page-azienda .vc_row:not(.vc_row-flex) .wpb_wrapper > .wpb_text_column { padding: 18px; }
  body.prometeo-page-azienda .vc_row.vc_row-o-content-top { display: block; padding: 30px 0; }
  body.prometeo-page-azienda .vc_row.vc_row-o-content-top .wpb_wrapper { padding: 0 18px; margin-bottom: 26px; }
}

/* =========================================================================
   PAGE: SOLUZIONI
   ========================================================================= */
.prometeo-uv-banner {
  position: relative;
  height: 180px;
  background: linear-gradient(180deg, #2a1b6c 0%, #0a0a3a 100%);
  overflow: hidden;
}
.prometeo-uv-banner .ray {
  position: absolute;
  top: 0; bottom: 0;
  width: 8px;
  filter: blur(1px);
}
.prometeo-uv-banner .r1 { left: 12%; background: linear-gradient(180deg, transparent, rgba(255,100,220,.7), transparent); }
.prometeo-uv-banner .r2 { left: 22%; background: linear-gradient(180deg, transparent, rgba(120,180,255,.6), transparent); }
.prometeo-uv-banner .r3 { left: 42%; background: linear-gradient(180deg, transparent, rgba(180,100,255,.7), transparent); }
.prometeo-uv-banner .r4 { left: 60%; background: linear-gradient(180deg, transparent, rgba(100,200,255,.6), transparent); }
.prometeo-uv-banner .r5 { left: 76%; background: linear-gradient(180deg, transparent, rgba(220,140,255,.7), transparent); }
.prometeo-uv-banner .r6 { left: 88%; background: linear-gradient(180deg, transparent, rgba(160,210,255,.55), transparent); }
.prometeo-bullet {
  margin: 18px 0;
  padding-left: 26px;
  position: relative;
}
.prometeo-bullet::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--p-teal);
  border-radius: 3px;
  transform: rotate(45deg);
}
.prometeo-bullet h4 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 16px;
  color: var(--p-teal-dark);
  font-weight: 700;
  margin: 0 0 8px 0;
}
.prometeo-bullet p { margin: 0 0 6px 0; font-size: 14px; line-height: 1.65; color: #333; }
.prometeo-checklist { list-style: none; padding-left: 0; margin: 6px 0; }
.prometeo-checklist li {
  position: relative; padding-left: 22px;
  font-size: 14px; line-height: 1.7; color: #333;
}
.prometeo-checklist li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0;
  color: var(--p-teal); font-weight: 700;
}
.prometeo-row-2 {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  margin: 30px 0;
}
.prometeo-quote-block {
  position: relative;
  background: #f5f7fa;
  border-left: 3px solid var(--p-teal);
  padding: 22px 26px;
}
.prometeo-quote-block .qmk {
  font-family: Georgia, serif;
  color: var(--p-teal);
  font-size: 38px;
  line-height: 0;
  position: absolute;
}
.prometeo-quote-block .qmk.open { top: 18px; left: 10px; }
.prometeo-quote-block .qmk.close { bottom: 4px; right: 14px; }
.prometeo-quote-block p { margin: 0; font-size: 13px; line-height: 1.7; color: #444; padding: 6px 8px; }
.prometeo-test-box {
  background: #e4eff1;
  padding: 22px 26px;
}
.prometeo-test-box h4 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 18px;
  color: var(--p-teal-dark);
  font-weight: 700;
  margin: 0 0 14px 0;
}
.test-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.test-col h5 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 13px;
  color: var(--p-teal-dark);
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.test-col ul { list-style: none; padding-left: 0; margin: 0; font-size: 12px; line-height: 1.55; color: #555; }
.test-col ul li { margin: 0 0 4px 0; padding-left: 12px; position: relative; }
.test-col ul li::before {
  content: '\2022';
  position: absolute; left: 0; top: 0;
  color: var(--p-teal-dark);
}
.prometeo-patogeni-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  margin: 10px 0 0 0;
}
.prometeo-patogeni-cards .card {
  position: relative;
  min-height: 360px;
  color: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.prometeo-patogeni-cards .card-img {
  height: 170px;
  background-size: cover; background-position: center;
}
.prometeo-patogeni-cards .card-c1 { background: #5fa450; }
.prometeo-patogeni-cards .card-c1 .card-img { background: linear-gradient(135deg, #b6c98b 0%, #5d8f48 100%); }
.prometeo-patogeni-cards .card-c2 { background: #889a4d; }
.prometeo-patogeni-cards .card-c2 .card-img { background: linear-gradient(135deg, #c9bf7e 0%, #8d8542 100%); }
.prometeo-patogeni-cards .card-c3 { background: #3a6e3a; }
.prometeo-patogeni-cards .card-c3 .card-img { background: linear-gradient(135deg, #647e5b 0%, #2f4d2a 100%); }
.prometeo-patogeni-cards .card-c4 { background: #9bbf7a; }
.prometeo-patogeni-cards .card-c4 .card-img { background: linear-gradient(135deg, #bcd49a 0%, #79a25c 100%); }
.prometeo-patogeni-cards .card-body { padding: 18px 22px 24px 22px; flex: 1; }
.prometeo-patogeni-cards .card-body h5 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 8px 0;
}
.prometeo-patogeni-cards .card-body p {
  font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.95); margin: 0;
}
.prometeo-app-list { list-style: none; padding-left: 0; margin: 6px 0 30px 0; }
.prometeo-app-list li {
  position: relative; padding-left: 18px;
  font-size: 15px; line-height: 1.8; color: #333;
}
.prometeo-app-list li::before {
  content: '\2022';
  position: absolute; left: 0; top: 0;
  color: var(--p-teal); font-weight: 700;
}
.prometeo-clean-title {
  background: linear-gradient(90deg, var(--p-teal) 0%, var(--p-navy) 100%);
  padding: 16px 40px;
}
.prometeo-clean-title h3 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1.5px;
  margin: 0;
}
.prometeo-clean-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 40px;
}
.who-box {
  background: #e8edf1;
  padding: 22px 26px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-navy);
}
.who-box p { margin: 0 0 12px 0; }
.who-box .who-logo svg { width: 100%; max-width: 200px; height: auto; }
.who-box .who-meta { font-size: 11px; color: #555; margin-top: 8px; }
.who-box .who-meta a { color: var(--p-teal-dark); }
.clean-text p { font-size: 15px; line-height: 1.7; color: #333; margin: 0 0 16px 0; }
.prometeo-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 360px;
  margin-top: 16px;
}
.prometeo-icons-grid .ico-app {
  display: block;
  height: 60px;
  border-radius: 50%;
  background: #e0e8d8 radial-gradient(circle at 30% 30%, #d8e6c5 0%, #b8c79a 100%);
  position: relative;
}
.prometeo-icons-grid .ico-app::after {
  content: ''; position: absolute; inset: 18px;
  background: var(--p-teal-dark); opacity: .3; border-radius: 4px;
}
.prometeo-clean-hero {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.3) 100%),
    linear-gradient(135deg, #c2b388 0%, #8e9f6a 100%);
  overflow: hidden;
}
.prometeo-clean-hero .overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 70%, rgba(255,240,200,0.4) 0%, transparent 60%);
}

/* =========================================================================
   PAGE: TRATTAMENTO ARIA
   ========================================================================= */
.prometeo-air-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  margin: 20px 0;
}
.prometeo-air-grid p { font-size: 14px; line-height: 1.7; color: #333; margin: 0 0 14px 0; }
.prometeo-air-device {
  background: #f5f7fa;
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}
.prometeo-air-device svg { width: 100%; max-width: 320px; height: auto; }
.prometeo-petri-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 720px;
  margin: 30px auto;
}
.petri { text-align: left; }
.petri-cap {
  font-size: 12px; color: var(--p-teal); margin: 0 0 8px 0;
}
.petri-dish {
  position: relative;
  display: flex; align-items: center; gap: 20px;
}
.petri-dish .letter {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--p-navy);
}
.petri-dish .dish {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid #999;
  position: relative;
  flex-shrink: 0;
}
.petri-dish .dish-dirty {
  background:
    radial-gradient(circle at 30% 30%, #3a4a2e 4px, transparent 5px),
    radial-gradient(circle at 60% 50%, #3a4a2e 3px, transparent 4px),
    radial-gradient(circle at 40% 70%, #3a4a2e 5px, transparent 6px),
    radial-gradient(circle at 70% 20%, #3a4a2e 3px, transparent 4px),
    radial-gradient(circle at 80% 75%, #3a4a2e 4px, transparent 5px),
    radial-gradient(circle at 20% 80%, #3a4a2e 3px, transparent 4px),
    #a3b896;
}
.petri-dish .dish-clean {
  background: radial-gradient(circle at 35% 30%, #f5f7fa 0%, #c0c8cf 100%);
}
.petri-note { font-size: 12px; color: #555; margin-top: 8px; }
.prometeo-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 20px 0 30px 0;
}
.prometeo-benefits .b-col {
  padding: 10px 0;
}
.prometeo-benefits .b-bar {
  display: block;
  height: 4px;
  margin-bottom: 14px;
}
.prometeo-benefits .b-air-1 .b-bar { background: #5fa450; }
.prometeo-benefits .b-air-2 .b-bar { background: #1eb0b8; }
.prometeo-benefits .b-air-3 .b-bar { background: #d3d6db; }
.prometeo-benefits .b-air-4 .b-bar { background: #6f7e8a; }
.prometeo-benefits .b-col h5 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 15px;
  color: var(--p-navy);
  font-weight: 700;
  margin: 0 0 8px 0;
}
.prometeo-benefits .b-col p { font-size: 13px; color: #444; line-height: 1.55; margin: 0; }
.prometeo-apply-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 140px;
}
.prometeo-apply-strip .ap { background-size: cover; background-position: center; }
.prometeo-apply-strip .ap-1 { background: linear-gradient(135deg, #b5b8be 0%, #4a525d 100%); }
.prometeo-apply-strip .ap-2 { background: linear-gradient(135deg, #6a8aa4 0%, #2c4760 100%); }
.prometeo-apply-strip .ap-3 { background: linear-gradient(135deg, #8fa476 0%, #4c5b3d 100%); }
.prometeo-apply-strip .ap-4 { background: linear-gradient(135deg, #6e8a55 0%, #2d3d22 100%); }

/* =========================================================================
   PAGE: IRRAGGIAMENTO CONTROLLATO (Quiver)
   ========================================================================= */
.prometeo-vine-hero {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255,200,140,.3) 0%, rgba(50,80,40,.4) 100%),
    linear-gradient(135deg, #a78a4a 0%, #4f6b3d 100%);
  margin: 20px 0;
}
.prometeo-vine-hero .vine-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(0,40,0,.15) 30px 32px);
}
.prometeo-impact-list { list-style: none; padding-left: 0; margin: 0 0 20px 0; }
.prometeo-impact-list li {
  font-size: 14px; line-height: 1.8; color: #333; margin-bottom: 4px;
}
.prometeo-impact-list li strong { color: var(--p-navy); font-weight: 700; }
.prometeo-impact-list li em { font-style: italic; color: #555; }
.prometeo-quiver-bars { margin: 20px 0 30px 0; }
.prometeo-quiver-bars .qb {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 16px 0;
}
.prometeo-quiver-bars .qb-bar {
  width: 50px; height: 50px;
  display: block;
}
.prometeo-quiver-bars .qb-1 .qb-bar { background: #5fa450; }
.prometeo-quiver-bars .qb-2 .qb-bar { background: #1eb0b8; }
.prometeo-quiver-bars .qb-3 .qb-bar { background: #8a9c5d; }
.prometeo-quiver-bars .qb-4 .qb-bar { background: #4d5fa3; }
.prometeo-quiver-bars .qb-5 .qb-bar { background: #364e8a; }
.prometeo-quiver-bars .qb-text h5 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 14px;
  color: var(--p-navy);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}
.prometeo-quiver-bars .qb-text p { font-size: 13px; color: #444; line-height: 1.5; margin: 0; }
.prometeo-apply-strip .ap-q1 { background: linear-gradient(135deg, #d6a55b 0%, #6f4f25 100%); grid-column: span 2; }
.prometeo-apply-strip .ap-q2 { background: linear-gradient(135deg, #a8c870 0%, #4a6a30 100%); }
.prometeo-apply-strip .ap-q3 { background: linear-gradient(135deg, #c2884a 0%, #5e3f1f 100%); }

/* =========================================================================
   PAGE: CERTIFICAZIONI
   ========================================================================= */
.prometeo-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.cert-card {
  background: #f5f7fa;
  border-top: 4px solid var(--p-teal);
  padding: 24px 22px;
  text-align: center;
}
.cert-card .cert-icon {
  display: inline-flex;
  width: 60px; height: 60px;
  align-items: center; justify-content: center;
  background: var(--p-navy);
  color: #fff;
  border-radius: 50%;
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.cert-card h5 {
  font-family: 'GothamBook', 'Univers LT Std', sans-serif;
  font-size: 15px;
  color: var(--p-navy);
  font-weight: 700;
  margin: 0 0 8px 0;
}
.cert-card p { font-size: 13px; color: #444; line-height: 1.55; margin: 0; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 900px) {
  .prometeo-topbar { padding: 8px 18px; }
  .prometeo-menubar {
    text-align: left;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .prometeo-menu-toggle { display: inline-flex; }
  .prometeo-menubar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--p-teal) 0%, var(--p-teal-light) 100%);
    flex-direction: column;
    padding: 8px 18px 16px 18px;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    border-top: 1px solid rgba(255,255,255,0.25);
  }
  .prometeo-menubar.is-open nav { display: flex; }
  .prometeo-menubar nav a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    text-align: left;
    font-size: 13px;
  }
  .prometeo-menubar nav a:last-child { border-bottom: 0; }
  .prometeo-menubar nav a.active {
    border-bottom: 1px solid rgba(255,255,255,0.18);
    opacity: 1;
    padding-bottom: 12px;
  }
  .prometeo-brand { flex-direction: column; text-align: center; padding: 22px 18px; }
  .prometeo-claim { text-align: center; }
  .prometeo-claim h1 { font-size: 24px; }
  .prometeo-quote-card { position: static; max-width: 100%; margin: 30px auto 0 auto; }
  .prometeo-hero { min-height: auto; padding-bottom: 40px; }
  .prometeo-hero-content .placeholder { font-size: 22px; }
  .prometeo-community { padding: 50px 18px; }
  .prometeo-community h2 { font-size: 22px; }
  .prometeo-footer { padding: 40px 18px 20px 18px; }
  .prometeo-page-inner { padding: 24px 18px; }
  .prometeo-page-title { font-size: 26px; }
  .prometeo-story-hero { grid-template-columns: 1fr; padding: 20px 18px 0 18px; }
  .prometeo-story-hero .story-quote p { font-size: 22px; }
  .prometeo-story-text { padding: 18px; }
  .prometeo-vm { grid-template-columns: 1fr; gap: 30px; padding: 10px 18px 30px 18px; }
  .prometeo-row-2 { grid-template-columns: 1fr; }
  .test-cols { grid-template-columns: 1fr; }
  .prometeo-patogeni-cards { grid-template-columns: 1fr 1fr; }
  .prometeo-air-grid { grid-template-columns: 1fr; gap: 18px; }
  .prometeo-petri-row { grid-template-columns: 1fr; gap: 22px; }
  .prometeo-benefits { grid-template-columns: 1fr 1fr; }
  .prometeo-clean-block { grid-template-columns: 1fr; padding: 22px 18px; }
  .prometeo-cert-grid { grid-template-columns: 1fr 1fr; }
  .prometeo-apply-strip { grid-template-columns: 1fr 1fr; }
}

.prometeo-community{
  margin-top:0px !important;
}

.prometeo-bullet h4 {
    line-height: 28px !important;
}

.card-body > h5{
      font-weight: bold;
    font-size: 23px;
}

.card{
  padding-top: 24px !important;
}

.prometeo-page {
    padding: 0 0 0px 0;
}

.who-logo{
  padding-top: 33px !important;
}

.who-box .who-meta{
line-height: 18px !important;
}


#prometeo-landing-root > main > div > section.vc_row.wpb_row.vc_row-fluid.vc_custom_1782126167254.pofo-stretch-content.vc_row-no-padding.vc_row-o-content-middle.vc_row-flex > div > div > div > div > div > h3{
  font-size: 50px;
  line-height: 51px;
}



#prometeo-landing-root > div.prometeo-footer > div.row > div:nth-child(4) > span:nth-child(2) > a
{
  color: #fff !important;
}

#prometeo-landing-root > div.prometeo-footer > div.row > div.col.footer-logo > img{
  width: 300px;
}





body.prometeo-landing-body p {
    font-size: 22px;
  }

.b-air-1 > h5{
font-weight: bold;
margin-bottom: 10px;
    padding-top: 10px;
    font-size: 27px;
}

.b-air-2 > h5{
font-weight: bold;
margin-bottom: 10px;
    padding-top: 10px;
    font-size: 27px;
}


.b-air-3 > h5{
font-weight: bold;
margin-bottom: 10px;
    padding-top: 10px;
    font-size: 27px;
}


.b-air-4 > h5{
font-weight: bold;
margin-bottom: 10px;
    padding-top: 10px;
    font-size: 27px;
}


.prometeo-why-title {
    font-family: 'GothamBook', 'Univers LT Std', sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--p-teal);
    margin: 40px 0 0px 0;
}

.prometeo-foot-note {

    margin: 0px 0;
}

.prometeo-callout {

    font-size: 18px;

}

.prometeo-section-head h2 {
    font-family: 'Univers Condensed', 'GothamMedium', sans-serif;
    font-size: 59px;
  }

  .prometeo-product-title strong {
    font-family: 'GothamBold', sans-serif;
    font-weight: bold;
    color: #293582;
}

.prometeo-product-title {
    font-family: 'Univers Condensed', 'GothamBook', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #293582;
    margin: 35px 0 4px 0;
    letter-spacing: 1px;
}

.prometeo-subtitle {
    font-family: 'GothamBook', 'Univers LT Std', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #293582;
    margin: 24px 0 14px 0;
}

.prometeo-impact-list > li{
  font-size: 20px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #013881;
}

.wpcf7 input[type="submit"] {
    background-color: #013881 !important;
}

@media (max-width: 768px) {


.promm{
padding-top: 400px !important;
}

p{
  padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .prometeo-quote-block{
    margin-bottom: 38px !important;
  }

  .prometeo-why-title {

    font-size: 36px !important;
    line-height: 40px !important;
  }
.prometeo-section-head h2 {
    font-family: 'Univers Condensed', 'GothamMedium', sans-serif;
    font-size: 32px !important;
    text-align: center !important;

  }

  #prometeo-landing-root > main > div > section:nth-child(5) > div > div > div > div > div > div.uvc-heading{
            padding: 0 0 14px 0px !important;
  }

}
