:root {
  --header-h: 72px;
  --max: 1120px;

  /* CORES */
  --primary: #fab60d;
  --black: #000000;
  --white: #ffffff;

  --text: #ffffff;
  --text-dark: #000000;

  --muted: rgba(255,255,255,.85);
  --scrim: rgba(0,0,0,.55);
}


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; background: #fff; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;  
  gap: 18px;
  padding: 14px 20px;
  z-index: 50;
  color: var(--text);
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
}


.brand { color: #fff; text-decoration: none; font-weight: 600; letter-spacing: .08em; }
 
.nav { margin-left: auto; display: flex; gap: 16px; }
.nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; }
.nav a:hover { color: #fff; }

.cta{
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.cta:hover{
  filter: brightness(0.95);
}


/* Hero */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--text);
}

.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__scrim{
  position: absolute;
  inset: 0;
  /* Opacidade passa a ser dinâmica via CSS var */
  background: rgba(0,0,0,var(--scrim-opacity, .55));
  z-index: 1;
  transition: background .25s ease;
}

/* Conteúdo sobreposto */
.hero__content{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 20px 48px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.hero__kicker{
  margin: 0;
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--muted);
}

.hero__title{
  margin: 0;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-size: clamp(42px, 6.5vw, 92px);
}

.hero__title span{
  font-weight: 500;
}

.hero__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.badge{
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(250,182,13,.18);
  border: 1px solid rgba(250,182,13,.45);

  color: var(--white);
  font-weight: 600;
}

.hero__link{
  margin-top: 18px;
  width: fit-content;

  background: var(--primary);
  color: var(--black);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;

  padding: 14px 22px;
  border-radius: 999px;

  text-decoration: none;
  border: 0;

  box-shadow:
    0 10px 30px rgba(250,182,13,.45),
    inset 0 0 0 1px rgba(0,0,0,.08);

  transition: transform .2s ease, box-shadow .2s ease;
}

.hero__link:hover{
  transform: translateY(-2px);
  box-shadow:
    0 14px 38px rgba(250,182,13,.55),
    inset 0 0 0 1px rgba(0,0,0,.12);
}


/* opcional: camada “invisível” só para parallax */
.hero__parallax{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Sections */
.section{
margin: 0 auto;
 

  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
 
  padding: 64px 20px;
 
}
.section__head h2{
  color: var(--black);
}

.section__head p{
  color: rgba(0,0,0,.7);
}
.card{
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
}

/* Mobile */
@media (max-width: 820px){
  .nav { display: none; }
}

/* Acessibilidade: reduzir motion */
@media (prefers-reduced-motion: reduce){
  .hero__video { transform: none; }
}

/* Hamburger */
.hamburger{
  margin-left: auto;
  font-size: 22px;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

/* Drawer */
.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 90;
}

.drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 100;
  overflow-y: auto;
}

.drawer.open{ transform: translateX(0); }
.drawer-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

.drawer-close{
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  display: block;
}

.drawer-nav{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  color: var(--black);
}
.drawer-nav a{
  font-size: 28px;
  font-weight: 300;
  text-decoration: none;
  color: var(--primary);
}
.drawer-nav a:hover{ text-decoration: underline; }

/* Accordion */
.drawer-programs h4{
  margin-top: 32px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
}

.accordion{
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  margin-top: 10px;
  border-radius: 12px;
  border: 0;
background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
}

.accordion:hover{
  background: var(--primary);
  color: var(--black);
}

.panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #fff;
  border-radius: 12px;
  padding: 0 16px;
}
.panel p{ margin: 12px 0; }

/* Header sticky solid */
.site-header.scrolled{
  background: var(--black);
  backdrop-filter: blur(8px);
}
.program-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 980px){
  .program-grid{ grid-template-columns: 1fr; }
}

.program-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.program-card__media{
  height: 180px;
  background-size: cover;
  background-position: center;
}

.program-card__body{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.program-card__title{
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  color: #111;
}

.program-card__cta{
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 18px 16px;

  font-weight: 800;
  text-decoration: none;
  color: var(--black);
  background: var(--primary);

  border-radius: 0 0 16px 16px; /* acompanha o card */
  animation: none !important;
}


.program-card__cta:hover{
  filter: brightness(0.95);
   border: 1px solid rgba(0,0,0,.12);
}



 



.program-card__footer{
  padding: 0; /* remove margens laterais */
  border-top: 1px solid rgba(0,0,0,.08);
}

/* CTA estilo footer: ocupa a largura toda */
.program-card__cta{

}

/* estado desativado */
.program-card__cta.is-disabled{
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.6);
  cursor: not-allowed;
}





 






 

.drawer-program-link{
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
   white-space: nowrap;
  font-weight: 650;
  color: var(--black);
  border-bottom: 2px solid var(--primary);
}
.drawer-program-link:hover{
  border-bottom-color: rgba(28,92,59,.8);
  color: var(--primary);
}

/* === BOTÕES: bounce discreto + hover === */
.cta, .btn, .hero__link, .program-card__cta, .drawer-program-link, .accordion {
  transform: translateZ(0);
  will-change: transform;
}

/* micro "float" muito subtil (idle) */
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* micro "bounce" no hover */
@keyframes microBounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-4px); }
  60%  { transform: translateY(0); }
  80%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

/* aplica idle a botões principais */
.cta, .btn--primary, .hero__link, .program-card__cta {
  animation: subtleFloat 3.2s ease-in-out infinite;
}

/* hover: bounce */
.cta:hover, .btn:hover, .hero__link:hover, .program-card__cta:hover, .drawer-program-link:hover {
  animation: microBounce .45s ease-out 1;
}

/* focus acessível */
.cta:focus-visible, .btn:focus-visible, .hero__link:focus-visible, .program-card__cta:focus-visible,
.drawer-program-link:focus-visible, .accordion:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* respeitar “reduced motion” */
@media (prefers-reduced-motion: reduce){
  .cta, .btn, .hero__link, .program-card__cta {
    animation: none !important;
  }
}

/* CONTACTOS */
.contacts-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 980px){
  .contacts-grid{
    grid-template-columns: 1fr;
  }
}

.contacts-info h2{
  margin-top: 0;
}

.contacts-address{
  margin: 16px 0;
  font-style: normal;
  line-height: 1.6;
}

.contacts-address span{
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .06em;
}

.contacts-phone{
  margin-top: 20px;
}

.contacts-phone a{
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
}

.contacts-phone a:hover{
  color: var(--primary);
}

/* FORM */
.form{
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.form label{
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(0,0,0,.75);
}

.form input,
.form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  font: inherit;
}

.form input:focus,
.form textarea:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250,182,13,.25);
}

/* Partners grid */
.partners-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 1100px){ .partners-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 780px){  .partners-grid{ grid-template-columns: repeat(2, 1fr); } }

.partner{
  background: var(--white);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 14px;
  min-height: 92px;

  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--black);

  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partner:hover{
  transform: translateY(-2px);
  border-color: rgba(250,182,13,.6);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.partner:focus-visible{
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* logo */
.partner img{
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: .92;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.partner:hover img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
}

/* opcional: legenda por baixo do logo (se quiseres) */
.partner .name{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  color: rgba(0,0,0,.7);
  display: none; /* muda para block se quiseres mostrar nomes */
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .partner, .partner img{ transition: none !important; }
  .partner:hover{ transform: none; }
}


.brand{
  display: flex;
  flex-direction: column;      /* image on top, text below */
  align-items: flex-start;     /* LEFT aligned */
  gap: 6px;                    /* small space between image & text */

  text-decoration: none;
  color: #fff;
}
.brand__text{
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.1;
}
.brand img{
  width: 260px;        
  max-width: 100%;
  height: auto;
  margin-left: 0;       
   filter: brightness(0) invert(1);
}

@media (max-width: 600px){
  .brand img{
    width: 220px;
  }
}




.brandnms{
  display: flex;
  flex-direction: column;      /* image on top, text below */
  align-items: flex-start;     /* LEFT aligned */
  gap: 6px;                    /* small space between image & text */
 
  text-decoration: none;
  color: #fff;
margin-left: 70%;
  margin-right: 0;
}
.brand__text2{
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.1;
}
.brandnms img{
  width: 260px;        
  max-width: 100%;
  height: auto;
  margin-left: 0;       
 
}

@media (max-width: 600px){
  .brandnms img{
    width: 220px;
  }
    .brandnms {
    margin-left: 0;
  }
}
 

 




/* main image */
.program-main-image{
width: 63%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel (one at a time) */
.carousel{
  position: relative;
  border-radius: 16px;
}

.carousel__viewport{
  overflow: hidden;
  border-radius: 16px;
  /*border: 1px solid rgba(0,0,0,.10);*/
  background: #fff;
}

.carousel__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.carousel__slide{
  min-width: 100%;
  background: #fff;
}

.carousel__img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px){
  .carousel__img{ height: 260px; }
}

.carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);

  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #111;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;

  display: grid;
  place-items: center;

  box-shadow:
    0 8px 20px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.4);

  cursor: pointer;
  z-index: 10;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.carousel__btn--prev{ left: -24px; }
.carousel__btn--next{ right: -24px; }

.carousel__btn:hover{
  transform: translateY(-50%) scale(1.06);
  background: rgba(255,255,255,.95);
  box-shadow:
    0 12px 28px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(255,255,255,.6);
}

.carousel__btn:active{
  transform: translateY(-50%) scale(.98);
}

@media (max-width: 768px){
  .carousel__btn{
    display: none;
  }
}

.carousel__viewport{
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}


.carousel__cap{
  padding: 12px 14px;
  font-weight: 650;
  color: #111;
  border-top: 1px solid rgba(0,0,0,.08);
}

.videoFrame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  /*border-radius: 18px;*/
    position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.videoFrame .carouselVideo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* no crop */
  background: #000;
    width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;     /* IMPORTANT */
  background: #000;
}


@media (hover: hover){
  .carouselVideo::-webkit-media-controls{
    opacity: .85;
    transition: opacity .2s ease;
  }
  .carouselVideo:hover::-webkit-media-controls{
    opacity: 1;
  }
}



/* wrapper controls width, carousel stays fluid */
.carousel-wrap{
  max-width: 80%;
  margin: 2rem auto;
}

@media (max-width: 1200px){ .carousel-wrap{ max-width: 85%; } }
@media (max-width: 992px){  .carousel-wrap{ max-width: 89%; } }
@media (max-width: 576px){  .carousel-wrap{ max-width: 92%; } }

.carousel{
  width: 100%;
  touch-action: pan-y;
}
@media (max-width: 1200px){
  .carousel{ max-width: 45%; }
}

@media (max-width: 992px){
  .carousel{ max-width: 65%; }
}

@media (max-width: 576px){
  .carousel{ max-width: 92%; }
}

.carousel__slide{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel__cap{
  text-align: center;
}

.carousel__track{
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}


/* ===== Programme page layout polish ===== */

/* Make sections consistent and centered */
 

.section > .section__head,
.section > .card,
.section > .carousel-wrap,
.section > .reg-wrap{
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

 

/* Better spacing inside heads */
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.section__head p{
  margin: 0;
  font-size: 16px;
}

/* Cards that look like cards */
.card{
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

/* Programme main image should fill the card */
.program-main-image{
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

/* Fix carousel sizing (remove tiny max-width rules) */
.carousel-wrap{
  max-width: var(--max);
  margin: 18px auto 0;
}
.carousel{
  width: 100%;
  max-width: none !important;
}

/* Improve lists visually */
.card ul{
  padding-left: 18px;
  margin: 10px 0 0;
}
.card li{
  margin: 8px 0;
}

/* Better reading width for long text */
.card p{
  max-width: 78ch;
  line-height: 1.65;
}

/* Make section backgrounds alternate for depth (optional) */
.section:nth-of-type(even){
  background: rgba(0,0,0,.02);
}

 
 










/* ===== Programme hero ===== */
.program-hero{
  padding: calc(var(--header-h) + 28px) 20px 40px;
  background: radial-gradient(1200px 500px at 20% 10%, rgba(250,182,13,.20), transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,.04), transparent);
}

.program-hero__inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}

.program-hero__kicker{
  margin: 0 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0,0,0,.65);
}

.program-hero__title{
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.program-hero__title span{
  display: block;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(0,0,0,.65);
  margin-top: 10px;
}

.program-hero__dates{
  margin: 14px 0 14px;
  font-size: 16px;
  color: rgba(0,0,0,.75);
}

.program-facts{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}
.fact{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(250,182,13,.18);
  border: 1px solid rgba(250,182,13,.35);
  font-weight: 650;
  color: #111;
  font-size: 13px;
}

.program-hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-hero__media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

@media (max-width: 980px){
  .program-hero__inner{
    grid-template-columns: 1fr;
  }
  .program-hero__media img{
    height: 300px;
  }
}

/* Two-column layout for description + gallery (no Bootstrap) */
.program-split{
  display: grid;
  grid-template-columns: 1.15fr .85fr; /* left wider, right a bit narrower */
  gap: 22px;
  align-items: start;
}

/* Keep the carousel nicely sized in the right column */
.carousel-wrap--tight{
  max-width: 100%;
  margin: 0;              /* override your 2rem auto */
}

/* Optional: make gallery “sticky” on desktop so it stays visible while reading */
@media (min-width: 981px){
  .program-split__right{
    position: sticky;
    top: calc(var(--header-h) + 18px);
    align-self: start;
  }
}

/* Stack on mobile */
@media (max-width: 980px){
  .program-split{
    grid-template-columns: 1fr;
  }
  .program-split__right{
    position: static;
  }
}


/* Inscrições iframe */
.inscritos-iframe{
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

/* Responsive iframe */
.inscritos-iframe iframe{
  width: 100%;
  height: 720px;            /* adjust if the form is taller */
  border: 0;
  display: block;
  background: #fff;
}

/* Mobile: give it more height */
@media (max-width: 768px){
  .inscritos-iframe iframe{
    height: 880px;
  }
}











/* =========================
   Registration form (clean)
   ========================= */

/* Keep registration form aligned with galleries */
.reg-wrap{
  max-width: var(--max);
  margin: 2rem auto;
}

@media (max-width: 1200px){ .reg-wrap{ max-width: 85%; } }
@media (max-width: 992px){  .reg-wrap{ max-width: 89%; } }
@media (max-width: 576px){  .reg-wrap{ max-width: 92%; } }

/* Labels */
.reg-form label{
  position: relative;
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(0,0,0,.75);
}

.reg-form select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;

  padding-right: 36px; /* space for arrow */
}

/* Required star (before text) */
.reg-form .req{
  display: inline-block;
  margin-right: 6px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: #c00;
  vertical-align: middle;
}

/* Text inputs + textarea only (avoid styling radios/checkboxes) */
.reg-form input:not([type="radio"]):not([type="checkbox"]),
.reg-form textarea,
.reg-form select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  font: inherit;
  background: #fff;
}

.reg-form input:not([type="radio"]):not([type="checkbox"]):focus,
.reg-form select
.reg-form textarea:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250,182,13,.25);
}

/* Grid layout */
.reg-grid{
  display: grid;
  grid-template-columns: 1fr;   /* ← uma única coluna */
  gap: 22px;
  margin-top: 10px;
}

/* Sections */
.reg-section{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.reg-section h3{
  margin: 0 0 6px;
}

.reg-section--full{
  grid-column: 1 / -1;
}

/* Two-column rows inside billing section */
.two-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Fieldset */
.reg-fieldset{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 14px;

  display: grid;
  gap: 10px;
  align-items: start;
}

.reg-fieldset legend{
  padding: 0 6px;
  font-weight: 650;
  color: #111;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Radio option rows */
.reg-form label.radio{
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 6px;
  width: fit-content;
  cursor: pointer;
  color: rgba(0,0,0,.75);
}

.reg-form label.radio input[type="radio"]{
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

/* Checkbox row (terms) */
.reg-form label.checkbox{
  display: inline-flex !important;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  max-width: 78ch;
  color: rgba(0,0,0,.75);
}

.reg-form label.checkbox input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

/* Feedback */
.form-success{
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(28,92,59,.10);
  border: 1px solid rgba(28,92,59,.25);
}

.form-error{
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(200,0,0,.08);
  border: 1px solid rgba(200,0,0,.20);
}

/* Responsive */
@media (max-width: 980px){
  .reg-grid{ grid-template-columns: 1fr; }
  .two-cols{ grid-template-columns: 1fr; }
}

.content-duas-colunas {
  display: flex;
  gap: 40px; /* espaço entre as caixas */
}

.content-duas-colunas > div {
  flex: 1; /* cada caixa ocupa metade */
}




.program-pdf-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: fit-content;
}

.program-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ffc107;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.program-pdf-link:hover {
  background: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.pdf-icon {
  font-size: 16px;
  line-height: 1;
}

.arrow {
  margin: 0 4px;
  font-weight: 700;
}


.cimabaixo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cimabaixo a {
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 999px;      /* bem redondos */
  text-decoration: none;     /* sem sublinhado */
  font-weight: 600;
  font-size: 16px;
}

/* Botão INSCRVER */
.cimabaixo .btncima {
 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 1px;
  background: #ffc107;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.cimabaixo .btncima:hover {
  background: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* Botão MANIFESTAR INTERESSE */
.cimabaixo .btnbaixo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 1px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.cimabaixo .btnbaixo:hover {
  background: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}




.program-pdf-link.is-unavailable{
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.45);
  cursor: not-allowed;
  pointer-events: none; /* não clicável */
}

.program-pdf-link.is-unavailable .pdf-icon{
  opacity: .5;
}

.program-pdf-link .no-vagas{
  margin-left: 8px;
  font-weight: 700;
  font-size: 12px;
  color: #c00;
}

/* =========================
   Embaixadores
   ========================= */

.amb-grid{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

/* cartão individual */
.amb-card{
  grid-column: span 12;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;

  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

/* foto */
.amb-photo{
  width: 104px;
  height: 104px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(250,182,13,.45); /* usa o teu primary */
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.amb-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* texto */
.amb-name{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 750;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.amb-role{
  margin: 0;
  color: rgba(0,0,0,.72);
  line-height: 1.5;
  font-size: 15px;
  max-width: 70ch;
}

/* “badge” embaixador */
.amb-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(250,182,13,.18);
  border: 1px solid rgba(250,182,13,.45);

  color: var(--black);
  font-weight: 750;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.amb-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(250,182,13,.18);
}

/* hover (coerente com o teu estilo) */
.amb-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.amb-card:hover{
  transform: translateY(-2px);
  border-color: rgba(250,182,13,.60);
  box-shadow: 0 22px 50px rgba(0,0,0,.10);
}

/* responsive: 2 colunas em desktop */
@media (min-width: 860px){
  .amb-card{ grid-column: span 6; }
}

/* mobile: empilha foto em cima */
@media (max-width: 520px){
  .amb-card{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .amb-photo{
    width: 96px;
    height: 96px;
  }
}











#programasGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px){
  #programasGrid{
    grid-template-columns: 1fr;
  }
}

.program-block{
  background:#fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

 
.program-block__media{
  height: 260px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}

/* 2 botões */
.program-block__actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.program-block__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px 14px;
  border-radius: 14px;
  background: #f6b700;
  color:#111;
  font-weight: 700;
  text-align:center;
  text-decoration:none;
  line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease;
}

.program-block__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}


.program-block__actions{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* quando só há 1 curso */
.program-block__actions.is-single{
  grid-template-columns: 1fr;
}

.program-block__cta.is-disabled{
  background: #eee;
  color: #777;
  cursor: default;
  pointer-events: none;
}
.program-block__title {
  min-height: 3.2em;      /* espaço para ~2 linhas */
  line-height: 1.6;
  display: flex;
  align-items: center;    /* centra verticalmente se tiver só 1 linha */
}

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.site-footer {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #555;
}


/* ===== TABELA CLIPPING ===== */
.clipping-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.35;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

/* Cabeçalho */
.clipping-table thead th {
  background: #2f2f2f;
  color: #fff;
  text-align: left;
  font-weight: 600;
  padding: 12px 14px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Corpo */
.clipping-table tbody td {
  padding: 12px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
  color: rgba(0, 0, 0, 0.86);
}

/* Zebra */
.clipping-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

/* Hover */
.clipping-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.045);
}

/* Links do título */
.clipping-table td a {
  color: #0a58ca;
  text-decoration: none;
}

.clipping-table td a:hover {
  text-decoration: underline;
}

/* Ajuste de larguras (opcional) */
.clipping-table th:nth-child(1),
.clipping-table td:nth-child(1) {
  width: 70px;
  white-space: nowrap;
}

.clipping-table th:nth-child(2),
.clipping-table td:nth-child(2) {
  width: 140px;
  white-space: nowrap;
}

.clipping-table th:nth-child(4),
.clipping-table td:nth-child(4) {
  width: 260px;
}

/* Responsivo simples */
@media (max-width: 768px) {
  .clipping-table {
    font-size: 13px;
  }

  .clipping-table th:nth-child(1),
  .clipping-table td:nth-child(1),
  .clipping-table th:nth-child(2),
  .clipping-table td:nth-child(2) {
    display: none; /* esconde Meio + Data em mobile */
  }
}

.form-status{
  margin-top: 10px;
  font-size: 14px;
}

.form-status.is-ok{
  color: #0f7a2a;
}

.form-status.is-error{
  color: #b00020;
}

