/*
	Theme Name: CRLF Tema
	Theme URI: https://copyrightleft.com.br
	Description: Tema utilizado no site: https://copyrightleft.com.br
	Author: Benejsan
	Author URI: https://benejsan.com.br
	Version: 1.0.0
	Stable tag: 1.0.0
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: 
	Text Domain: dmcruz-psicanálise
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* Main Container do Post */
  .main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  /* Div do post */
  .post {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }

  .post h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .post .excerpt {
    font-size: 16px;
    color: #555;
  }

  /* Botão TikTok */
.tiktok {
text-align: center;
  }

.tiktok button {
font-size: 16px; 
line-height: 32px;
color: white;
background-color: rgb(255, 0, 96);
cursor: pointer;
border-radius: 25px;
}

/* Controles da paginação */
.pagination {
  margin-top: 20px;
  text-align: center;
}
.pagination a {
  padding: 8px 12px;
  margin: 0 4px;
  background: #eee;
  text-decoration: none;
  border-radius: 4px;
}
.pagination .current {
  background: #333;
  color: #fff;
}

/* Variáveis globais */
:root {
  --cor-primaria: #66c296;
  --cor-secundaria: #0a9396;
  --cor-fundo: #f0fdfa;
  --cor-texto: #333333;
  --cor-hover: #94d2bd;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: var(--cor-primaria);
  height: 60px;
  color: white;
}
header img {
  height: 40px;
}

/* Logotipo com texto */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
}

.logo-container img {
  height: 50px;
  width: auto;
}

/* Texto abaixo do logo */
.logo-container .logo-text {
  font-family: Arial, sans-serif;
  font-size: 14px; /* metade da altura do logo */
  color: #a8326d;
  margin-top: 2px;
  line-height: 1;
}

/* Menu de navegação - principal */
nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
 color: black;
  /* color: #333; */
  font-weight: 200;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: var(--cor-hover);
  color: var(--cor-texto);
}



  .contato-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }

  .contato-container h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
  }

  .contato-info,
  .formulario-contato {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .contato-info a {
    color: #0073aa;
    text-decoration: none;
  }

  .contato-info a:hover {
    text-decoration: underline;
  }

  form input,
  form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  form button {
    background-color: #0073aa;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }

  form button:hover {
    background-color: #005f8d;
  }

  .mensagem-sucesso {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
  }

.user-info {
    font-weight: 300;
    color: #0073aa; /* azul WordPress */
    margin-left: auto; /* empurra para a direita se estiver em um flex container */
    text-align: center;
    margin-top: 0px;   /* aumenta a margem superior */
    margin-bottom: 7px;   /* aumenta a margem superior */
    background-color: #f0f0f0; /* cor de fundo cinza claro */
    padding: 5px; /* espaço interno para destacar */
}
.user-info a {
    color: #0073aa;
    text-decoration: none;
}
.user-info a:hover {
    text-decoration: underline;
}