/*
Theme Name: HealthFlex Child
Theme URI: http://plethorathemes.com/healthflex/
Description: Child theme for Health Flex (Plethora Themes).
Author: Plethora Themes
Author URI: http://plethorathemes.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout, theme-options, translation-ready
Template: healthflex
*/

/* Checkout vars */
:root{
  --jdc-accent:#772c84;
  --jdc-footer-text:#fff;
}

/* Checkout header = footer bg */
:is(
  body.woocommerce-cart,
  body.woocommerce-checkout,
  body.woocommerce-order-received,
  body.jdc-cart,
  body.jdc-checkout,
  body.jdc-confirmation
) .header .mainbar{
  background:var(--jdc-footer-bg) !important;
  border:0 !important;
  box-shadow:none !important;
  color:var(--jdc-footer-text) !important;
}

/* Steps (base) */
:is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
.menu_container ul.main_menu{
  display:flex;
  justify-content:center;
  gap:34px;
  color:var(--jdc-footer-text) !important;
}

:is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
.menu_container ul.main_menu > li{
  position:relative;
  cursor:not-allowed !important;
  user-select:none;
}

:is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
.menu_container ul.main_menu > li > a{
  pointer-events:none;
  background:transparent !important;
  text-decoration:none !important;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:12px 0 !important;
  font-weight:600;
  position:relative;
  color:inherit !important;
  opacity:.55;
}

/* underline */
:is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
.menu_container ul.main_menu > li > a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:currentColor;
  opacity:.25;
}

/* current step */
body.woocommerce-cart .menu_container ul.main_menu > li:nth-child(1) > a,
body.woocommerce-checkout .menu_container ul.main_menu > li:nth-child(2) > a,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(3) > a{
  color:var(--jdc-accent) !important;
  opacity:1;
  font-weight:700;
}

body.woocommerce-cart .menu_container ul.main_menu > li:nth-child(1) > a:after,
body.woocommerce-checkout .menu_container ul.main_menu > li:nth-child(2) > a:after,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(3) > a:after{
  opacity:1;
}

/* done steps (tick) */
body.woocommerce-checkout .menu_container ul.main_menu > li:nth-child(1) > a,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(1) > a,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(2) > a{
  padding-left:24px !important;
  opacity:.75;
  color:var(--jdc-accent) !important;
}

body.woocommerce-checkout .menu_container ul.main_menu > li:nth-child(1) > a:before,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(1) > a:before,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(2) > a:before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  border-radius:50%;
  background:var(--jdc-accent);
}

body.woocommerce-checkout .menu_container ul.main_menu > li:nth-child(1):after,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(1):after,
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(2):after{
  content:"";
  position:absolute;
  left:5px;
  top:50%;
  width:5px;
  height:9px;
  transform:translateY(-55%) rotate(45deg);
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  pointer-events:none;
}

/* confirmation: tick on step 3 */
body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(3) > a{
  padding-left:24px !important;
}

body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(3) > a:before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  border-radius:50%;
  background:var(--jdc-accent);
}

body.woocommerce-order-received .menu_container ul.main_menu > li:nth-child(3):after{
  content:"";
  position:absolute;
  left:5px;
  top:50%;
  width:5px;
  height:9px;
  transform:translateY(-55%) rotate(45deg);
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  pointer-events:none;
}

/* logo clickable */
:is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
.logo a.brand{
  cursor:pointer !important;
  pointer-events:auto !important;
  user-select:auto;
}

/* short pages: footer to bottom */
html,
body{
  height:100%;
}

body > .overflow_wrapper{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

body > .overflow_wrapper > .main{
  flex:1 0 auto;
  min-height:0 !important;
  height:auto !important;
  max-height:none !important;
}

body > .overflow_wrapper > .copyright{
  margin-top:auto;
}

body > a#return-to-top,
body > #return-to-top{
  position:fixed !important;
}

/* Mobile / Tablet */
@media (max-width: 991px){

  /* menu always visible + remove theme UI */
  :is(
    body.woocommerce-cart,
    body.woocommerce-checkout,
    body.woocommerce-order-received,
    body.jdc-cart,
    body.jdc-checkout,
    body.jdc-confirmation
  ) .menu_container{
    position:static !important;
    width:auto !important;
    height:auto !important;
    transform:none !important;
    left:auto !important;
    top:auto !important;
    opacity:1 !important;
    visibility:visible !important;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
    border:0 !important;
    margin-top:6px !important;
    padding-bottom:8px !important;
  }

  :is(
    body.woocommerce-cart,
    body.woocommerce-checkout,
    body.woocommerce-order-received,
    body.jdc-cart,
    body.jdc-checkout,
    body.jdc-confirmation
  ) .mobile_collapser,
  :is(
    body.woocommerce-cart,
    body.woocommerce-checkout,
    body.woocommerce-order-received,
    body.jdc-cart,
    body.jdc-checkout,
    body.jdc-confirmation
  ) .menu_container .close_menu{
    display:none !important;
  }

  /* center logo */
  :is(
    body.woocommerce-cart,
    body.woocommerce-checkout,
    body.woocommerce-order-received,
    body.jdc-cart,
    body.jdc-checkout,
    body.jdc-confirmation
  ) .header .mainbar .logo{
    float:none !important;
    display:block !important;
    text-align:center !important;
    margin:10px auto 12px !important;
    padding:0 !important;
  }

  :is(
    body.woocommerce-cart,
    body.woocommerce-checkout,
    body.woocommerce-order-received,
    body.jdc-cart,
    body.jdc-checkout,
    body.jdc-confirmation
  ) .header .mainbar .logo a{
    display:inline-block !important;
  }

  /* remove theme borders/lines */
  :is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
  .menu_container ul.main_menu,
  :is(body.woocommerce-cart, body.woocommerce-checkout, body.woocommerce-order-received)
  .menu_container ul.main_menu > li{
    border:0 !important;
  }

  /* steps row (no scroll) */
  #menu-checkout-menu{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    width:100% !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
    white-space:nowrap;
    gap:clamp(8px, 3vw, 16px) !important;
    padding:10px clamp(6px, 3vw, 10px) !important;
    margin:0 !important;
  }

  #menu-checkout-menu > li{
    display:inline-flex !important;
    margin:0 !important;
  }

  #menu-checkout-menu > li > a{
    display:inline-block !important;
    padding:8px 10px !important;
    font-size:clamp(11px, 2.6vw, 13px) !important;
    letter-spacing:clamp(0px, .12vw, .3px) !important;
    line-height:1.1 !important;
  }

  /* per-page fit */
  body.woocommerce-checkout #menu-checkout-menu > li:nth-child(1) > a{
    font-size:clamp(10px, 2.3vw, 12px) !important;
    opacity:.85 !important;
  }

  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(1) > a{
    font-size:clamp(10px, 2.2vw, 11px) !important;
    opacity:.75 !important;
  }

  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(2) > a{
    font-size:clamp(10px, 2.3vw, 12px) !important;
    opacity:.82 !important;
  }

  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(3) > a{
    opacity:1 !important;
  }

  /* reserve space for ticks (done steps) */
  body.woocommerce-checkout #menu-checkout-menu > li:nth-child(1) > a,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(1) > a,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(2) > a,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(3) > a{
    padding-left:22px !important;
  }

  body.woocommerce-checkout #menu-checkout-menu > li:nth-child(1) > a:before,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(1) > a:before,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(2) > a:before,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(3) > a:before{
    width:14px !important;
    height:14px !important;
  }

  body.woocommerce-checkout #menu-checkout-menu > li:nth-child(1):after,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(1):after,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(2):after,
  body.woocommerce-order-received #menu-checkout-menu > li:nth-child(3):after{
    left:4px !important;
    width:4px !important;
    height:8px !important;
    border-right:2px solid #fff !important;
    border-bottom:2px solid #fff !important;
  }

  @media (max-width: 420px){
    #menu-checkout-menu{
      gap:10px !important;
    }
  }
}

/* Remover o link "← Todos os Eventos" */
.tribe-events-back,
p.tribe-events-back{
  display:none !important;
}

/* Remover o botão "Adicionar ao calendário" */
.tribe-events-c-subscribe-dropdown,
.tribe-events .tribe-events-c-subscribe-dropdown{
  display:none !important;
}

/* Modal dos bilhetes por cima do header */
.tribe-dialog__wrapper,
.tribe-modal__wrapper--ar{
  position:fixed !important;
  z-index:9999 !important;
}

/* Só baixa o z-index do header quando o modal estiver aberto */
html.tribe-modal-open .header,
body.tribe-modal-open .header,
html.tribe-dialog-open .header,
body.tribe-dialog-open .header,
html.tribe-tickets__modal-open .header,
body.tribe-tickets__modal-open .header,
html.tribe-modal-open .header .mainbar,
body.tribe-modal-open .header .mainbar,
html.tribe-dialog-open .header .mainbar,
body.tribe-dialog-open .header .mainbar,
html.tribe-tickets__modal-open .header .mainbar,
body.tribe-tickets__modal-open .header .mainbar{
  position:relative;
  z-index:9 !important;
}

/* Estado bloqueado */
.tribe-tickets__tickets-item.jdc-locked{
  position: relative;
  opacity: .48;
  filter: grayscale(.35);
}

/* Cursor proibido por cima do bloco bloqueado */
.tribe-tickets__tickets-item.jdc-locked::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: transparent;
  cursor: not-allowed !important;
}

/* Garantir cursor proibido em tudo lá dentro */
.tribe-tickets__tickets-item.jdc-locked,
.tribe-tickets__tickets-item.jdc-locked *{
  cursor: not-allowed !important;
}

/* Mensagem mais discreta */
.jdc-lock-note{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid #e6edf5;
  border-radius: 999px;
  background: #f8fafc;
  color: #7b8798;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
  max-width: 100%;
}

.jdc-lock-note::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8c4d3;
  flex: 0 0 auto;
}

/* Não apagar demasiado a mensagem */
.tribe-tickets__tickets-item.jdc-locked .jdc-lock-note{
  opacity: 1 !important;
  filter: none !important;
}

/* Botões CF7: submit + adicionar autor */
.wpcf7 input.wpcf7-submit,
.cf7-modern .repeater-field-button-add{
  background:#74bbe6 !important;
  color:#fff !important;
  border:0 !important;
  border-radius:999px !important;
  padding:12px 28px !important;
  font-size:14px !important;
  font-weight:700 !important;
  text-transform:uppercase !important;
  letter-spacing:.3px !important;
  line-height:1 !important;
  min-height:48px !important;
  height:auto !important;
  text-decoration:none !important;
  transition:all .2s ease !important;
}

.wpcf7 input.wpcf7-submit{
  display:inline-block !important;
  box-shadow:none !important;
}

.cf7-modern .repeater-field-button-add{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  float:none !important;
  clear:none !important;
  margin:0 !important;
  box-shadow:none !important;
}

.wpcf7 input.wpcf7-submit:hover,
.wpcf7 input.wpcf7-submit:focus,
.cf7-modern .repeater-field-button-add:hover,
.cf7-modern .repeater-field-button-add:focus{
  background:#45aaff !important;
  color:#fff !important;
  transform:translateY(-1px);
}

/* CF7 Modern Styling */
.cf7-modern [class*="col-"]{
  padding-left:10px;
  padding-right:10px;
  margin-bottom:12px;
}

.cf7-modern strong{
  display:block;
  margin:10px 0 2px;
  color:#1f2a44;
  font-size:20px;
  font-weight:700;
  line-height:1.2;
}

.cf7-modern label{
  display:none;
}

.cf7-modern .cf7-inline-title{
  display:block;
  margin-bottom:8px;
  min-height:22px;
  color:#1f2a44;
  font-size:15px;
  font-weight:600;
}

.cf7-modern input[type="text"],
.cf7-modern input[type="email"],
.cf7-modern input[type="tel"],
.cf7-modern input[type="number"],
.cf7-modern input[type="url"],
.cf7-modern input[type="date"],
.cf7-modern select,
.cf7-modern textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border:1px solid #d9dee7;
  border-radius:12px;
  background:#fff;
  color:#1f2a44;
  box-shadow:0 4px 14px rgba(20,35,60,.04);
  box-sizing:border-box;
}

.cf7-modern textarea{
  min-height:180px;
  resize:vertical;
}

.cf7-modern .wpcf7-not-valid-tip{
  margin-top:6px;
  font-size:13px;
}

.cf7-modern .wpcf7-radio,
.cf7-modern .wpcf7-checkbox{
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

/* Função */
.cf7-modern .funcao-inline{
  display:flex;
  gap:12px;
  width:100%;
}

.cf7-modern .funcao-inline .wpcf7-list-item{
  margin:0;
  flex:1 1 0;
}

.cf7-modern .funcao-inline .wpcf7-list-item label{
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  min-height:48px;
  padding:0 18px;
  border:1px solid #d9dee7;
  border-radius:999px;
  background:#fff;
  box-shadow:0 4px 14px rgba(20,35,60,.04);
  box-sizing:border-box;
  cursor:pointer;
  font-weight:600;
  color:#1f2a44;
  transition:all .2s ease;
}

.cf7-modern .funcao-inline .wpcf7-list-item label:hover{
  border-color:#74bbe6;
  box-shadow:0 6px 18px rgba(20,35,60,.08);
}

.cf7-modern .funcao-inline input[type="radio"]{
  appearance:none;
  -webkit-appearance:none;
  width:16px;
  height:16px;
  margin:0;
  border:2px solid #9fb3c8;
  border-radius:50%;
  background:#fff;
  position:relative;
  flex:0 0 auto;
}

.cf7-modern .funcao-inline input[type="radio"]:checked{
  border-color:#74bbe6;
  background:#fff;
}

.cf7-modern .funcao-inline input[type="radio"]:checked::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#74bbe6;
  transform:translate(-50%, -50%);
}

.cf7-modern .funcao-inline .wpcf7-list-item label:has(input[type="radio"]:checked){
  border-color:#74bbe6;
  background:#eef7fc;
  box-shadow:0 0 0 3px rgba(116,187,230,.14);
}

/* Checkbox privacidade */
.cf7-modern .wpcf7-checkbox{
  display:block;
}

.cf7-modern .wpcf7-checkbox .wpcf7-list-item{
  display:block;
  width:100%;
  margin:0;
}

.cf7-modern .wpcf7-checkbox .wpcf7-list-item label{
  display:flex !important;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:52px;
  padding:12px 16px;
  border:1px solid #d9dee7;
  border-radius:12px;
  background:#fff;
  box-shadow:0 4px 14px rgba(20,35,60,.04);
  color:#1f2a44;
  font-weight:600;
  cursor:pointer;
  box-sizing:border-box;
}

.cf7-modern .wpcf7-checkbox input[type="checkbox"]{
  margin:0;
  accent-color:#74bbe6;
  flex:0 0 auto;
}

/* Repeater */
.cf7-modern .repeater-field-footer{
  clear:both !important;
  display:block !important;
  width:100% !important;
  text-align:left !important;
  margin:8px 0 0 !important;
  padding:0 !important;
}

.cf7-modern .repeater-field-footer br{
  display:none !important;
}
/* alinhar o bloco repetidor com o resto do formulário */
.cf7-modern .cf7-repeater-container,
.cf7-modern .cf7-repeater,
.cf7-modern .repeater-field-item,
.cf7-modern .repeater-field-content{
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* garante que os rows dentro do repetidor não criam recuo extra */
.cf7-modern .cf7-repeater-container .row,
.cf7-modern .cf7-repeater .row,
.cf7-modern .repeater-field-content .row{
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cf7-modern .cf7-word-help{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#6b7280;
}

.cf7-modern .cf7-word-help.is-invalid{
  color:#dc2626;
}
.jdc-form-encerrado{
  padding: 24px;
  border: 1px solid #d9dee7;
  border-radius: 12px;
  background: #fff;
  color: #1f2a44;
  box-shadow: 0 4px 14px rgba(20,35,60,.04);
}

.jdc-form-encerrado p{
  margin: 0 0 10px;
}

.jdc-form-encerrado p:last-child{
  margin-bottom: 0;
}
/* Scroll Smooth */
html{
  scroll-behavior: smooth;
}
/* Botões todos formato pill */
.btn,
.btn-primary,
.btn-secondary,
a.btn,
a.btn-primary,
a.btn-secondary,
.wpb_button,
a.wpb_button,
.plethora_button a,
.call_to_action .btn,
.call_to_action a.btn,
a.more,
.more a {
  border-radius: 999px !important;
}
/* FAQS mais modernas */
.vc_toggle.vc_toggle_simple{
  background:#eef2f5 !important;
  border-radius:14px !important;
  margin-bottom:14px !important;
  border:1px solid rgba(31,42,68,.06) !important;
  box-shadow:0 4px 12px rgba(20,35,60,.04) !important;
  transition:all .2s ease !important;
}

.vc_toggle.vc_toggle_simple:hover{
  box-shadow:0 8px 18px rgba(20,35,60,.08) !important;
  transform:translateY(-1px);
}

.vc_toggle.vc_toggle_simple .vc_toggle_title{
  position:relative !important;
  padding:16px 18px 16px 46px !important;
  margin:0 !important;
}

.vc_toggle.vc_toggle_simple .vc_toggle_title h4{
  margin:0 !important;
  padding:0 !important;
  font-size:16px !important;
  line-height:1.45 !important;
  font-weight:700 !important;
}

.vc_toggle.vc_toggle_simple .vc_toggle_icon{
  position:absolute !important;
  left:18px !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  margin:0 !important;
}

.vc_toggle.vc_toggle_simple .vc_toggle_content{
  padding:0 18px 12px 18px !important;
}

.vc_toggle.vc_toggle_simple .vc_toggle_content p,
.vc_toggle.vc_toggle_simple .vc_toggle_content li,
.vc_toggle.vc_toggle_simple .vc_toggle_content ol,
.vc_toggle.vc_toggle_simple .vc_toggle_content ul{
  font-size:15px !important;
  line-height:1.7 !important;
  margin:0 0 10px 0 !important;
}

.vc_toggle.vc_toggle_simple .vc_toggle_content p:last-child,
.vc_toggle.vc_toggle_simple .vc_toggle_content li:last-child,
.vc_toggle.vc_toggle_simple .vc_toggle_content ol:last-child,
.vc_toggle.vc_toggle_simple .vc_toggle_content ul:last-child{
  margin-bottom:0 !important;
}
/* Expandir largura página eventos */
body.single-tribe_events .main.foo > section.vc_off.sidebar_off > .container{
  width: 100% !important;
  max-width: 100% !important;
}

body.single-tribe_events .main.foo > section.vc_off.sidebar_off > .container > .row > .col-md-8.col-md-offset-2{
  width: 100% !important;
  margin-left: 0 !important;
  float: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Remover o bloco branco paginas de eventos */
body.single-tribe_events section.vc_off.sidebar_off{
  padding-top: 0 !important;
}
.caption .inner .t1 {
    font-weight: 600;
}
/* ===== Timetable moderno ===== */

.mptt-shortcode-wrapper {
  margin-top: 24px;
}

.mptt-shortcode-wrapper .mptt-navigation-tabs,
.mptt-shortcode-wrapper .mptt-navigation-select {
  margin-bottom: 20px !important;
}

.mptt-shortcode-wrapper select,
.mptt-shortcode-wrapper .mptt-navigation-select select {
  width: 100%;
  max-width: 420px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  background: #fff;
  color: #24344d;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(20, 34, 61, 0.05);
}

/* tabela */
html body .mptt-shortcode-wrapper .mptt-shortcode-table {
  border-collapse: separate !important;
  border-spacing: 4px !important;
  background: transparent !important;
  margin-top: 0 !important;
  border: 0 !important;
}

html body .mptt-shortcode-wrapper .mptt-shortcode-table,
html body .mptt-shortcode-wrapper .mptt-shortcode-table thead,
html body .mptt-shortcode-wrapper .mptt-shortcode-table tbody,
html body .mptt-shortcode-wrapper .mptt-shortcode-table tr,
html body .mptt-shortcode-wrapper .mptt-shortcode-table th,
html body .mptt-shortcode-wrapper .mptt-shortcode-table td {
  border: 0 !important;
  outline: 0 !important;
}

/* cabeçalhos dos dias */
html body .mptt-shortcode-wrapper table.mptt-shortcode-table.jdc-programa thead tr.mptt-shortcode-row th:not([data-index="0"]) {
  background: #ffffff !important;
  color: #22324a !important;
  border-radius: 10px !important;
  padding: 12px 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: inset 0 0 0 1px #e4eaf1 !important;
}

/* remover quadrado do canto superior esquerdo */
html body .mptt-shortcode-wrapper table.mptt-shortcode-table.jdc-programa thead tr.mptt-shortcode-row th[data-index="0"][data-column-id=""] {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  width: 58px !important;
  min-width: 58px !important;
}

/* células normais */
html body .mptt-shortcode-wrapper .mptt-shortcode-table tbody td {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: 0 !important;
}

/* horas */
html body .mptt-shortcode-wrapper .mptt-shortcode-table tbody td.mptt-shortcode-hours {
  background: #f7f9fc !important;
  color: #64748b !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  box-shadow: inset 0 0 0 1px #e4eaf1 !important;
  width: 58px;
  min-width: 58px;
  text-align: center !important;
  padding: 0 !important;
}

/* vazias */
html body .mptt-shortcode-wrapper .mptt-shortcode-table tbody td:empty:not(.mptt-shortcode-hours) {
  background: transparent !important;
  box-shadow: none !important;
}

/* cartões */
.mptt-shortcode-wrapper .mptt-event-container {
  margin: 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  box-shadow: 0 4px 14px rgba(20, 34, 61, 0.10) !important;
  transition: box-shadow .15s ease !important;
}

.mptt-shortcode-wrapper .mptt-event-container:hover {
  box-shadow: 0 8px 18px rgba(20, 34, 61, 0.13) !important;
}

.mptt-shortcode-wrapper .mptt-inner-event-content {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  overflow: hidden !important;
  padding: 8px 10px !important;
}

.mptt-shortcode-wrapper .mptt-event-container .event-title {
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  padding: 0 !important;
  margin-bottom: 3px !important;
  letter-spacing: -0.01em;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-break: break-word !important;
}

.mptt-shortcode-wrapper .mptt-event-container .timeslot,
.mptt-shortcode-wrapper .mptt-event-container .event-subtitle,
.mptt-shortcode-wrapper .mptt-event-container .event-description {
  font-size: 11px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  opacity: .95;
  margin: 0 !important;
}

.mptt-shortcode-wrapper .mptt-event-container a.event-title {
  color: inherit !important;
  text-decoration: none !important;
}
/*Esconder margem pagina eventos*/
.single-tribe_events .page_title_in_content {
  margin-bottom: 0 !important;
}
/* esconder o botão que vai direto para checkout */
.single-tribe_events .tribe-tickets__attendee-tickets-footer-checkout-button,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-checkout-button-wrap {
  display: none !important;
}

/* esconder o divisor "ou" */
.single-tribe_events .tribe-tickets__attendee-tickets-footer-divider {
  display: none !important;
}

/* alinhar o footer */
.single-tribe_events .tribe-tickets__attendee-tickets-footer,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-right {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

/* estilizar o botão do carrinho como o "Obter Bilhetes" */
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn--small {
  background: #0f1031 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  padding: 14px 24px !important;
  min-height: auto !important;
  height: auto !important;
  line-height: 1.2 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

/* garantir texto branco */
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button *,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn *,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn--small * {
  color: #ffffff !important;
}

/* hover */
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button:hover,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button:focus,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn:hover,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn:focus,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn--small:hover,
.single-tribe_events .tribe-tickets__attendee-tickets-footer-cart-button.tribe-common-c-btn--small:focus {
  background: #0f1031 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.tribe-tickets__tickets-item-details-summary-button--more{
  background: #e9e9e9 !important;
  background-color: #e9e9e9 !important;
  border: 1px solid #bfbfbf !important;
  color: #333 !important;
}
/*Esconder barra azul slider*/
.caption.caption_elegant .inner .t2::after{
	border-bottom-color: transparent !important;
	opacity: 0 !important;
}
/*Tamanho letra titulo slider*/
@media only screen and (min-width: 480px) {
    .caption .inner .t1 {
        font-size: 48px !important;
    }
/*Encurtar footer*/
.overflow_wrapper>footer {
	padding-top: 70px !important;
    padding-bottom: 40px !important;
	}
