@charset "UTF-8";
/*
Theme Name: Anita Carvalho
Theme URI: https://anitacarvalho.com.br
Description: Anita Carvalho
Author: Krynov
Version: 1.0
*/
/* ===== helpers ===== */
/*-----------------------------
  media query
-----------------------------*/
/*-----------------------------
  Colors
-----------------------------*/
/* ===== pages ===== */
/*
Theme Name: Anita Carvalho
Theme URI: https://anitacarvalho.com.br
Description: Anita Carvalho
Author: Krynov
Version: 1.0
*/
/* ===== helpers ===== */
/*-----------------------------
  media query
-----------------------------*/
/*-----------------------------
  Colors
-----------------------------*/
/* ===== pages ===== */
body {
  background: #000 url("") no-repeat center center fixed; /* Cor de fundo com espaço para imagem */
  background-size: cover;
  color: #fff;
  font-family: "Inter", sans-serif;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 20%, transparent 20%), radial-gradient(circle, rgba(255, 255, 255, 0.2) 20%, transparent 20%);
  background-size: 5px 5px; /* Tamanho do padrão pontilhado */
  opacity: 0.2; /* Ajuste a opacidade conforme necessário */
  pointer-events: none; /* Garante que o pseudo-elemento não interfira com a interação do usuário */
  z-index: -1; /* Coloca o pseudo-elemento atrás do conteúdo */
}

h1 {
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 3.3rem;
  font-weight: 800;
}

h2 {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 8px;
  font-family: "Inter", sans-serif;
}

h3 {
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h4 {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h5 {
  font-weight: 200;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-musicrioacademy {
  background-color: #fff;
  color: #5e8eea;
  border: 1px solid #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  margin-right: 10px;
}

.btn-musicrioacademy:hover {
  background: none;
  color: #fff;
  border: 2px solid #5e8eea;
}

.header {
  position: relative;
}

.logo-header {
  height: 60px;
  margin-left: 4%;
}

.logo-main {
  width: 280px;
  padding-bottom: 10px;
  padding-top: 15px;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-group a {
  display: inline-block;
  background-color: #fff;
  color: #5e8eea;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 5px;
  text-decoration: none;
}

.btn-custom:hover {
  background: none;
  color: #fff;
  border: 2px solid #5e8eea;
  text-decoration: none;
}

/* Estilo geral para publicações e artigos */
.publications-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px; /* Adiciona espaço superior */
}

.publications-container h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.publications-container h4 {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  padding-top: 3px;
  padding-left: 5px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.publications-list {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.publications-list li {
  margin-bottom: 10px;
}

/* Ajustes para tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .publications-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza a container de publicações em tablets */
  }
  .publications-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza os botões de publicações em tablets */
  }
  .publications-list li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; /* Permite que os itens da lista se ajustem */
    text-align: center; /* Centraliza o texto dos itens */
  }
  .publications-container,
  .publications-list {
    text-align: center; /* Garante que o conteúdo esteja centralizado */
  }
}
/* Ajustes para dispositivos móveis */
@media (max-width: 767px) {
  .publications-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza a container de publicações em dispositivos móveis */
    text-align: center; /* Garante que o conteúdo esteja centralizado */
  }
  .publications-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza os botões de publicações em dispositivos móveis */
    text-align: center; /* Garante que o texto esteja centralizado */
  }
  .publications-list li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; /* Permite que os itens da lista se ajustem */
    text-align: center; /* Centraliza o texto dos itens */
  }
  .publications-container,
  .publications-list {
    margin: 0 auto; /* Centraliza a container e a lista */
  }
}
.btn-streaming {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-family: "Inter", sans-serif;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: none;
  text-decoration: none;
}

.btn-streaming i {
  margin-right: 10px;
}

.btn-streaming:hover {
  background-color: #fff;
  color: #5e8eea;
  text-decoration: none;
}

.publications-list li:first-child .btn-streaming {
  background-color: #fff;
  color: #5e8eea;
  text-decoration: none;
}

.contact-form {
  margin-top: 20px;
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.form-control {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 50px;
  padding: 12px;
  margin-right: 10px;
  margin-top: 3px;
}

.form-control::-webkit-input-placeholder {
  color: #fff;
}

.form-control::-moz-placeholder {
  color: #fff;
}

.form-control:-ms-input-placeholder {
  color: #fff;
}

.form-control::-ms-input-placeholder {
  color: #fff;
}

.form-control::placeholder {
  color: #fff;
}

.btn-custom {
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-custom.btn-md {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 50px;
  color: #fff;
  background: #000;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; /* Não permite quebra de linha em telas maiores */
}

.footer-left {
  text-align: left;
}

.footer-left p {
  font-size: 12px;
  text-align: left;
  margin-left: 50px;
}

.footer-right {
  text-align: right;
}

.footer-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-logo-container p {
  margin: 0;
  text-transform: uppercase;
  margin-right: 5px;
  font-size: 9px;
  letter-spacing: 3px;
}

/* Ajuste para tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .footer-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; /* Permite quebra de linha em tablets */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza conteúdo em tablets */
  }
  .footer-left,
  .footer-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; /* Ocupa 100% da largura em tablets */
    text-align: center; /* Centraliza o texto em tablets */
    margin-bottom: 10px;
  }
  .footer-logo-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza logo e texto em tablets */
  }
}
/* Ajuste para dispositivos móveis */
@media (max-width: 767px) {
  .footer-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; /* Permite quebra de linha em dispositivos móveis */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza conteúdo em dispositivos móveis */
  }
  .footer-left p {
    text-align: center;
    margin: 0;
    padding-top: 50px;
  }
  .footer-left,
  .footer-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; /* Ocupa 100% da largura em dispositivos móveis */
    text-align: center; /* Centraliza o texto em dispositivos móveis */
    margin-bottom: 10px;
  }
  .footer-logo-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* Centraliza logo e texto em dispositivos móveis */
  }
}
.btn-musicrioacademy {
  background-color: #fff;
  color: #5e8eea;
  border: 1px solid #fff;
  padding: 7px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
}

/* Media Queries para dispositivos móveis com largura máxima de 375px */
@media (max-width: 375px) {
  .btn-musicrioacademy {
    background-color: #fff;
    color: #5e8eea;
    border: 1px solid #fff;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 6px;
  }
  h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1rem;
  }
  h4 {
    font-size: 12px;
  }
  h5 {
    font-size: 1rem;
  }
  .logo-main {
    width: 200px;
  }
  .social-icons a {
    font-size: 20px;
  }
  .button-group a {
    padding: 8px 16px;
    font-size: 12px;
  }
  .publications-container {
    margin-top: 15px;
  }
  .btn-streaming {
    padding: 8px 20px;
    font-size: 12px;
  }
  .footer-left p,
  .footer-right p {
    font-size: 10px;
  }
  .footer-logo-container p {
    font-size: 8px;
  }
  .navbar-toggle {
    margin-right: 20px;
  }
}
/* Media Queries para dispositivos móveis com largura máxima de 320px */
@media (max-width: 320px) {
  .btn-musicrioacademy {
    background-color: #fff;
    color: #5e8eea;
    border: 1px solid #fff;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 6px;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 0.9rem;
  }
  h4 {
    font-size: 10px;
  }
  h5 {
    font-size: 0.9rem;
  }
  .logo-main {
    width: 180px;
  }
  .social-icons a {
    font-size: 18px;
  }
  .button-group a {
    padding: 6px 12px;
    font-size: 10px;
  }
  .publications-container {
    margin-top: 10px;
  }
  .btn-streaming {
    padding: 6px 16px;
    font-size: 10px;
  }
  .footer-left p,
  .footer-right p {
    font-size: 8px;
  }
  .footer-logo-container p {
    font-size: 6px;
  }
  .navbar-toggle {
    margin-right: 15px;
  }
}
.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.contact-form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-form input[type=text],
.contact-form input[type=email] {
  height: 40px;
  padding: 10px;
  font-size: 12px;
}

.contact-form input[type=submit] {
  height: 40px;
  padding: 10px;
  font-size: 12px;
  background: #5e8eea;
  color: #fff;
}

.contact-form input[type=submit] {
  height: 45px;
  padding: 10px 25px;
  font-size: 12px;
}

.wpcf7-not-valid-tip {
  color: #dbd0d0;
  font-size: 12px;
  font-weight: normal;
  display: block;
  padding-left: 15px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0.2em 0.3em;
  border: 2px solid #00a0d2;
  border-top-color: rgb(0, 160, 210);
  border-right-color: rgb(0, 160, 210);
  border-bottom-color: rgb(0, 160, 210);
  border-left-color: rgb(0, 160, 210);
  font-size: 12px;
}

@media (max-width: 767.98px) {
  .publications-list li {
    margin-bottom: 15px; /* Espaço entre os itens */
  }
  .publications-list li a {
    display: block; /* Garante que o link ocupe a largura total do item */
    width: 100%;
    text-align: center; /* Centraliza o conteúdo */
  }
}