/* =====================
   RESET GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  background: #ffffff;
}

/* =====================
   HEADER FIXA
===================== */
.mc-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 64px;
  background: rgba(0, 0, 0, 0.75);

  display: flex;
  align-items: center;
}

/* =====================
   CONTAINER CENTRAL
===================== */
.mc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 120px;


  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* CRÍTICO */
}

/* =====================
   LOGO
===================== */
.mc-logo {
  display: flex;
  align-items: center;
  
  
  
}

.mc-logo img {
  height: 28px;
  margin-right:-30px;
}

/* =====================
   LINKS À DIREITA
===================== */
.mc-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* GARANTE DIREITA */
  gap: 28px;
}

/* =====================
   LINKS
===================== */
/* LINKS */
.mc-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  height: 64px;                 /* mesma altura da header */
  display: flex;
  align-items: center;
}

/* UNDERLINE NO LIMITE DA HEADER */
.mc-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;                    /* LIMITE DA HEADER */

  width: 0;
  height: 2px;
  background: #ffffff;

  transition: width 0.25s ease;
}

/* HOVER */
.mc-link:hover::after {
  width: 100%;
}

/* LINK ATIVO */
.mc-link.is-active::after {
  width: 100%;
}


/* HOVER */
.mc-link:hover::after {
  width: 100%;
}

/* LINK ATIVO */
.mc-link.is-active::after {
  width: 100%;
}

/* =====================
   CONTEÚDO
===================== */
.mc-content {
  margin-top: 64px; /* compensação da header fixa */
  min-height: 100vh;
  background: #ffffff;
}

/* =====================
   FOOTER
===================== */
.mc-footer {
  position: fixed;
  bottom: 0;
  left: 0;

  background: #000000;
  height: 48px;
  width: 100%;

  display: flex;
  align-items: center;

  z-index: 1000;
}

.mc-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 120px;          /* mesmo padding da header */

  width: 100%;
  text-align: right;

  font-size: 12px;
  color: #aaaaaa;
}

/* =====================
   HERO / SESSÃO PRINCIPAL
===================== */
.mc-hero {
  position: relative;

  background: url("../img/img_bg.jpg") no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;

  display: flex;
  align-items: flex-start;

  padding-top: 120px;
  padding-bottom: 80px;
}

/* OVERLAY ESCURO */
.mc-hero::before {
  content: "";
  position: fixed;
  top: 64px;
  left: 0;

  width: 100%;
  height: calc(100vh - 64px);

  background: rgba(0, 0, 0, 0.15); /* nível de escurecimento */
  pointer-events: none;
  z-index: 0;
}





/* IMAGEM FIXA À DIREITA COM SOMBRA */
.mc-hero::after {
  content: "";
  position: fixed;
  top: 64px;
  right: -120px; /* empurra mais para a direita */

  width: 65%;
  height: calc(100vh - 64px);

  background: url("../img/bg_minha-cmsi.png") no-repeat right 65%;
  background-size: 95%;

  filter: drop-shadow(-30px 30px 40px rgba(0, 0, 0, 0.15));
  pointer-events: none;
}




/* CONTEÚDO */
.mc-hero-content {
  max-width: 1280px;
  padding: 0 120px;
  width: 50%;
  max-width: 1280px;
  padding: 0 120px;
}

/* TÍTULO */
.mc-hero-content h1 {
  font-size: 25px;      /* antes estava 36px */
  font-weight: 600;
  margin-bottom: 28px;
  color: #000000;
}

.mc-hero-content h2 {
  font-size: 20px;      /* antes estava 36px */
  font-weight: 600;
  margin-bottom: 28px;
  color: #000000;
}

.mc-hero-content h3 {
  font-size: 16px;      /* antes estava 36px */
  font-weight: 600;
  margin-bottom: 28px;
  color: #000000;
}
.mc-hero-content p {
  font-size: 20px;      /* antes estava 36px */
  font-weight: 600;
  margin-bottom: 28px;
  color: #000000;
}


/* AÇÕES */
.mc-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

/* BOTÕES */
.mc-btn {
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;   /* efeito suave */
}


.mc-btn-primary {
  background: #6f6f6f;   /* cinza */
  color: #ffffff;
}

.mc-btn-primary:hover {
  background: #8a8a8a;   /* cinza mais claro no hover */
}

.mc-btn-secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #6f6f6f;
}

.mc-btn-secondary:hover {
  color: #555555;   /* efeito hover mais claro */
}


/* TEXTO */
.mc-hero-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
  max-width: 520px;
}

/* LINKS DAS LOJAS */
.mc-app-links {
  display: flex;
  gap: 16px;
  margin-top: 0px;
  align-items: center;
}

/* Google Play */
.mc-app-google img {
  height: 60px;   /* tamanho padrão */
}

/* App Store (normalmente maior mesmo) */
.mc-app-apple img {
  height: 40px;   /* um pouco menor */
}

/* Hover comum */
.mc-app-links img {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mc-app-links img:hover {
  opacity: 0.85;
}

.mc-modal {

  display: none;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.7);

  justify-content: center;
  align-items: center;

}

.mc-modal-box {

  background: #ffffff;

  padding: 30px;

  width: 320px;

  border-radius: 6px;

  color: #000000;

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

}


.mc-modal-box input {

  width: 100%;

  padding: 12px;

  margin-top: 10px;

  background: #f5f5f5;

  border: 1px solid #ccc;

  color: #000;

}


.mc-modal-box button {

  width: 100%;

  padding: 12px;

  margin-top: 15px;

  background: #000;

  color: #fff;

  border: none;

  font-weight: bold;

  cursor: pointer;

}



.mc-close {

  margin-top: 10px;

  text-align: center;

  cursor: pointer;

  color: #888;

}

body {
  padding-bottom: 48px; /* mesma altura do footer */
}
