/* ----------------------------------------------------------
    Theme Name: Prêmio Eletromidia Theme
    Theme URI: https://marcasite.com.br
    Author: Henrique Quintino
    Author URI: https://www.linkedin.com/in/henrique-quintino/
    Description: Tema oficial do(a) Prêmio Eletromidia criada pela Marcasite
    Requires at least: 6.4
    Tested up to: 6.4
    Requires PHP: 7.0
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    ----------------------------------------------------------

/***************************************************************************
       Fonts
***************************************************************************/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***************************************************************************
       Variáveis
***************************************************************************/

:root {
  --cor-branco: white;
  --cor-preto: black;
  --cor-laranja: #ff4e00;
  --cor-amarelo: #ffc400;

  --font-Poppins: "Poppins", sans-serif;

  --font-extralight: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

/***************************************************************************
        All
***************************************************************************/

.transition_on *,
.transition_on {
  transition: ease 0.5s all !important;
}

html,
body {
  margin: 0;
  overflow-x: clip;
}

body {
  position: relative;
}

* {
  margin: 0;
  box-shadow: 0 0 0 0;
  border: 0 none;
  outline: 0;
  font-family: var(--font-Poppins);
}

.text-white {
  color: var(--cor-branco);
}

a,
a:hover {
  text-decoration: none;
  color: var(--cor-branco);
}

section {
  margin-bottom: 120px;
  position: relative;
}

h2,
.categorias h2>span {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: var(--font-regular);
  margin-bottom: 0px;
  color: var(--cor-branco);
}

h2>span {
  font-size: 3.125rem;
  line-height: 3.375rem;
  font-weight: var(--font-bold);
  color: var(--cor-amarelo);
}

p,
p>span {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--cor-branco);
  margin-bottom: 10px;
}

p {
  font-weight: var(--font-extralight);
  margin-bottom: 0;
}

p>span {
  font-weight: var(--font-medium);
}

img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.btn-preto {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: fit-content;
  height: 59px;
  padding: 0 40px;
  font-size: 1.125rem;
  color: var(--cor-branco);
  background-color: var(--cor-preto);
  border: 0;
  font-weight: var(--font-medium) !important;
  transition: all 0.3s ease-in-out;
  border-radius: 32px 12px 32px 12px;
  gap: 5px;
}

.btn-preto:hover {
  transform: scale(1.02);
  color: var(--cor-branco) !important;
}

.btn-preto img {
  width: 18px;
  height: 18px;
}

.box-image {
  width: 100%;
  max-width: 1650px;
  padding: 0 1rem;
  margin: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.box-image img {
  max-width: fit-content;
}

header .logo,
.area-footer .logo {
  max-width: fit-content;
  height: 80px;
  object-fit: contain;
}

/***************************************************************************
		Header
***************************************************************************/

header {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 9;
  padding-top: 30px;
}

header.drop {
  background: var(--cor-laranja);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-top: 0px;
}

header #menu-primeiro {
  min-height: 130px;
  display: flex;
  align-items: center;
}

header ul {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: baseline;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

header ul .nav-item .nav-link {
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: var(--cor-branco);
  font-weight: var(--font-extralight);
  transition: all 0.3s ease-in-out;
}

header ul .nav-item .nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: transparent;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

header ul .nav-item.menusegundo .nav-link::after {
  display: none;
}

header ul .nav-item .nav-link:hover::after,
header ul .nav-item.active .nav-link::after {
  background-color: var(--cor-amarelo);
}

header ul .nav-item.active .nav-link {
  font-weight: var(--font-medium);
}

#menu-primeiro .submenu,
.area-footer .submenu {
  min-width: 100px;
  top: calc(100% - 9px);
  list-style: none;
  color: var(--cor-branco);
}

#menu-primeiro .nav-item .submenu .nav-link,
.area-footer .nav-item .submenu .nav-link {
  color: var(--cor-branco);
  border-bottom: 2px solid transparent;
}

#menu-primeiro .nav-item .submenu .nav-link:hover,
#menu-primeiro .nav-item .submenu .nav-item.active .nav-link {
  border-color: var(--cor-amarelo);
}

#menu-primeiro .menusegundo:hover .nav-link .seta,
.area-footer .menusegundo:hover .nav-link .seta,
header #opt_menu .nav-item.ativo:hover .nav-link .seta {
  transform: rotate(-180deg);
}

#menu-primeiro .menusegundo .nav-link,
.area-footer .menusegundo .nav-link {
  display: flex;
  align-items: center;
  gap: 2px;
}

#menu-primeiro .menusegundo .nav-link .seta,
.area-footer .menusegundo .nav-link .seta,
header #opt_menu .nav-item .nav-link .seta {
  transform: rotate(0deg);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(https://premioeletromidia.com.br/wp-content/uploads/2025/08/seta-menu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

header ul li ul,
.area-footer ul li ul {
  width: max-content;
  max-width: 280px;
  position: absolute;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  width: max-content;
  max-width: 280px;
  position: absolute;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  float: none;
  margin: 0px 0px;
  padding: 20px 35px 20px 35px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: var(--cor-preto);
  -webkit-box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
  box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
  align-items: start;
  gap: 0;
  justify-content: unset;
}

header ul li ul::before,
.area-footer ul li ul::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cor-amarelo);
}

header ul li:hover>ul,
.area-footer ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  display: block;
}

/***************************************************************************
        Banner Principal
***************************************************************************/

section.banner-principal {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background-image: url(https://premioeletromidia.com.br/wp-content/uploads/2025/08/banner-principal.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vw;
	max-height: 1095px;
}

section.banner-principal.novo {
  background-image: url(https://premioeletromidia.com.br/wp-content/uploads/2025/08/banner-secundario.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 120px;
  padding-top: 80px;
 	height: 100vw;
    max-height: 447px;
    min-height: auto;
}

.banner-principal h2 {
  font-size: 2.5rem;
  max-width: 580px;
  line-height: 2.75rem;
  font-weight: var(--font-semibold);
}

.banner-principal h2>span {
  font-size: 3.5rem;
  line-height: 3.75rem;
}

.banner-principal.novo h2 {
  max-width: 100%;
}

.banner-principal p,
.banner-principal p>span {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.banner-principal p {
  max-width: 440px;
}

/***************************************************************************
        Inscrições
***************************************************************************/

.inscricoes h2,
.vote h2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inscricoes .box-image {
  margin-top: -40px;
}

.inscricoes .awards,
.quem-participa .awards {
  max-width: fit-content;
  font-size: 1.5625rem;
  line-height: 1.75rem;
  font-weight: var(--font-semibold);
  color: var(--cor-branco);
  padding: 16px 20px;
  border-radius: 9px;
  border: 2px solid var(--cor-amarelo);
}

.inscricoes .text {
  max-width: 410px;
}

.inscricoes .box-arrow {
  display: flex;
  align-items: center;
  float: right;
  margin-right: 50px;
  margin-bottom: -40px;
  gap: 5px;
}

.inscricoes .box-arrow img {
  width: 54px;
  height: 54px;
}

.inscricoes .box-arrow p {
  font-weight: var(--font-medium);
  max-width: 155px;
}

.inscricoes .thumb {
  max-width: fit-content;
  height: auto;
  cursor: pointer;
}

#videoPopup {
  backdrop-filter: blur(5px);
}

#videoPopup button {
  transition: all 0.3s ease;
}

#videoPopup button:hover {
  background: var(--cor-amarelo) !important;
  transform: scale(1.1);
}

.shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--cor-preto);
  border-radius: 70px 50px 50px 70px;
  transform: skewY(3deg);
}

.shape::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 115px;
  background: var(--cor-preto);
  border-radius: 0 0 50px 70px;
  transform: skewY(-3deg);
}

.shape .row.transform {
  transform: skewY(-3deg);
  position: relative;
  z-index: 7;
}

/***************************************************************************
        Videos Vencedores
***************************************************************************/

section.videos-vencedores {
  margin-bottom: 170px;
}

.videos-vencedores .box-image {
  margin-top: -10px;
}

.videos-vencedores h2 {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

.videos-vencedores .text {
  max-width: 320px;
}

.videos-vencedores .item video {
  width: 100%;
  border-radius: 22px;
}

.videos-vencedores .owl-controls {
  display: none;
}

.videos-vencedores .buttons {
  position: absolute;
  z-index: 9;
  left: 16px;
  bottom: 10px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.videos-vencedores .buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.361);
  border: 2px solid var(--cor-branco);
}

.videos-vencedores .buttons button img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.videos-vencedores .buttons button.prev img {
  transform: rotate(180deg);
}

.videos-vencedores .item {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
}

.videos-vencedores .content {
  display: flex;
  flex-direction: column;
  max-width: fit-content;
}

.videos-vencedores .content .title {
  max-width: fit-content;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.videos-vencedores .content .title h3 {
  font-size: 1.5625rem;
  line-height: 1.8125rem;
  color: var(--cor-preto);
  font-weight: var(--font-semibold);
  margin-bottom: 0;
}

.videos-vencedores .content .title img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.videos-vencedores .content p {
  color: var(--cor-preto);
  font-weight: var(--font-regular);
}

.videos-vencedores .shape,
.videos-vencedores .shape .row {
  transform: none;
}

.videos-vencedores .shape::after {
  display: none;
}

/***************************************************************************
        Vote
***************************************************************************/

.vote .container,
.vote .container .row,
.processo .container,
.processo .container .row,
.processo .container .row .col-lg-6,
.vote .container .row .col-lg-5,
.premiacao .container,
.premiacao .container .row,
.premiacao .container .row .col-lg-11 {
  height: 445px;
}

.vote .container .row .col-lg-5 {
  margin-top: -20px;
}

.vote p {
  max-width: 230px;
}

.vote.index p {
  max-width: 100%;
}

.vote .shape::after {
  top: -30px;
  bottom: auto;
  border-radius: 50px 70px 0 0;
}

/***************************************************************************
        Partners
***************************************************************************/

section.partners {
  margin-left: 1rem;
  margin-right: 1rem;
}

.partners .shape,
.partners .shape::after {
  background: #f9f7f7;
}

.partners .shape {
  padding-top: 55px;
  padding-bottom: 25px;
  max-width: 1650px;
  margin: auto;
}

.partners h2 {
  color: var(--cor-preto);
  font-weight: var(--font-semibold);
}

.partners img {
  max-width: fit-content;
  height: auto;
}

/***************************************************************************
        Vencedores
***************************************************************************/

.vencedores .card,
.vencedores .card .image-box .thumb {
  border-radius: 50px;
}

.vencedores .card {
  display: flex;
  flex-direction: column;
  background-color: var(--cor-laranja);
  transform: skewY(-3deg);
  border: 0;
  padding-bottom: 55px;
  position: relative;
}

.vencedores .card .image-box {
  position: relative;
  overflow: hidden;
}

.vencedores .card .image-box .thumb {
  object-fit: cover;
  height: 260px;
}

.vencedores .card .image-box .play {
  width: 89px;
  height: 89px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.vencedores .card .image-box .play,
.vencedores .card .content,
.vencedores .card .btn-preto {
  transform: skewY(3deg);
}

.vencedores .card .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 2.5rem 1rem;
}

.vencedores .card .content h3,
.vencedores .card .content ul li,
.vencedores .card .content ul li>span {
  color: var(--cor-branco);
}

.vencedores .card .content h3 {
  font-size: 1.5625rem;
  line-height: 1.8125rem;
  font-weight: var(--font-bold);
}

.vencedores .card .content ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vencedores .card .content ul li,
.vencedores .card .content ul li>span {
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}

.vencedores .card .content ul li>span {
  font-weight: var(--font-medium);
}

.vencedores .card .content ul li {
  font-weight: var(--font-extralight);
  margin-bottom: 0;
}

.vencedores .card .btn-preto {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
}

/***************************************************************************
        Popup Customizado
***************************************************************************/

.popup-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.popup-link:hover {
  text-decoration: none;
  color: inherit;
}

.campaign-details-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
}

.campaign-details-popup.active {
  display: flex;
  opacity: 1;
}

/* Garante que o carrossel carregue corretamente mesmo escondido */
.campaign-details-popup .owl-carousel {
  visibility: visible !important;
}

.campaign-details-popup:not(.active) {
  visibility: hidden;
  pointer-events: none;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.popup-content {
  position: relative;
  background: var(--cor-preto);
  padding: 30px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  z-index: 2;
  margin: auto;
}

/* Garante que vídeos não vazem do container */
.popup-content video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container do carrossel no popup */
.popup-content .col-md-8 {
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--cor-branco);
  font-size: 40px;
  cursor: pointer;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--cor-laranja);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.popup-header h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--cor-laranja);
}

.meta-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--cor-branco);
}

.popup-body {
  color: #999;
}

.team-info,
.campaign-info {
  margin-bottom: 25px;
}

.team-info h3,
.campaign-info h3 {
  color: var(--cor-branco);
  margin: 15px 0 10px;
  font-size: 1.2em;
  font-weight: bold;
}

/***************************************************************************
        Login
***************************************************************************/

.login .shape {
  padding: 55px 1rem;
}

.login .shape::after {
  height: 130px;
}

.login h2 {
  display: flex;
  flex-direction: column;
}

.login form {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login form input {
  padding-left: 1rem;
  border-radius: 8px;
  background-color: var(--cor-branco);
  height: 54px;
}

.login form .btn-preto {
  max-width: 100%;
  background-color: var(--cor-laranja);
}

.login .links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login .links a {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-decoration: underline;
  font-weight: var(--font-light);
}

.login .links hr {
  width: 1px;
  height: 100%;
  background-color: var(--cor-branco);
  opacity: 1;
  margin: 0;
  border: 0;
}

/***************************************************************************
        Quem Participa
***************************************************************************/

section.quem-participa,
section.processo,
section.categorias {
  display: flex;
  align-items: center;
}

section.quem-participa,
section.processo {
  min-height: 580px;
}

.quem-participa .shape,
.quem-participa .shape .row,
.categorias .shape,
.categorias .shape .row {
  transform: skewY(0deg);
}

.quem-participa .shape::after,
.categorias .shape::after {
  height: 132px;
  bottom: -38px;
}

.quem-participa h2 {
  display: flex;
  flex-direction: column;
}

.quem-participa p {
  max-width: 750px;
}

.quem-participa .awards {
  background-color: #ffffff1a;
}

/***************************************************************************
        Processo
***************************************************************************/

.processo h2 {
  display: flex;
  flex-direction: column;
}

.processo .shape,
.votos .shape {
  transform: skewY(-3deg);
}

.processo .shape .row.transform,
.processo .shape::after,
.votos .shape::after,
.votos .shape .row.transform {
  transform: skewY(3deg);
}

/***************************************************************************
        Categorias
***************************************************************************/

section.categorias {
  min-height: 680px;
}

.categorias .shape {
  padding: 55px 1rem;
}

.categorias h2>span {
  font-weight: var(--font-bold);
}

.categorias .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.categorias .content h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--cor-amarelo);
}

/***************************************************************************
        Votos
***************************************************************************/

.votos .box-shape {
  width: 100%;
  max-width: 1650px;
  padding: 0 1rem;
  margin: auto;
}

.votos .shape {
  padding-top: 110px;
  padding-bottom: 75px;
}

.votos .shape::after {
  bottom: -42px;
  height: 128px;
}

.votos .box-votos {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.votos .example,
.votos .categoria {
  display: flex;
  flex-direction: column;
}

.votos .example {
  max-width: 710px;
}

.votos .description,
.votos .categoria {
  max-width: 940px;
}

.votos .categoria span {
  color: var(--cor-laranja);
  text-transform: uppercase;
}

/***************************************************************************
        Restrições
***************************************************************************/

.restricoes span {
  color: var(--cor-branco);
}

/***************************************************************************
		Voto popular
***************************************************************************/

.voto-popular h2 {
  color: var(--cor-laranja);
  font-weight: var(--font-semibold);
}

.voto-popular form {
  display: flex;
  align-items: center;
}

.voto-popular form input {
  padding: 16px;
  background-color: var(--cor-branco);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 0;
  border-radius: 6px;
}

.voto-popular form button {
  padding: 16px 24px;
  background-color: var(--cor-laranja);
  color: var(--cor-branco);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  margin-left: -5px;
}

.voto-popular .card {
  background-color: var(--cor-preto);
}

.voto-popular .card h3 {
  color: var(--cor-amarelo) !important;
}

.voto-popular .card .btn-preto {
  background-color: var(--cor-laranja);
}

/***************************************************************************
        Footer
***************************************************************************/

section.area-footer {
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  background-image: url(https://premioeletromidia.com.br/wp-content/uploads/2025/08/banner-footer.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 263px;
  position: relative;
  z-index: 8;
  margin: 0 !important;
}

.area-footer .submenu {
  top: calc(100% - -9px);
}

.area-footer ul li,
.area-footer a,
.area-footer a:hover {
  color: var(--cor-branco);
}

.area-footer .social-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.area-footer .social-media img,
.area-footer .box-contato a img {
  object-fit: cover;
}

.area-footer .social-media img {
  width: 34px;
  height: 34px;
}

.area-footer ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-footer ul li {
  font-weight: var(--font-light);
  position: relative;
}

footer {
  width: 100%;
  position: absolute;
  z-index: 8;
  background-color: var(--cor-preto);
  padding: 10px 0;
}

footer .logo-marcasite {
  height: 13px;
  object-fit: cover;
  width: auto;
}

/***************************************************************************
        Responsivo
***************************************************************************/

.mobile {
  display: none;
}

@media (min-width: 1981px) {
	section.banner-principal {
		min-height: 1195px;
	}
	
	section.banner-principal.novo {
		max-height: 480px;
	}
}

@media (min-width: 1400px) and (max-width: 1470px) {

  .premiacao h2,
  .premiacao p {
    padding-left: 2rem;
  }
}

@media (min-width: 1400px) {
  .videos-vencedores .shape {
    background-color: transparent;
    border-radius: 0;
  }

  section.votos {
    margin-bottom: 200px;
  }
}

@media (max-width: 1399px) {
  section {
    margin-bottom: 80px;
  }
	
  section.banner-principal,
  section.banner-principal.novo {
    margin-bottom: 60px;
  }

  section.videos-vencedores {
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: 120px;
  }

  .videos-vencedores .shape {
    padding-top: 55px;
    padding-bottom: 55px;
    margin: auto;
  }

  .videos-vencedores .box-image {
    display: none;
  }

  .vote .shape,
  .vote .shape::after,
  .processo .shape,
  .processo .shape::after,
  .premiacao .shape,
  .premiacao .shape::after {
    background: var(--cor-laranja);
  }

  .videos-vencedores .item {
    margin: 5px;
    border-radius: 22px;
  }

  .videos-vencedores .item video {
    border: 1px solid #eeeeee;
    box-shadow: 0px 4px 10px 0px rgba(105, 104, 102, 0.27);
  }

  .videos-vencedores .content {
    gap: 5px;
  }

  .videos-vencedores .content .title h3,
  .videos-vencedores .content p {
    color: var(--cor-branco);
  }

  .videos-vencedores .content .title img {
    filter: invert(1);
  }

  .videos-vencedores .col-lg-5 {
    align-items: start;
  }

  section.processo {
    min-height: 420px;
    padding-top: 20px;
  }

  section.categorias {
    min-height: 620px;
  }

  .categorias .content h3,
  .categorias .content p {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  section.votos {
    margin-bottom: 140px;
  }
}

@media (min-width: 1200px) and (max-width: 1280px) {

  .premiacao h2,
  .premiacao p {
    padding-left: 2rem;
  }
}

@media (min-width: 1200px) {

  .processo .shape,
  .processo .shape .row,
  .categorias .shape,
  .categorias .shape .row,
  .premiacao .shape,
  .premiacao .shape .row {
    transform: none !important;
  }

  .processo .shape,
  .categorias .shape,
  .premiacao .shape {
    background: transparent;
    border-radius: 0;
  }

  .processo .shape::after,
  .categorias .shape::after,
  .premiacao .shape::after {
    display: none;
  }
}

@media (max-width: 1199px) {
  section {
    margin-bottom: 40px;
  }

  section.videos-vencedores {
    margin-bottom: 55px;
  }

  section.votos {
    margin-bottom: 80px;
  }

  .processo .box-image,
  .categorias .box-image,
  .premiacao .box-image {
    display: none;
  }

  .processo .offset-lg-6,
  .categorias .col-lg-7,
  .premiacao .col-lg-11 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 0 !important;
    width: 100%;
  }

  section.processo,
  section.categorias,
  section.premiacao {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  section.categorias {
    min-height: 520px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  header ul {
    justify-content: end;
    gap: 20px;
  }

  .area-footer h2,
  .quem-participa p {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }

  .inscricoes .box-image img {
    height: 385px;
  }

  .inscricoes .box-arrow {
    margin-bottom: -20px;
  }

  .area-footer .logo {
    max-width: 210px;
  }

  section.processo {
    min-height: 320px;
    margin-top: -60px;
  }
}

@media (min-width: 992px) {
  .mobile {
    display: none !important;
  }

  .inscricoes .shape,
  .inscricoes .shape .row,
  .quem-participa .shape,
  .quem-participa .shape .row,
  .vote .shape,
  .vote .shape .row {
    transform: none;
  }

  .inscricoes .shape,
  .quem-participa .shape,
  .vote .shape {
    background: transparent;
    border-radius: 0;
  }

  .inscricoes .shape::after,
  .quem-participa .shape::after,
  .vote .shape::after {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  section.banner-principal {
    min-height: 1400px;
  }
}

@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: block;
  }

  section {
    margin-bottom: 80px !important;
  }

  header {
    display: grid;
    padding-top: 0;
  }

  header #menu-primeiro .col-md-9 {
    justify-content: end !important;
  }

  header #menu-primeiro .hamburguer-bt {
    display: inline-block;
    height: fit-content;
    min-height: 32px;
    float: right;
  }

  header #menu-primeiro .hamburguer-bt .hamburguer_line {
    background: var(--cor-branco);
    width: 30px;
    height: 4px;
    margin: 5px 0;
  }

  header #menu-primeiro .hamburguer-bt.ativo .hamburguer-top {
    transform: rotate(45deg);
    margin-top: 11px;
  }

  header #menu-primeiro .hamburguer-bt.ativo .hamburguer-middle {
    opacity: 0;
  }

  header #menu-primeiro .hamburguer-bt.ativo .hamburguer-bottom {
    transform: rotate(-45deg);
    margin-top: -18px;
  }

  header #opt_menu {
    position: fixed;
    height: 100%;
    width: 320px;
    background: var(--cor-branco);
    z-index: 99;
    right: -150%;
    top: 130px;
    padding: 10px;
    display: block;
    overflow: scroll;
  }

  header #opt_menu li {
    display: block;
  }

  header #opt_menu .area-btn a {
    margin: 0 auto;
  }

  header #opt_menu.ativo {
    right: 0;
  }

  header .fundo_menu {
    background: #00000096;
    width: 100%;
    height: 100%;
    top: 130px;
    right: -100%;
    position: fixed;
    z-index: 89;
  }

  header .fundo_menu.ativo {
    right: 0;
  }

  header #opt_menu .nav-item {
    text-align: start;
    text-transform: uppercase;
  }

  header.drop #opt_menu,
  header.drop .fundo_menu {
    height: calc(100% - 115px);
  }

  #menu-primeiro {
    z-index: 100;
    background-color: var(--cor-laranja);
    padding-top: 0 !important;
  }

  #menu-primeiro.sombra {
    box-shadow: none !important;
  }

  #opt_menu ul {
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }

  #opt_menu .menusegundo .nav-link {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .area-footer li.menusegundo.ativo .submenu,
  #opt_menu li.menusegundo.ativo .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .area-footer li.menusegundo.ativo .submenu {
    position: absolute;
  }

  #opt_menu li.menusegundo.ativo .submenu {
    position: relative;
  }

  #opt_menu .submenu {
    margin-top: 10px;
  }

  #opt_menu ul .nav-link {
    color: var(--cor-preto);
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 600;
  }

  #opt_menu ul.submenu .nav-link,
  #opt_menu ul .nav-link.btn-preto {
    color: var(--cor-branco);
  }

  #opt_menu ul .nav-link:hover {
    color: var(--cor-preto);
  }

  #opt_menu .social {
    text-align: center;
    margin: 20px 0 0;
  }

  section.banner-principal,
  section.banner-principal.novo {
    margin-bottom: 30px;
  }

  section.banner-principal {
    background-image: url(https://premioeletromidia.com.br/wp-content/uploads/2025/08/banner-principal-mobile.png);
  }

  section.banner-principal.novo {
    padding-top: 0;
  }

  .banner-principal .container {
    margin-top: -640px;
  }

  .banner-principal.novo .container {
    margin-top: 0;
  }

  .responsivo {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    text-align: center;
  }

  .inscricoes .shape,
  .quem-participa .shape {
    padding-top: 55px;
  }

  .processo .shape {
    padding-top: 15px;
  }

  .processo .shape,
  .quem-participa .shape {
    padding-bottom: 75px;
  }

  .vote .shape,
  .premiacao .shape {
    padding-top: 35px;
    padding-bottom: 75px;
  }

  .inscricoes .col-lg-6 {
    align-items: center;
    text-align: center;
  }

  section.inscricoes,
  section.quem-participa,
  section.vote,
  section.votos,
  section.premiacao {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  section.votos {
    margin-bottom: 120px !important;
  }

  section.premiacao {
    margin-top: -20px;
  }

  .vote .container,
  .vote .container .row,
  .vote .container .row .col-lg-5,
  .votos .container,
  .votos .container .row,
  .votos .container .row .col-lg-5,
  .premiacao .container,
  .premiacao .container .row,
  .premiacao .container .row .col-lg-11 {
    height: 100%;
  }

  .vote .container .row .col-lg-5 {
    margin-top: 0;
  }

  section.area-footer {
    padding-top: 160px;
    padding-bottom: 70px;
  }

  .quem-participa .box-laranja {
    padding: 20px;
    border-radius: 12px;
    background-color: var(--cor-laranja);
  }

  .votos .shape {
    padding-top: 5.625rem;
    padding-left: 1.375rem;
    padding-right: 1.375rem;
  }

  section.restricoes {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  section.banner-principal {
    min-height: 1130px;
  }

  .banner-principal .container {
    margin-top: -540px;
  }

  .banner-principal.novo .container {
    padding-top: 0;
    margin-top: 0;
  }

  .banner-principal .col-12 {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .banner-principal h2,
  h2,
  .categorias h2>span {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .banner-principal h2>span,
  h2>span {
    font-size: 2.375rem;
    line-height: 2.625rem;
  }

  .banner-principal.novo h2 {
    font-size: 2.375rem;
    line-height: 2.625rem;
  }

  p,
  p>span,
  .banner-principal p {
    font-size: 1.125rem !important;
    line-height: 1.375rem !important;
  }

  .inscricoes .box-arrow {
    margin-right: 0;
    margin-bottom: -10px;
  }

  .shape,
  .shape::after {
    border-radius: 24px !important;
  }

  .popup-content {
    padding: 15px;
  }

  .popup-header h2 {
    font-size: 1.75em;
  }

  .video-wrapper {
    margin-bottom: 20px;
  }

  .popup-close {
    font-size: 30px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 575px) {
  .banner-principal.novo .col-12 {
    justify-content: center !important;
  }

  .area-footer ul {
    flex-direction: column;
  }

  .videos-vencedores .shape {
    padding-bottom: 80px;
  }

  .videos-vencedores .buttons {
    bottom: -60px;
  }

  .login .links a {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

@media (max-width: 467px) {
  .politica {
    flex-direction: column !important;
    gap: 10px;
  }

  .banner-principal p,
  .banner-principal p>span {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .btn-preto {
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 0 25px;
  }

  .login .links {
    max-width: fit-content;
    flex-direction: column;
  }

  .login .links hr {
    width: 100%;
    height: 1px;
    opacity: 0.5;
  }
}

.btn-topo {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 70px;
  left: 12px;
  background-color: var(--cor-preto);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 8;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.btn-topo:hover {
  background-color: var(--cor-laranja);
}

#btnTopo.show {
  opacity: 1;
}

.btn-topo.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0;
}

.btn-topo img {
  width: 17px;
  height: 15px;
  transform: rotate(-90deg);
}

.paginacao {
  margin-top: 30px;
}

.paginacao a {
  color: var(--cor-branco);
  border: none;
  background: var(--cor-azul);
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: var(--font-semibold);
  transition: ease 0.5s all;
}

.paginacao span,
.paginacao a:hover {
  background: var(--cor-azul-escuro);
  color: var(--cor-branco);
  border: none;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: var(--font-semibold) !important;
}

.whatsapp img {
  position: fixed;
  z-index: 8;
  bottom: 95px;
  right: 8px;
  width: 50px;
  height: 50px;
  opacity: 0.7;
  transition: ease 0.8s all;
}

.whatsapp a:hover img {
  opacity: 1;
  filter: drop-shadow(0px 0px 6px black);
}

.popup-content .owl-controls {
  display: none;
}

.popup-content .buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.popup-content .buttons .prev,
.popup-content .buttons .next {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--cor-laranja);
  border: 0;
  padding: 5px 20px;
  border-radius: 8px;
  color: var(--cor-branco);
  font-size: 1rem;
}

.slick-track {
  width: 100% !important;
}

.popup-content video {
  width: 100%;
  height: 400px;
}