html, body {
  overflow-x: hidden; /* Bloqueia rolagem horizontal */
  margin: 0;
  padding: 0;
}

.section-oratoria {
  /* Fundo com gradiente em tons de vermelho */
  /* background: linear-gradient(135deg, #b71c1c, #b00512); */
  background: url('../images/header/background.jpg');
  background-size: cover;
  padding: 60px 20px;
  color: #fff; /* Texto em branco para melhor contraste */
}



.section-oratoria .container {
  max-width: 1200px;
  margin: 0 auto;
  /* Ajustes para centralizar o conteúdo */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* Centraliza horizontalmente */
}


/* Coluna Esquerda: Texto e Chamada */
.section-oratoria .left-col {
  /* Removemos o flex: 1 para evitar esticar a coluna
     e adicionamos um max-width para limitar a largura. */
  max-width: 600px;
  margin-bottom: 20px;
}

.section-oratoria .left-col .label {
  font-size: 0.9rem;
  color: #ffc107; /* Destaque em amarelo */
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-oratoria .left-col .title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  line-height: 1.3;
  color: #fff; /* Título em branco */
}

.section-oratoria .left-col .subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px;
  color: #f8f9fa; /* Texto secundário em tom claro */
  margin: 0 auto 20px auto; /* Centraliza dentro do left-col */
}

.section-oratoria .left-col .cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #b71c1c; /* Texto do botão em tom vermelho para contraste */
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.section-oratoria .left-col .cta-button:hover {
  background-color: #e6ac05;
}

.section-oratoria .left-col .stars {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.section-oratoria .left-col .stars img {
  height: 30px; /* Ajuste conforme necessário */
}

.section-oratoria .left-col .stars .rating {
  font-size: 1.2rem;
  color: #ffc107;
}

.section-oratoria .left-col .stars p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

/* Coluna Direita: Mockup */
.section-oratoria .right-col {
  /* Também limitamos a largura e centralizamos */
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-oratoria .right-col img {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;

}

/* Efeito de hover opcional na imagem (caso queira) */
.section-oratoria .right-col img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .section-oratoria {
    width: 100%;               /* Garante que a seção ocupe 100% da largura */
    padding: 20px;
    box-sizing: border-box;     /* Para que o padding seja incluso na largura total */
    text-align: left;
  }

  .section-oratoria .container {
    width: 100%;               /* O container também ocupa toda a largura */
    max-width: 100%;           /* Remove qualquer limite de largura */
    margin: 0;                 /* Remove margens automáticas */
    padding: 0;                /* Se quiser remover qualquer padding extra */
    display: flex;
    flex-direction: column;    /* As "colunas" ficam empilhadas */
    align-items: flex-start; 
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .section-oratoria .left-col,
  .section-oratoria .right-col {
    width: 100%;               /* Cada coluna ocupa 100% da largura no mobile */
    max-width: 100%;
  }

  .section-oratoria .left-col {
    margin-bottom: 20px;
  }

  .section-oratoria .left-col .title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .section-oratoria .left-col .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .section-oratoria .left-col .btn {
    font-size: 1rem;
    padding: 12px 25px; 
    width: 100%;           /* Botão ocupando 100% da largura */
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .section-oratoria .left-col .stars {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* ESCONDE A IMAGEM NO MOBILE */
  .section-oratoria .right-col {
    display: none;
  }
}


.section-copy {
  background-color: #fff; /* Fundo branco */
  padding: 60px 20px;
  color: #333;
}

.section-copy .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* Centraliza o conteúdo */
}

.section-copy .copy-content {
  max-width: 600px; /* Limita a largura do texto, similar ao left-col da oratória */
  margin: 0 auto 20px auto;
  text-align: center;
}

.section-copy .copy-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.packebooks img {
  width: 100%;
}

/* ====== Geral ====== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* ====== Section Copy ====== */
.section-copy {
  padding: 60px 0;
}

.section-copy .title {
  color: #000;
  font-size: 2rem;
}

/* Centraliza a imagem */
.img-wrapper {
  text-align: center;
}

/* ====== Section Red (Fundo Vermelho) ====== */
.section-red {
  padding: 60px 0;
  background-color: #b71c1c;
}

.section-red .section-red-title,
.section-red .feedback-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}

/* ====== Cards (Público-Alvo) ====== */
.target-card {
  background: #fff;
  padding: 20px 20px 20px 80px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s;
}

.target-card:hover {
  transform: translateY(-5px);
}

.target-card .card-icon {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.target-card p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  line-height: 1.8;
}

/* ====== Section Light (Jornada) ====== */
.section-light {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.journey-title {
  font-size: 2rem;
  color: #333;
}

/* ====== Benefit Items (Etapas) ====== */
.benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.benefit-number {
  font-size: 2rem;
  font-weight: bold;
  color: #b71c1c;
  margin-bottom: 10px;
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.benefit-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}




/* Estilo geral para o Swiper */
.swiper-container {
  width: 100%;
  max-width: 1200px; /* Define um limite máximo de largura */
  margin: auto; /* Centraliza o carrossel */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; /* Fundo transparente */
  box-shadow: none; /* Remove a sombra */
  height: 300px; /* Altura ajustada */
  padding: 0; /* Remove padding */
  text-align: center;
}

.swiper-slide img {
  max-width: 100%; /* Imagem ocupa a largura total */
  height: auto; /* Mantém proporção */
  border-radius: 8px; /* Bordas arredondadas */
}

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
  .swiper-container {
      height: 100%; /* Imagem ocupa toda a largura no celular */
      width: 100%; /* Imagem ocupa toda a largura no celular */
   }

  .swiper-slide {
      flex-direction: column; /* Garante o alinhamento vertical */
  }

  .swiper-slide img {
      height: 100%; /* Imagem ocupa toda a largura no celular */
      width: 100%; /* Imagem ocupa toda a largura no celular */
      max-width: none; /* Remove restrições de largura máxima */
      border-radius: 0; /* Remove bordas arredondadas, se necessário */
  }
}
/* Estilo para botões de navegação do Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #fff; /* Botões brancos */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #08090b; /* Botões com hover azul */
}

/* ===== ESTILO GERAL PARA O SWIPER ===== */
.swiper-container {
  width: 100%;
  max-width: 1200px; /* Define um limite máximo de largura */
  margin: auto; /* Centraliza o carrossel */
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; /* Fundo transparente */
  box-shadow: none; /* Remove a sombra */
  height: 300px; /* Altura ajustada */
  padding: 0; /* Remove padding */
  text-align: center;
}

.swiper-slide img {
  max-width: 100%; /* Imagem ocupa a largura total */
  height: auto; /* Mantém proporção */
  border-radius: 8px; /* Bordas arredondadas */
}

/* ===== ESTILO PARA BOTÕES DE NAVEGAÇÃO DO SWIPER ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #fff; /* Botões brancos */
  transition: 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #08090b; /* Botões com hover azul */
}

/* ===== ESTILO PARA DISPOSITIVOS MÓVEIS ===== */
@media (max-width: 768px) {
  .swiper-container {
    width: 100%; /* Ocupar largura total */
    padding: 10px 0; /* Reduz espaço */
  }

  .swiper-slide {
    flex-direction: column; /* Garante o alinhamento vertical */
    height: auto; /* Ajusta altura automática */
  }

  .swiper-slide img {
    width: 90%; /* Reduz um pouco para evitar margens coladas */
    height: auto;
    max-width: 100%;
    border-radius: 8px;
  }

  /* Aumenta a área de toque nos botões de navegação */
  .swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}


/* Seção "journey" */
.section-light {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.journey-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

/* Card dos eBooks */
.ebook-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Para que todos os cards tenham altura uniforme */
}

.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Imagem de capa e badge */
.ebook-cover-wrapper {
  text-align: center;
  margin-top: 20px; /* Ajuste o valor conforme necessário */
}

.ebook-cover {
  width: 40%;      /* Define 40% da largura do container */
  height: auto;    /* Mantém a proporção da imagem */
  display: inline-block;
}



.ebook-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #b71c1c;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Conteúdo do card */
.ebook-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

.ebook-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}

.ebook-subtitle {
  font-size: 1.1rem;
  font-weight: bold;
  color: #b71c1c;
  margin-bottom: 15px;
}

.ebook-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .ebook-subtitle {
    font-size: 1rem;
  }
  .ebook-description {
    font-size: 0.9rem;
  }
}

/* Seção "section-light" mais compacta */
.section-light {
  padding: 40px 0; /* Reduza conforme desejar */
  background-color: #f9f9f9;
}

/* Título principal */
.title {
  font-size: 1.8rem;
  color: #333; /* Removendo o vermelho */
  margin-bottom: 20px; /* Reduzido para diminuir espaço */
}

/* Seção de Bônus (Ajuste conforme seu layout) */
.section-bonus {
  background-color: #f9f9f9;
  padding: 40px 0;
}

/* Cartão de Bônus */
.bonus-card {
  background-color: #F2F2F2;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Rótulo Vermelho */
.bonus-label {
  display: inline-block;
  background-color: #b22222;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus-label i {
  margin-right: 6px;
}

/* Título do Bônus */
.bonus-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* Descrição do Bônus */
.bonus-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Imagem */
.bonus-image img {
  width: 100%;       /* Ajuste se quiser limitar o tamanho */
  display: block;
}

/* Section menor com fundo preto */
.section-about {
  background-color: #000;
  color: #fff;
  min-height: 450px; /* Altura reduzida */
  display: flex;
  align-items: center;
  padding: 40px 0;
}

/* Conteúdo alinhado */
.about-content {
  padding: 40px;
  text-align: left;
  max-width: 600px;
}

/* Título */
.about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Texto */
.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}


/* Ajuste do efeito de borda rasgada */
.about-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  filter: drop-shadow(-20px 0px 20px rgba(0, 0, 0, 0.8)); /* Cria a borda esfumaçada */
}

/* Responsividade */
@media (max-width: 768px) {
  .section-about {
    min-height: auto;
    padding: 40px 0;
  }

  .about-content {
    text-align: center;
    padding: 20px;
  }

  .about-image {
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    filter: none; /* Remove efeito em telas menores */
  }
}



/* ======= SECTION TOP BAR ======= */
.top-bar {
  background-color: black;
  min-height: 50vh; /* Garante que ocupe metade da tela */
  display: flex;
  align-items: center; /* Centraliza o conteúdo verticalmente */
  padding: 50px 0;
  position: relative;
overflow: hidden;
}

/* Centraliza o container */
.top-bar .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* Mantém os elementos alinhados verticalmente */
  justify-content: space-between; /* Separa o texto e a imagem */
}

/* ======= TEXTO PRINCIPAL ======= */
.top-bar-title {
  color: #ffc107;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.top-bar-text {
  color: #ecf0f1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
}

.top-bar-subtext {
  color: #bdc3c7;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

/* ======= BOTÃO ======= */
.btn-main {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 40px;
  font-size: 1.2rem;
  border-radius: 8px;
  background-color: #ffc107;
  color: #2c3e50;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.btn-main:hover {
  background-color: #e6ac05;
}

/* ======= IMAGEM ======= */
.top-bar-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-image img {
  max-width: 100%;
  height: auto;
  max-height: 90%; /* Evita que a imagem fique muito grande */
}

/* ======= SEÇÃO SOBRE PEDRO LUZ ======= */
.pedro-title {
  color: #ffc107;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.pedro-text {
  color: #ecf0f1;
  font-size: 1.1rem;
  line-height: 1.6;
}

.pedro-subtext {
  color: #bdc3c7;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .top-bar {
      flex-direction: column;
      min-height: auto; /* Permite que a altura se ajuste em telas menores */
      padding: 40px 0;
  }

  .top-bar .container {
      flex-direction: column;
      text-align: center;
  }

  .top-bar-title {
      font-size: 2rem;
  }

  .top-bar-text, .pedro-text {
      font-size: 1rem;
  }

  .btn-main {
      font-size: 1rem;
      padding: 10px 30px;
  }

  .top-bar-image img {
      max-width: 80%;
      height: auto;
  }
}



/* ======= SECTION FAQ ======= */
.faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

/* ======= TÍTULO ======= */
.section-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* ======= ITENS DO FAQ ======= */
.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  overflow: hidden;
}

/* ======= PERGUNTAS ======= */
.faq-question {
  width: 100%;
  background: #b71c1c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #9d1414;
}

/* Ícone de seta */
.faq-question::after {
  content: '\25BC'; /* Seta para baixo */
  float: right;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Abre a resposta */
.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* ======= RESPOSTAS ======= */
.faq-answer {
  display: none;
  padding: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ======= BOTÃO DE COMPRA ======= */
.btn-main {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 1.2rem;
  border-radius: 8px;
  background-color: #ffc107;
  color: #2c3e50;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn-main:hover {
  background-color: #e6ac05;
}

/* ======= RESPONSIVIDADE ======= */
@media (max-width: 768px) {
  .section-heading h2 {
      font-size: 1.8rem;
  }

  .faq-question {
      font-size: 1rem;
      padding: 12px;
  }

  .faq-answer {
      font-size: 0.95rem;
      padding: 12px;
  }

  .btn-main {
      font-size: 1rem;
      padding: 10px 30px;
  }
}



/* ====== SEÇÃO DE CHECKOUT ====== */
.checkout-section {
  background-color: #b71c1c; /* Vermelho vibrante */
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* ====== CAIXA DO CHECKOUT ====== */
.checkout-box {
  background: #fff; /* Fundo branco para contraste */
  color: #333;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 40%;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ====== IMAGEM DO EBOOK ====== */
.checkout-image img {
  max-width: 40%;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ====== TÍTULO ====== */
.checkout-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #b71c1c;
}

/* ====== SUBTÍTULO ====== */
.checkout-subtitle {
  font-size: 1.1rem;
  font-weight: normal;
  color: #555;
  margin-bottom: 15px;
}

/* ====== PREÇOS ====== */
.checkout-old-price {
  font-size: 1.2rem;
  color: #777;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.checkout-old-price span {
  font-weight: bold;
  color: #d32f2f;
}

.checkout-price {
  font-size: 2rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 20px;
}

/* ====== BOTÃO DE COMPRA ====== */
.btn-checkout {
  display: inline-block;
  background-color: #2e7d32;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(41, 255, 174, 0.3);
}

.btn-checkout:hover {
  background-color: #1b5e20;
}

/* ====== RESUMO DO PRODUTO ====== */
.checkout-summary {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
}

/* ====== BÔNUS ====== */
.checkout-bonus {
  background-color: #ffcc00;
  color: #222;
  font-weight: bold;
  padding: 10px;
  border-radius: 6px;
  margin: 20px 0;
}

.bonus-label {
  font-weight: bold;
  margin-right: 5px;
}

/* ====== LISTA DE BENEFÍCIOS ====== */
.checkout-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}

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

/* ====== AVALIAÇÃO ====== */
.checkout-rating {
  font-size: 1rem;
  color: #d4af37;
  margin-top: 20px;
  font-weight: bold;
}

/* RESPONSIVIDADE */
@media (max-width: 600px) {
  .checkout-box {
      padding: 30px 20px;
  }

  .checkout-title {
      font-size: 1.2rem;
  }

  .checkout-price {
      font-size: 1.8rem;
  }

  .btn-checkout {
      font-size: 1rem;
      padding: 12px 25px;
  }

  .checkout-box {
    max-width: 90%;
  }
  
  /* ====== IMAGEM DO EBOOK ====== */
  .checkout-image img {
    max-width: 40%;
  }
  
}


/* ====== FOOTER ====== */
.footer {
  background-color: #8B0000; /* Vermelho escuro para contrastar */
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
  font-size: 1rem;
}

.footer a {
  color: #ffc107; /* Amarelo ouro para destaque */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffeb3b; /* Amarelo mais claro ao passar o mouse */
}

/* ====== COPYRIGHT ====== */
.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer {
      padding: 30px 0;
  }

  .copyright {
      font-size: 0.85rem;
  }
}
