/* =========================================================================
   ISO COLÉGIO E CURSOS — LANDING PAGE "CONCURSO DE BOLSAS"
   HTML5 + CSS3 puro | Flexbox | BEM | rem + clamp() | Variáveis CSS
   ========================================================================= */

/* =========================================================================
   1. RESET
   ========================================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%; /* 1rem = 16px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-white);
  line-height: 1.4;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* =========================================================================
   2. VARIÁVEIS GLOBAIS (:root)
   ========================================================================= */
:root {
  /* Cores */
  --color-orange: #ea5b0c;
  --color-orange-dark: #d94f08;
  --color-black: #0b0906;
  --color-black-soft: #17130f;
  --color-white: #ffffff;
  --color-gray-light: #ececec;
  --color-gray-text: #4d4d4d;
  --color-cream: #fdf6ee;
  --color-overlay-strong: rgba(6, 4, 2, 0.92);
  --color-overlay-mid: rgba(6, 4, 2, 0.55);
  --color-overlay-soft: rgba(6, 4, 2, 0.05);

  /* Tipografia */
  --font-base: 'Rubik', Arial, Helvetica, sans-serif;
  /* Título (28px → 28px) */
  --fs-title: clamp(1.75rem, 1.75rem, 1.75rem);
  /* Subtítulo (23px desktop → 18px mobile) */
  --fs-subtitle: clamp(1.4375rem, 1.43rem + -0.38vw, 1.125rem);
  /* Localização (24px desktop → 23px mobile) */
  --fs-location: clamp(1.4375rem, 1.5rem + -0.08vw, 1.5rem);
  /* Botões (20px desktop → 30px mobile) */
  --fs-button: clamp(1.25rem, 1.88rem + -0.78vw, 1.875rem);
  /* Título do formulário (28px desktop → 42px mobile) */
  --fs-panel-banner: clamp(1.75rem, 2.63rem + -1.09vw, 2.625rem);
  /* Data (26px desktop → 39px mobile) */
  --fs-panel-date-label: clamp(1.625rem, 2.44rem + -1.02vw, 2.4375rem);
  --fs-panel-date-value: clamp(1.625rem, 2.44rem + -1.02vw, 2.4375rem);
  --fs-panel-placeholder: clamp(0.9375rem, 0.85rem + 0.3vw, 1.0625rem);
  /* Texto legal (10px desktop → 15px mobile) */
  --fs-panel-terms: clamp(0.625rem, 0.94rem + -0.39vw, 0.9375rem);

  /* SECTION 2 */



  /* SECTION 2 */

--fs-section2-title: clamp(2.2rem, 1.8rem + 1vw, 2rem);
/* 35px → 45px */

--fs-section2-subtitle: clamp(1.25rem, 1rem + 0.4vw, 1.325rem);
/* 20px → 26px */

--fs-section2-item: clamp(1.125rem, 0.95rem, 1rem);
/* 18px → 25px */

--fs-section2-btn: clamp(1rem, 0.85rem + 0.4vw, 1rem);
/* 16px → 20px */

--fs-section2-video-btn: clamp(1.25rem, 1rem + 0.55vw, 1.1rem);
/* 20px → 26px */


/* SECTION 3 - RESULTADOS */

/* Número gigante (184px) */
--fs-results-badge-title: clamp(8rem, 5rem + 7vw, 11.5rem);
/* 128px → 184px */

/* Ordinal (54px) */
--fs-results-badge-number: clamp(1.75rem, 1.2rem + 1vw, 3.375rem);
/* 28px → 54px */

/* Números dos resultados (127px) */
--fs-results-number: clamp(4.5rem, 3rem + 4vw, 7.9rem);
/* 72px → 126px */

/* Texto dos resultados (38px) */
--fs-results-text: clamp(1.5rem, 1.1rem + 0.9vw, 2.2rem);
/* 24px → 35px */

/* Footer (33px) */
--fs-results-footer: clamp(1.25rem, 1rem + 0.7vw, 2.0625rem);
/* 20px → 33px */

  /* Espaçamentos */ 
  --space-2xs: 0.375rem;
  --space-xs: 0.625rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 3.5rem;
  --space-2xl: 2rem;

  /* Layout */
  --container-max: 120rem; /* 1920px */
  --side-padding: clamp(1.5rem, 1rem + 2.5vw, 4.5rem);
  --panel-width: clamp(20rem, 12rem + 12vw, 23.125rem);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --border-width: 0.125rem;

  --transition-base: 0.25s ease;
}
section .row, .competition__shell{padding-left: 10vw; padding-right: 10vw;}
/* =========================================================================
   3. UTILITÁRIOS / COMPONENTES REUTILIZÁVEIS
   ========================================================================= */

/* Componente: Botão (BEM) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  min-height: 47px;
  padding: 0.5rem;
  border: var(--border-width) solid var(--color-orange);
  font-size: var(--fs-button);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: transparent;
  transition: background-color var(--transition-base), color var(--transition-base);
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn--outline {
  background-color: transparent;
  border-radius: 0
}

/* Componente: Logo (BEM) */
.logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 3rem;
}



/* =========================================================================
   4. HERO SECTION (bloco principal da landing page)
   ========================================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-black);
  overflow: hidden;
}

/* Elemento: mídia de fundo (foto) */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92);
}



/* Elemento: container do cabeçalho + texto */
.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-lg) var(--side-padding);
  padding-right: calc(var(--panel-width) + var(--space-2xl));
}

.hero__header {
  padding-top: var(--space-sm);
}

/* Elemento: bloco de conteúdo textual */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 34rem;
  padding-bottom: var(--space-2xl);
}

.hero__title {
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 1.25;
}

.hero__subtitle-text {
  font-size: var(--fs-subtitle);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

.hero__locations {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: 4rem;
  margin-bottom: 1.2rem;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-location);
  font-weight: 500;
}

.hero__pin {
  color: var(--color-white);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding-top: var(--space-xs);
}

/* =========================================================================
   5. CARTÃO FLUTUANTE DO FORMULÁRIO (form-card)
   ========================================================================= */
.form-card {
  position: absolute;
  z-index: 4;
  top: clamp(2.25rem, 1.8rem + 1.5vw, 4.5rem);
  right: clamp(1.5rem, 1rem + 2.5vw, 4.5rem);
  bottom: clamp(2.25rem, 1.8rem + 1.5vw, 4.5rem);
  width: 450px;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.35);
}
.form-embed__iframe{
    width: 100%;
    min-height: 50vh;
}
.form-card__banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xs);
  background-color: var(--color-orange);
  padding: var(--space-md);
}

.form-card__banner-title {
  font-size: var(--fs-panel-banner);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
}

.form-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--color-white);
  padding: var(--space-2xs) var(--space-sm);
  text-align: center;
  color: var(--color-black);
}

.form-card__date-label {
  font-size: var(--fs-panel-date-label);
  font-weight: 600;
  text-transform: uppercase;
}

.form-card__date-value {
  font-size: var(--fs-panel-date-value);
  font-weight: 700;
  line-height: 1.1;
}

.form-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--color-white);
  color: var(--color-black);
  overflow-y: auto;
}



.form-card__terms {
  font-size: var(--fs-panel-terms);
  line-height: 1.5;
  color: var(--color-gray-text);
  padding: 0px 20px
}

.section-video{

    position:relative;
    background-image: linear-gradient(90deg, #db3900 0%, #ff5f00 100%, #ff5f00 100%);
    padding-top:20px;
    overflow:visible;

}

.section-video__title{
    font-size:var(--fs-section2-title);
    font-weight:600;
    text-transform:uppercase;
    margin-top: 100px;
    margin-bottom: 51px;

}

.section-video__subtitle{
    font-size:var(--fs-section2-subtitle);
    line-height:1.45;
}

.section-video__items{
    display:flex;
    flex-direction: row;
    gap:70px;
    margin-bottom:70px;
}
.section-video__column{
  display:flex;
  flex-direction: column;
  gap: 70px;
}
.section-video__item{
    display:flex;
    align-items:flex-start;
    justify-content: baseline;
    gap:20px;

}

.section-video__item img{

    width:46px;
    flex-shrink:0;

}



.section-video__actions{

    display:flex;
    align-items:center;
    gap:100px;
    margin-bottom: 3rem

}

.btn-edital, .btn-ir-site, .btn-inscreva-se{

    display:flex;
    justify-content:center;
    align-items:center;

    width:205px;
    height:58px;

    background: url('../img/bg-btn-edital.png') no-repeat;
    background-size: 100%;

    font-size:var(--fs-section2-btn);
    color:#FFF;
    font-weight:500;
    text-decoration:none;
    padding-bottom:5px;
    border-radius: 0;

}

.btn-video{

    display:flex;
    align-items:center;
    border:none;
    background:#FFF;

    font-size:var(--fs-section2-video-btn);
    color:#111;
    padding:2px 5px 2px 15px;

}

.btn-video span{

    display:flex;
    justify-content:center;
    align-items:center;

    width:60px;
    height:60px;

    background:#EA5B0C;
    color:#FFF;
    margin-left:10px;

}

.video-card{

    border:none;
    background:transparent;
    padding:0;

    transform:translateY(70px);

}

.video-card img{

    width:100%;
    max-width:470px;

}

.modal-content{

    border:none;
    background:#000;

}
#section-2{z-index: 2;}
/* =========================================================================
   6. SECTION RESULTADOS (Selo "4º lugar" + painel de estatísticas)
   ========================================================================= */
.section-results {
  position: relative;
  background-color: var(--color-cream);
  color: var(--color-black);
  padding: 8rem var(--side-padding) var(--space-2xl) var(--side-padding);
}

.results-wrapper {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
}

/* --- Selo preto (4º lugar) --- */
.results-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  background-color: var(--color-black);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: -3.5rem; /* overlap sobre o painel laranja */
}

.results-badge__number {
  display: inline-flex;
  align-items: flex-start;
  font-size: var(--fs-results-badge-title);
  font-weight: 300;
  letter-spacing: -7px;
  text-transform: uppercase;
  color: #ff6000;
  line-height: 1;
  filter: drop-shadow(9.548px 10.239px 6.5px #ffffff);
  border: 8px solid var(--color-white);
  padding: 0 var(--space-sm);
}

.results-badge__ordinal {
  font-size: var(--fs-results-badge-number);
  font-weight: 300;
  color: #ff6000;
  line-height: 1;
}

.results-badge__text {
  font-size: 54px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

/* --- Painel laranja --- */
.results-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  background:#ff6000;
  padding: 0rem 0 0 3rem;
  overflow: hidden;
}

.results-panel__stats {
  display: flex;
  gap: var(--space-2xl);
}

.results-panel__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.results-panel__item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
}

.results-panel__number {
  font-size: var(--fs-results-number);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
}

.results-panel__ordinal {
  font-size: calc(var(--fs-results-number) * 0.4);
  font-weight: 800;
  color: var(--color-white);
}

.results-panel__text {
  font-size: var(--fs-results-text);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
}

/* --- Bloco da direita: +700 medalhas + foto + botão --- */
.results-panel__media {
  display: flex;
  flex-direction: column;
  align-items:flex-end;
  flex-shrink: 0;
}

.results-panel__medals {
  padding: 2rem 3rem 0 0;
  z-index: 1;
  align-self:flex-start
}

.results-panel__medals-number {
  display: block;
  font-size: var(--fs-results-number);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.results-panel__medals-text {
  font-size: var(--fs-results-text);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
}

.results-panel__photo-wrap {
  position: relative;
  width: 100%;
}

.results-panel__photo {
  width: 650px;
  margin-top: -2rem;
  z-index:0
}

/* Posicionamento do botão "Ir para o site" sobre a foto.
   Ajuste o seletor abaixo para a classe real do seu botão. */
.results-panel__cta {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}

/* --- Etapas de ensino --- */
.results-footer {
  width: 80vw;
  margin: auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.results-footer__label {
  flex-shrink: 0;
  font-size: var(--fs-results-footer);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-orange);
}

.results-footer__line {
  flex: 1;
  height: 2px;
  background-color: var(--color-orange);
}
#section-4, #section-5, #section-6, #section-7, #section-8{
  min-height: auto; 
  background: url('../img/bg-section-4.jpg') no-repeat;
  background-size: cover;
  background-position: center left;
  padding-top: 5vw; padding-bottom: 5vw;
}

.diferenciais__item img{width: 3rem}
.diferenciais__column{color: #000000; font-size: 1.4rem; font-weight: 500}
.title-segmentos{color: #ff6000; font-size: 3rem; font-weight: bold}
.title-segmentos span{color: #ff6000; font-size: 2rem;text-transform: none;}
.subtitle-segmentos{color: #db3a00; font-size: 2rem; font-weight: 600}
.descricao-segmentos{color: #000000; font-size: 1.4rem; font-weight: 400}
#section-4 .btn-inscreva-se, #section-6 .btn-inscreva-se{
  background: url('../img/btn-shadow-black.png') no-repeat;background-size: contain
}

#section-5{background: url('../img/bg-section-5.jpg') no-repeat; background-position: center right;}
#section-5 *, #section-7 *{color: #ffffff}
#section-5 .btn-inscreva-se, #section-7 .btn-inscreva-se{
  background: url('../img/btn-white-shadow-black.png') no-repeat;background-size: contain; color: #ff6000;
}

#section-6 .title-segmentos span{color: #000000}
#section-6{background: url('../img/bg-section-6.jpg') no-repeat;}

#section-7{background: url('../img/bg-section-7.jpg') no-repeat; background-position: center right;}

#section-8{background: url('../img/bg-section-8.jpg') no-repeat;}
#section-8 .descricao-segmentos, #section-8 .diferenciais__column, #section-8 .subtitle-segmentos{color: #ffffff;}

#section-9{background: #000000; color:#ffffff; padding-top: 5vw; padding-bottom: 5vw}
#section-9 h2 span{color: #ff6000;}
#section-9 h2{ font-size: 1.2rem}
#section-9 ul{ padding-left: 0; margin-top: 0}

.page-shell {
  width: 100%;
  margin-inline: auto;
}

.competition {
  min-height: var(--section-height);
}

.competition__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 468px;
  gap: 59px;
  /*idth: min(calc(100% - 80px), 1418px);*/
  min-height: auto;
}

.competition__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 0;
  margin-top: 67px;
  margin-bottom:70px;
}

.benefit-item {
  display: flex;
  align-items: center;
  min-width: 0;
}
.benefit-item p{

    font-size:var(--fs-section2-item);
    line-height:1.3;
    font-weight:600;

}
.benefit-item__icon {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  margin-right: 12px;
  border-radius: 12px;
  background: transparent;
}

.benefit-item__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.competition__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(42px, 4vw, 62px);
}


.competition__video {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  border: 0;
  border-radius: 44px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  margin-bottom: -2rem;
  z-index: 2;
}

.competition__video-cover,
.competition__video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.competition__video-button {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.competition__video-player {
  z-index: 4;
  background: #000;
}

.competition__video > .asset-slot__label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.competition__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(173, 85, 50, 0.36);
  transform: translate(-50%, -50%);
}

.competition__play i {
  margin-left: 9px;
  font-size: 85px;
  line-height: 1;
}


/* ========================================================================
   FONTES - DESKTOP (1680px até 769px)
   ======================================================================== */

@media (max-width: 1680px) {
  :root {
    --fs-title: 1.55rem;             /* 25px */
    --fs-subtitle: 1.25rem;          /* 20px */
    --fs-location: 1.3rem;           /* 21px */
    --fs-button: 1.1rem;             /* 18px */
    --fs-panel-banner: 1.4rem;      /* 25px */
    --fs-panel-date-label: 1.45rem;  /* 23px */
    --fs-panel-date-value: 1.45rem;
    --fs-panel-placeholder: 0.875rem;/* 14px */
    --fs-panel-terms: 0.5625rem;     /* 9px */
    
  }
  
  .form-card__banner-title{margin: 0}
  .form-card{
    height: 46rem;
    top: 1rem;
    overflow-y: none;
  }
  .hero__container{padding: 1rem 2rem}
  .logo { margin-bottom:1rem;}
  .hero__locations{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .results-panel__text, .results-panel__medals-text{
    font-size: 1.7rem;
  }
  .form-card{
    width: 400px;
  }
}

@media (max-width: 1600px) {
 .form-card{
    height: 41rem;
 }
 .competition__video-cover, .competition__video-player {
  object-fit: inherit;
 }
 .results-panel__text{
  font-size: 1.8rem;
 }
 .results-panel__number {
    font-size: 4.8rem;
 }
 .results-panel__medals-number {
  font-size: 4.8rem;
 }
 .results-panel__medals-text{
  font-size: 1.8rem;
 }
}


@media (max-width: 1440px) {
.results-badge__text {font-size: 44px;}
.results-panel__text, .results-panel__medals-text {font-size: 22px;}
.results-panel__number, .results-panel__medals-number {font-size: 80px;}
.results-panel__photo {width: 500px;}
.results-badge img{width: 10rem;}
.diferenciais__column{font-size: 1.1rem;}
.title-segmentos{font-size: 2.4rem;}
.title-segmentos span{font-size: 1.7rem;}
.subtitle-segmentos{font-size: 1.7rem;}
.descricao-segmentos{font-size: 1.1rem;}
#section-4, #section-5, #section-6, #section-7, #section-8{background-position: center center;}
.section-video__items{gap: 0px;}
.section-video__title { margin-bottom: 20px; margin-top: 40px;}
.section-video__actions { margin-bottom: 2rem;}
.section-video__column{width: 50%;gap: 30px;}
.competition__shell {
    grid-template-columns: minmax(0, 1fr) clamp(340px, 29vw, 395px);
    gap: 45px;
    width: min(calc(100% - 110px), 1160px);
    padding: 0;
  }
  .benefits-grid {
    gap: 20px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .competition__video {
    border-radius: 30px;
  }

  .competition__play {
    width: 128px;
    height: 128px;
  }

  .competition__play i {
    font-size: 62px;
  }

}

@media (max-width: 1400px) {
 .form-card{
    height: 45rem;
 }
}

@media (max-width: 1366px){
  :root{
    --fs-title: 1.3rem;             /* 25px */
    --fs-subtitle: 1.1rem;          /* 20px */
    --fs-location: 1.1rem;           /* 21px */
    --fs-button: 1rem;             /* 18px */
    --fs-panel-banner: 1.2rem;      /* 25px */
  }
  .form-card {
    height: 36rem;
  }
  .btn {
    width: 188px;
  }
  .form-card {
      width: 350px;
  }
  .form-card__terms {
    font-size: var(--fs-panel-terms);
    line-height: 120%;
  }
}

@media (max-width: 1280px) {
    .results-panel__text, .results-panel__medals-text {
        font-size: 1.1rem;
    }
}
/* =========================================================================
   8. RESPONSIVIDADE — MOBILE (a partir de 960px)
   ========================================================================= */
@media (max-width: 768px) {
  html{overflow-x:hidden}
  body{background: #B6B1A9}
  .btn--outline {
    background: url('../img/bg-btn-edital.png') no-repeat;
    margin: auto;
  }
  .hero {
    min-height: unset;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    background: url('../img/bg-topo-mobile.webp') no-repeat bottom center;
    background-size: cover;
  }
  .hero__pin{
    fill:#ff6000;
  }
  .hero__media {
    position: relative;
    inset: auto;
    height: 30rem;
  }
  .logo{
    max-width: 120px;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      var(--color-overlay-mid) 0%,
      transparent 55%,
      var(--color-overlay-strong) 100%
    );
  }

  .hero__container {
    position: static;
    min-height: unset;
    padding: 0 var(--side-padding) var(--space-xl);
  }

  .hero__header {
    text-align:center
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
    color: #000000;
  }

  .hero__locations {
    gap: var(--space-md);
    order: 2
  }

  .form-card {
    position: static;
    width: 90%;
    margin: 0 auto var(--space-xl);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
  }
  .section-video__title, .section-video__subtitle{text-align: center}
  .section-video__items{display: flex; flex-direction: column; gap: 30px}
  .section-video__column{width: 100%}
  .section-video__actions{gap: 20px}

  .section-video__items{

      grid-template-columns:1fr;

  }

  .video-card{
      transform:none;
      display:block;

  }

  .section-video__actions{

      flex-direction:column;
      align-items:flex-start;

  }

  .btn-edital{

      width:100%;

  }

  .btn-video{

      width:100%;
      justify-content:space-between;

  }

  /* Section resultados */
  :root {
    --fs-results-badge-title: 4rem;
    --fs-results-badge-number: 1.75rem;
    --fs-results-number: 3.5rem;
    --fs-results-text: 1.5rem;
    --fs-results-footer: 1.375rem;
  }
  .results-wrapper{
      width: 90%;
      margin-right: 0;
      padding-top: 10%;
  }
  .results-badge {
    display: flex;
    margin-bottom: 0;
    gap: var(--space-sm);
    padding: 10px;
    width: 90%;

  }

  .results-badge__number {
    border-width: 4px;
    padding: 0 var(--space-2xs);
  }

  .results-panel {
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--space-2xl) + 1rem) var(--space-md) var(--space-lg);
  }

  .results-panel__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .results-panel__column {
    gap: var(--space-md);
  }

  .results-panel__media {
    align-items: stretch;
  }

  .results-panel__photo-wrap {
    max-width: 100%;
  }
  .results-badge img {
    width: 4rem;
  }
    .results-badge__text {
    font-size: 25px;
    margin-bottom:0;
  }
  .results-panel__medals{
    padding:0
  }
  #section-9{text-align: center; padding-top:10vw; padding-bottom: 10vw }
  #section-9 .logo{margin:auto}
  #section-4, #section-5, #section-6, #section-7, #section-8{
    background: url('../img/bg-section-4-mbl.png');
    background-position: bottom center !important;
    background-size:cover!important;
    justify-content: flex-start !important;
    min-height: 100vh;
    position: relative;
    background-repeat: no-repeat!important;
  }
  #section-5{background: url('../img/bg-section-5-mbl.png'); min-height: 120vh;}
  #section-6{background: url('../img/bg-section-6-mbl.png'); min-height: 1300px;}
  #section-7{background: url('../img/bg-section-7-mbl.png'); min-height: 1200px;}
  #section-8{background: url('../img/bg-section-8-mbl.png'); min-height: 1100px;}
  .btn-inscreva-se{position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);}
  .diferenciais__item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .title-segmentos {
    font-size: 2rem;
    text-align: center;
  }
  .descricao-segmentos {
    text-align: center;
  }
  section .row, .competition__shell{
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top:5vw
  }

  .col-mbl{flex-direction: column!important; gap: 1rem!important}
  .competition__shell{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    gap: 0;
  }
  .benefits-grid { grid-template-columns: repeat(1, minmax(0, 1fr));}
  .competition__video {
    aspect-ratio: 9 / 16;
    width: min(73.2%, 467px);
    min-height: 0;
    margin: clamp(18px, 4.2vw, 27px) auto 0;
  }
  .results-footer{width: 100%}
  .section-results{padding: 0}

  .form-card {
    height: 49rem;
  }
  #section-4{
    min-height: 900px;
  }
  #section-5{
    min-height: 1000px;
  }

  .form-embed__iframe {
    width: 100%;
    min-height: 500px;
  }
}

@media (max-width: 30rem) {
  
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  
  .hero__locations {
    flex-direction: row;
    justify-content:center;
    align-items: center;
    gap: 10px;
    padding-left: 0;
  }
}
