/*
Theme Name: MixtapeWP Child
Theme URI: https://mixtape.qodeinteractive.com
Description: A child theme of MixtapeWP Theme
Author: Select Themes
Author URI: http://themeforest.net/user/select-themes
Version: 1.0.1
Text Domain: mixtapewp
Template: mixtapewp
*/

/* ==================================================
   VARIÁVEIS
================================================== */

:root {
  --quase-escuro: #111111;
  --branco-quase-novo: #fdf9e2;
  --limaozin: #e8f666;
  --amarelo-ovim: #fdb124;
  --azulao: #4101f5;
  --violeta: #634dff;
  --orquidea-mineira: #f239a6;
  --salmao: #fe4d5b;
  --bolo-de-cenoura: #ff5a23;
}

/* ==================================================
   SELECTION
================================================== */

::selection {
  background: var(--limaozin) !important;
  color: var(--quase-escuro) !important;
}

::-moz-selection {
  background: var(--limaozin) !important;
  color: var(--quase-escuro) !important;
}

/* ==================================================
   UTILITÁRIOS
================================================== */

.d-none {
  display: none !important;
}

@media (min-width: 1025px) {
  .fullwidth-real .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ==================================================
   EVENTOS CTA
================================================== */

.cj-eventos-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.cj-evento-item {
  text-align: center;
}

.cj-evento-item a {
  display: inline-block;
}

.cj-evento-item img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

.cj-evento-item a:hover img {
  animation: cj-bob 0.5s ease-in-out infinite alternate;
  filter: brightness(0.8);
}

/* ==================================================
   FOOTER
================================================== */
img.logo-atma {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  will-change: opacity, transform;
}

img.logo-atma:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

/* DESKTOP - alinhamento vertical no footer bottom */
.qodef-footer-bottom-holder .qodef-two-columns-50-50-inner {
  display: flex;
  align-items: center; /* centraliza verticalmente */
}

.qodef-footer-bottom-holder .qodef-column {
  display: flex;
}

.qodef-footer-bottom-holder .qodef-column-inner {
  display: flex;
  align-items: center; /* centraliza verticalmente */
  width: 100%;
}

/* Coluna esquerda */
.qodef-footer-bottom-holder .qodef-column:first-child .qodef-column-inner {
  justify-content: flex-start;
  text-align: left;
}

/* Coluna direita */
.qodef-footer-bottom-holder .qodef-column:last-child .qodef-column-inner {
  justify-content: flex-end;
  text-align: right;
}

/* ==================================================
   TICKER
================================================== */

.cj-ticker {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
}

.cj-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cjTicker 40s linear infinite;
}

.cj-ticker-track img {
  height: 60px !important;
  width: auto !important;
  max-height: 60px;
  object-fit: contain;
  margin-right: 40px;
}

/* ==================================================
   HOME LOGOS
================================================== */

.cj-home-logos img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================================================
   HELPERS DE IMAGEM
================================================== */

/* Espelho vertical */
.img-vmirror img {
  transform: scaleY(-1);
}

/* Espelho horizontal */
.img-hmirror img {
  transform: scaleX(-1);
}

/* Espelho duplo */
.img-vmirror.img-hmirror img {
  transform: scale(-1, -1);
}

/* ==================================================
   ANIMAÇÕES
================================================== */

@keyframes cj-bob {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}

@keyframes cjTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================================================
   LISTA - NÚMEROS (SHORTCODE)
================================================== */

.numeros-lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Item */
.numeros-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

/* Remove margem do último */
.numeros-item:last-child {
  margin-bottom: 0;
}

/* Ícone */
.numeros-icone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmao);
  font-size: 22px;
  line-height: 1;
}

.numeros-icone i {
  display: block;
}

/* Texto */
.numeros-texto {
  font-size: 16px;
  line-height: 1.5;
  color: var(--quase-escuro);
}

/* =========================
   VARIAÇÕES OPCIONAIS
========================= */

/* Alinhamento central */
.numeros-lista.align-center .numeros-item {
  align-items: center;
}

/* Ícone maior */
.numeros-lista.icon-lg .numeros-icone {
  font-size: 22px;
}

/* Ícone menor */
.numeros-lista.icon-sm .numeros-icone {
  font-size: 14px;
}

/* Texto maior */
.numeros-lista.text-lg .numeros-texto {
  font-size: 20px;
}

/* Texto menor */
.numeros-lista.text-sm .numeros-texto {
  font-size: 14px;
}

/* =========================
   INTERAÇÃO
========================= */

.numeros-item:hover .numeros-icone {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1024px) {
  .numeros-texto {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .numeros-item {
    gap: 10px;
    margin-bottom: 12px;
  }

  .numeros-icone {
    font-size: 18px;
  }

  .numeros-texto {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .numeros-item {
    gap: 8px;
  }

  .numeros-texto {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ==================================================
   ALINHAMENTO RESPONSIVO
================================================== */

/* DESKTOP (>= 1025px) → alinhado à direita */
@media (min-width: 1025px) {
  .numeros-lista {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* empurra tudo pra direita */
  }

  .numeros-item {
    justify-content: flex-end;
    text-align: right;
  }
}

/* TABLET + MOBILE (<= 1024px) → alinhado à esquerda */
@media (max-width: 1024px) {
  .numeros-lista {
    align-items: flex-start;
  }

  .numeros-item {
    justify-content: flex-start;
    text-align: left;
  }
}

/* ==================================================
   RESPONSIVIDADE
================================================== */

/* TABLET */
@media (max-width: 1024px) {
  .cj-ticker {
    height: 30px;
  }

  .cj-ticker-track img {
    height: 30px !important;
    max-height: 30px;
    margin-right: 20px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .cj-ticker {
    height: 20px;
  }

  .cj-ticker-track img {
    height: 20px !important;
    max-height: 20px;
    margin-right: 10px;
  }

  .qodef-footer-bottom-holder .qodef-two-columns-50-50-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qodef-footer-bottom-holder .qodef-column {
    width: 100% !important;
    margin-bottom: 10px;
    float: none !important;
  }

  .qodef-footer-bottom-holder .qodef-column-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .qodef-footer-bottom-holder .qodef-footer-bottom-left {
    text-align: center !important;
    width: 100%;
  }

  .qodef-footer-bottom-holder img {
    display: block;
    margin: 0 auto;
  }
}
