/*
Theme Name: Viggo OS
Author: Monkey Sundae
Description: Tema institucional da VIGGO focado exclusivamente na Escola de Cuidadores Premium.
Version: 3.7
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --c-offwhite: #F9F8F6;
    --c-burgundy: #5D0E18;
    --c-gold: #BC9E6B;
    --c-dark: #1A1A1A;
    --c-gray-soft: #E5E0DD;
    --f-serif: 'Cormorant Garamond', serif;
    --f-sans: 'Inter', sans-serif;
    --container: 1200px;
    
    /* Altura fixa do Header */
    --header-height: 70px; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; /* Previne rolagem lateral no site todo */ }
body {
    background-color: var(--c-offwhite);
    color: var(--c-dark);
    font-family: var(--f-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TIPOGRAFIA */
h1, h2, h3, h4 { font-family: var(--f-serif); color: var(--c-burgundy); line-height: 1.1; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; letter-spacing: -0.02em; font-weight: 400; }
h2 { font-size: 2.8rem; font-weight: 300; font-style: italic; }
h3 { font-size: 1.5rem; color: var(--c-dark); font-weight: 500; }
p { margin-bottom: 1.5rem; color: #555; max-width: 60ch; font-weight: 300; }
.micro-title {
    font-family: var(--f-sans); text-transform: uppercase; letter-spacing: 0.2em;
    font-size: 0.7rem; color: var(--c-gold); font-weight: 600; margin-bottom: 1rem; display: block;
}

/* HEADER (TRAVADO) */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; 
    height: var(--header-height);
    background: rgba(249, 248, 246, 0.98);
    border-bottom: 1px solid rgba(93, 14, 24, 0.05); 
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    
    /* AQUI ESTÁ O SEGREDO PARA MATAR AS BARRAS: */
    display: flex; 
    align-items: center;
    overflow: hidden; /* Corta qualquer excesso */
}

.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    height: 100%;
}

/* LOGO BOX */
.brand { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    height: 100%; 
    flex-shrink: 0; /* Impede que o logo seja esmagado ou empurre coisas */
    max-width: 250px; /* Limite lateral para não invadir o menu */
    overflow: hidden;
}

/* IMAGEM DO LOGO (Reset total de margens) */
.site-header img, 
.custom-logo-link img, 
.brand img,
.custom-logo {
    max-height: 38px !important; /* Altura ideal */
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    object-fit: contain;
}

/* Fallback Texto */
.brand-icon {
    width: 32px; height: 32px;
    background: var(--c-gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; margin-right: 10px;
    font-family: var(--f-serif); font-style: italic; font-size: 1rem;
}
.brand-text { font-family: var(--f-serif); font-size: 1.6rem; color: var(--c-burgundy); font-weight: 600; }

/* MENU */
.nav-menu ul { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.nav-menu a { 
    text-decoration: none; color: var(--c-dark); font-size: 0.7rem; 
    text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; 
    transition: 0.3s;
}
.nav-menu a:hover { color: var(--c-burgundy); }

/* HERO */
#hero {
    padding-top: 150px; 
    padding-bottom: 80px; 
    min-height: 85vh;
    display: flex; align-items: center;
    background: linear-gradient(to right, var(--c-offwhite) 50%, #fff 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-img-wrap{
    width: 100%;
    height: 550px;
    background: #fff;

    /* Premium: remove “bars” (block shadow) and add soft depth */
    box-shadow: 0 22px 60px rgba(0,0,0,0.10);
    border-radius: 26px;
    border: 1px solid rgba(93, 14, 24, 0.06);
    overflow: hidden;
}
.hero-img-wrap img{
    width: 100%;
    height: 100%;

    /* For LOGO: fit without cropping */
    object-fit: contain;

    /* Premium breathing room */
    padding: 36px;

    display: block;
}

/* DEMAIS SEÇÕES */
.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }
section { padding: 100px 0; }

.btn-boutique {
    display: inline-block; padding: 14px 32px; border: 1px solid var(--c-burgundy);
    text-decoration: none; text-transform: uppercase; font-size: 0.7rem;
    letter-spacing: 0.2em; font-weight: 600; transition: 0.4s; color: var(--c-burgundy);
}
.btn-boutique.filled { background: var(--c-burgundy); color: #fff; }
.btn-boutique:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.editorial-card { background: #fff; padding: 40px; border: 1px solid #eee; transition: 0.4s; position: relative; }
.editorial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.matricula-box { background: #fff; padding: 40px; border: 1px solid #eee; }

#metodologia { background-color: var(--c-burgundy); color: #fff; }
#metodologia h2, #metodologia p, #metodologia .micro-title { color: #fff; }
#metodologia .btn-boutique { border-color: #fff; color: #fff; }

footer { padding: 60px 0; background: #111; color: #777; font-size: 0.8rem; }

@media (max-width: 768px) {
    .site-header { height: auto; padding: 15px 0; }
    .header-flex { flex-direction: column; gap: 15px; }
    .nav-menu ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .hero-grid, .split-section { grid-template-columns: 1fr; gap: 40px; }
    .hero-img-wrap{
    width: 100%;
    height: 550px;
    background: #fff;

    /* Premium: remove “bars” (block shadow) and add soft depth */
    box-shadow: 0 22px 60px rgba(0,0,0,0.10);
    border-radius: 26px;
    border: 1px solid rgba(93, 14, 24, 0.06);
    overflow: hidden;
}
    h1 { font-size: 2.8rem; }
}

/* === FIX HERO IMG (responsive) === */

@media (max-width: 768px){
  .hero-img-wrap{ height: 360px; border-radius: 20px; }
  .hero-img-wrap img{ padding: 22px; }
}


/* Anchor offset for sticky header */
section[id]{ scroll-margin-top: calc(var(--header-height) + 24px); }


/* === FIX 2.0.1: Hero logo size (less dominant, more premium) === */
/* Center content and limit logo scale so it doesn't feel oversized */
.hero-img-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-img-wrap img{
  width:auto;
  height:auto;
  max-width: 78%;
  max-height: 78%;
  padding: 0;            /* padding moved to container for consistent frame */
  margin: 0 auto;
}

/* Keep premium breathing room inside the frame */
.hero-img-wrap{
  padding: 42px;
}

/* Mobile: slightly larger relative scale (screen is smaller) */
@media (max-width: 768px){
  .hero-img-wrap{ padding: 24px; }
  .hero-img-wrap img{ max-width: 86%; max-height: 86%; }
}


/* === FIX 2.0.2: Hero bubble more Apple-like (smaller, lighter, cleaner) === */
/* Make the hero image "card" feel like Apple: smaller, lighter shadow, subtle border */
.hero-img-wrap{
  /* smaller frame */
  height: 480px;
  max-width: 560px;
  margin-left: auto;

  /* cleaner surface */
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;

  /* subtle shadow (no heavy bubble) */
  box-shadow: 0 12px 34px rgba(0,0,0,0.10);
}

/* More "quiet" breathing room */
.hero-img-wrap{ padding: 30px; }

/* Keep logo restrained */
.hero-img-wrap img{
  max-width: 74%;
  max-height: 74%;
}

/* Responsive */
@media (max-width: 1024px){
  .hero-img-wrap{
    max-width: 520px;
    height: 440px;
  }
}
@media (max-width: 768px){
  .hero-img-wrap{
    max-width: 100%;
    height: 340px;
    border-radius: 18px;
    padding: 22px;
  }
  .hero-img-wrap img{ max-width: 84%; max-height: 84%; }
}


/* === FIX 2.0.3: Apple-like hero frame (enforced) === */
/* Force the hero frame to be quieter and smaller (overrides any earlier rules) */
#hero .hero-img-wrap{
  height: 460px !important;
  max-width: 520px !important;
  margin-left: auto !important;
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(0,0,0,0.055) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.095) !important;
  padding: 26px !important;
}

/* Keep logo restrained */
#hero .hero-img-wrap img{
  max-width: 94% !important;
  max-height: 94% !important;
}

@media (max-width: 1024px){
  #hero .hero-img-wrap{
    height: 420px !important;
    max-width: 480px !important;
  }
}
@media (max-width: 768px){
  #hero .hero-img-wrap{
    height: 330px !important;
    max-width: 100% !important;
    border-radius: 18px !important;
    padding: 20px !important;
  }
  #hero .hero-img-wrap img{
    max-width: 96% !important;
    max-height: 96% !important;
  }
}


/* === FIX 2.0.4: Force hero logo + frame sizing (Apple-like, no giant bubble) === */
/* Desktop/tablet */
#hero .hero-img-wrap{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  /* smaller frame, responsive */
  height: clamp(320px, 36vw, 440px) !important;
  max-width: min(520px, 44vw) !important;
  width: 100% !important;

  /* Apple-like surface */
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.09) !important;

  /* breathing room */
  padding: 22px !important;

  /* align right column nicely */
  margin-left: auto !important;
  overflow: hidden !important;
}

/* The logo itself: never stretch, never cut, never add extra padding */
#hero .hero-img-wrap img{
  width: auto !important;
  height: auto !important;
  max-width: 96% !important;
  max-height: 96% !important;

  object-fit: contain !important;
  object-position: center center !important;

  padding: 0 !important;
  margin: 0 auto !important;
  display: block !important;
}

/* Mobile */
@media (max-width: 768px){
  #hero .hero-img-wrap{
    max-width: 100% !important;
    height: 320px !important;
    border-radius: 16px !important;
    padding: 18px !important;
    margin-left: 0 !important;
  }
  #hero .hero-img-wrap img{
    max-width: 98% !important;
    max-height: 98% !important;
  }
}

/* Ultra-small */
@media (max-width: 380px){
  #hero .hero-img-wrap{ height: 280px !important; }
}


/* === FIX 2.0.5: Consistent anchor landing (no different 'forehead') === */
:root{
  /* One single source of truth for sticky header anchor offset */
  --anchor-offset: calc(var(--header-height) + 18px);
  --section-pad-y: 84px;
}

/* More reliable than per-section only: affects ALL #anchor jumps */
html{ scroll-padding-top: var(--anchor-offset); }

/* Keep per-section for browsers that honor scroll-margin better */
section[id]{ scroll-margin-top: var(--anchor-offset); }

/* Standardize vertical rhythm across sections */
section{ padding: var(--section-pad-y) 0; }

/* Remove accidental top gaps from the first text element in a section */
section .container > :first-child{ margin-top: 0; }

/* (Optional) tighten headings a touch for an Apple-like rhythm */
h1, h2{ margin-top: 0; }


/* === FIX 2.0.6: Tune anchor + section padding (match desired top rhythm) === */
:root{
  /* Smaller, more elegant landing gap */
  --anchor-offset: calc(var(--header-height) + 8px) !important;

  /* Reduce 'forehead' across sections */
  --section-pad-y: 72px !important;
}

/* Ensure the global anchor offset is applied */
html{ scroll-padding-top: var(--anchor-offset) !important; }
section[id]{ scroll-margin-top: var(--anchor-offset) !important; }

/* Keep vertical rhythm consistent but tighter (Apple-like) */
section{ padding: var(--section-pad-y) 0 !important; }






/* === FIX 2.0.9: Anchors EVEN higher (user preference) === */
:root{
  /* Even closer to the top. If it ever hides under the header, we can back off by a few px. */
  --anchor-offset: calc(var(--header-height) - 36px) !important;

  /* Tighten sections slightly */
  --section-pad-y: 52px !important;
}

html{ scroll-padding-top: var(--anchor-offset) !important; }
section[id]{ scroll-margin-top: var(--anchor-offset) !important; }
section{ padding: var(--section-pad-y) 0 !important; }


/* === 2.1.0: Hero section moved down a bit (Padrão Ouro) === */


/* === 2.2.0: Unified buttons + course CTA (premium) === */
/* Unified button system (applies to theme + plugin buttons) */
.btn,
a.btn,
button.btn,
.viggo-btn-primary,
.viggo-btn-block{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  min-height: 48px;
}

/* Primary */
.btn-primary,
button.btn-primary,
a.btn-primary,
.viggo-btn-primary{
  background: #5d0e18;
  color: #fff;
  border-color: rgba(93,14,24,0.35);
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
}

/* Secondary (ghost) */
.btn-secondary,
button.btn-secondary,
a.btn-secondary{
  background: rgba(255,255,255,0.60);
  color: #2a0009;
  border-color: rgba(0,0,0,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
}

.btn:hover,
.viggo-btn-primary:hover{
  transform: translateY(-1px);
  opacity: .96;
}

.btn:active,
.viggo-btn-primary:active{
  transform: translateY(0);
}

/* Course info block (replaces the old payment card) */
.viggo-course-info{
  max-width: 560px;
  margin-left: auto;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.viggo-course-lead{
  margin: 0 0 14px 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: .92;
}

.viggo-course-points{
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}

.viggo-course-points li{
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  line-height: 1.4;
  opacity: .92;
}

.viggo-course-points li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  opacity: .75;
}

.viggo-btn-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.viggo-btn-row .btn{
  flex: 1 1 220px;
}

.viggo-course-note{
  margin: 12px 0 0 0;
  font-size: 12px;
  opacity: .68;
}

/* Mobile alignment */
@media (max-width: 768px){
  .viggo-course-info{ margin-left: 0; }
}


/* === 2.3: páginas internas e rodapé operacional === */
.viggo-page-hero{
  padding-top: 150px;
  padding-bottom: 40px;
}

.viggo-page-subtitle{
  font-size: 1.1rem;
  max-width: 760px;
  color: #5b5351;
}

.viggo-page-shell{
  padding-top: 10px;
}

.viggo-prose{
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

.viggo-prose h2,
.viggo-prose h3{
  margin-top: 1.8rem;
}

.viggo-prose ul,
.viggo-prose ol{
  margin: 0 0 1.5rem 1.2rem;
}

.viggo-prose li{
  margin-bottom: .5rem;
  color: #555;
}

.viggo-prose a{
  color: var(--c-burgundy);
}

.viggo-shortcode-warning{
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff7e8;
  border: 1px solid rgba(188,158,107,0.35);
  color: #5d0e18;
}

.viggo-footer-grid{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
}

footer a{
  color: #d9d0cb;
  text-decoration: none;
}

footer a:hover{
  color: #fff;
}

@media (max-width: 768px){
  .viggo-page-hero{
    padding-top: 120px;
    padding-bottom: 24px;
  }
  .viggo-prose{
    padding: 22px;
    border-radius: 18px;
  }
  .viggo-footer-grid{
    flex-direction: column;
  }
}


/* === Viggo OS 2.4: Modal de privacidade === */
body.viggo-modal-open{overflow:hidden;}
.viggo-privacy-modal{position:fixed; inset:0; z-index:10050; display:flex; align-items:center; justify-content:center; padding:24px;}
.viggo-privacy-modal[hidden]{display:none !important;}
.viggo-privacy-modal__backdrop{position:absolute; inset:0; background:rgba(17,17,17,0.58);}
.viggo-privacy-modal__panel{position:relative; z-index:1; width:min(920px, 100%); max-height:min(88vh, 920px); overflow:auto; background:#fff; border-radius:24px; box-shadow:0 24px 70px rgba(0,0,0,0.18); padding:34px 34px 28px; border:1px solid rgba(93,14,24,0.08);}
.viggo-privacy-modal__close{position:absolute; top:14px; right:14px; width:42px; height:42px; border:none; border-radius:50%; background:rgba(93,14,24,0.08); color:var(--c-burgundy); font-size:1.8rem; line-height:1; cursor:pointer;}
.viggo-privacy-modal__close:hover{background:rgba(93,14,24,0.14);}
.viggo-privacy-modal__content p, .viggo-privacy-modal__content li{max-width:none;}
.viggo-privacy-link{cursor:pointer;}
@media (max-width: 768px){
  .viggo-privacy-modal{padding:14px;}
  .viggo-privacy-modal__panel{padding:26px 18px 22px; border-radius:20px; max-height:90vh;}
}


/* === Viggo OS 2.6: refino de conversão e páginas operacionais === */
.viggo-page-callout{
  margin: 1.25rem 0 1.5rem;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(93,14,24,0.05), rgba(188,158,107,0.10));
  border: 1px solid rgba(93,14,24,0.08);
}

.viggo-page-callout p:last-child{
  margin-bottom: 0;
}

.viggo-info-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin: 1.2rem 0 1.8rem;
}

.viggo-info-card{
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(93,14,24,0.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.viggo-info-card strong{
  display:block;
  margin-bottom: 6px;
  color: var(--c-burgundy);
}

.viggo-info-card p{
  margin:0;
  color:#655956;
  max-width:none;
}

.viggo-confirm-actions,
.viggo-inline-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 1.6rem;
}

.viggo-confirm-actions .btn,
.viggo-inline-actions .btn{
  flex: 1 1 220px;
}

.viggo-page-note{
  font-size: 0.95rem;
  color:#6a605d;
}

@media (max-width: 768px){
  .viggo-info-grid{
    grid-template-columns: 1fr;
  }
}


/* === Viggo OS 2.7: correções visuais + contraste de CTA === */
.viggo-prose a.btn-primary,
.viggo-prose .btn.btn-primary,
.viggo-confirm-actions a.btn-primary,
.viggo-inline-actions a.btn-primary{
  color: #fff;
}

.viggo-prose a.btn-secondary,
.viggo-prose .btn.btn-secondary,
.viggo-confirm-actions a.btn-secondary,
.viggo-inline-actions a.btn-secondary{
  color: var(--c-burgundy);
}

#metodologia .btn-primary,
#metodologia a.btn-primary,
#metodologia button.btn-primary{
  background: linear-gradient(135deg, #d5b98f, #bc9e6b);
  color: #2a0009;
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

#metodologia .btn-secondary,
#metodologia a.btn-secondary,
#metodologia button.btn-secondary{
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
}

#metodologia .btn-secondary:hover,
#metodologia a.btn-secondary:hover,
#metodologia button.btn-secondary:hover{
  background: rgba(255,255,255,0.18);
}


.viggo-course-modal{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:24px;}
.viggo-course-modal[hidden]{display:none !important;}
.viggo-course-modal__backdrop{position:absolute;inset:0;background:rgba(15,8,8,.58);backdrop-filter:blur(2px);}
.viggo-course-modal__panel{position:relative;z-index:1;width:min(920px,100%);max-height:min(90vh,960px);overflow:auto;border-radius:28px;background:#f4efea;box-shadow:0 24px 80px rgba(0,0,0,.22);}
.viggo-course-modal__content{padding:28px;}
.viggo-course-modal__close{position:absolute;top:12px;right:12px;width:40px;height:40px;border:0;border-radius:999px;background:#fff;color:#7a0716;font-size:28px;line-height:1;cursor:pointer;box-shadow:0 6px 20px rgba(0,0,0,.12);}
.viggo-payment-entry-card{display:flex;flex-wrap:wrap;gap:20px;align-items:center;justify-content:space-between;padding:28px;border:1px solid rgba(122,7,22,.12);background:#fff;border-radius:28px;box-shadow:0 16px 45px rgba(122,7,22,.08);}
.viggo-payment-entry-card__kicker{display:block;margin-bottom:8px;font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:#b18953;}
.viggo-payment-entry-card h3{margin:0 0 8px;color:#7a0716;}
.viggo-payment-entry-card p{margin:0;max-width:760px;}
.viggo-payment-entry-card__actions .btn{min-width:240px;}
.viggo-payment-entry-card__actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;}
.viggo-payment-entry-card__actions .btn{flex:1 1 220px;}


.viggo-page-shell--payment{padding-top:24px;}
.viggo-page-shell--payment .viggo-prose{max-width:920px;padding:0;background:transparent;border:0;box-shadow:none;}
@media (max-width: 768px){.viggo-page-shell--payment{padding-top:18px;}}

/* Curso (Formação VIGGO Premium): evitar redundância e rolagem no topo */
body.page-slug-formacao-viggo-premium .viggo-page-hero{display:none !important;}
