/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte principal elegante */
body {
  font-family: 'Georgia', serif;
  background: #1c1c1c; /* fundo escuro */
  color: #f5e6e8; /* rosa claro, fácil leitura */
  line-height: 1.7;
  font-size: 18px;
  padding: 20px;
}

/* Container centralizado */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #2a1a1a; /* vinho escuro */
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow:
    0 0 20px rgba(255, 0, 60, 0.6),
    inset 0 0 15px rgba(255, 20, 60, 0.8);
}

/* Cabeçalhos com estilo sexy */
h1, h2, h3, h4, h5, h6 {
  text-align: center;
  color: #ff004f; /* vermelho vibrante */
  text-shadow:
    1px 1px 4px rgba(255, 0, 80, 0.7);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.4rem;
}

/* Parágrafos sedutores */
p {
  margin-bottom: 20px;
  color: #e8c7cb; /* rosa suave */
  font-size: 1.15rem;
  text-align: justify;
  text-indent: 1.5em;
  line-height: 1.8;
}

/* Links delicados e com efeito */
a {
  color: #ff527b; /* rosa quente */
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
a:hover {
  color: #ff2a5c;
  border-bottom: 1px solid #ff2a5c;
  text-shadow: 0 0 5px rgba(255, 42, 92, 0.8);
}

/* Botões sedutores */
button, .btn {
  background: linear-gradient(135deg, #ff2a5c, #ff527b);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 42, 92, 0.6);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
button:hover, .btn:hover {
  background: linear-gradient(135deg, #ff527b, #ff2a5c);
  box-shadow: 0 6px 20px rgba(255, 82, 123, 0.9);
  color: #fff;
}

/* Vídeos com borda elegante */
video {
  border-radius: 20px;
  box-shadow:
    0 0 15px rgba(255, 42, 92, 0.8);
  max-width: 100%;
  display: block;
  margin: 0 auto 30px auto;
}

/* Imagens suavemente arredondadas */
img {
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(255, 42, 92, 0.5);
  margin-bottom: 20px;
}

/* Listas com detalhes sutis */
ul {
  margin-left: 24px;
  margin-bottom: 25px;
  color: #f4a6b7;
}
li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* Inputs e textarea estilos */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #ff2a5c;
  border-radius: 25px;
  margin-bottom: 25px;
  font-size: 1rem;
  background: #331b1f;
  color: #f9dede;
  box-shadow: inset 0 0 10px rgba(255, 42, 92, 0.6);
  transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
  border-color: #ff527b;
  outline: none;
  box-shadow: 0 0 15px #ff527b, inset 0 0 15px #ff2a5c;
}

/* Área de comentários refinada */
.comment-area {
  border: 2px solid #ff2a5c;
  border-radius: 25px;
  padding: 30px 40px;
  background: #331b1f;
  margin-top: 50px;
  box-shadow: 0 0 20px rgba(255, 42, 92, 0.8);
}
.comment-area h3 {
  margin-bottom: 35px;
  text-align: center;
  color: #ff527b;
  text-shadow: 0 0 10px rgba(255, 82, 123, 0.9);
}
.comment {
  padding: 20px;
  border-bottom: 1px solid #ff527b;
  color: #f7c7d2;
  font-size: 1.1rem;
}
.comment:last-child {
  border-bottom: none;
}

/* Rodapé sedutor */
footer {
  text-align: center;
  padding: 35px 10px;
  margin-top: 60px;
  font-size: 1rem;
  color: #ff2a5c;
  text-shadow: 0 0 8px rgba(255, 42, 92, 0.9);
}

/* Estilização dos botões de compartilhamento */
.share-buttons {
  border: 2px solid #ff2a5c;
  padding: 30px;
  border-radius: 30px;
  background: #331b1f;
  margin-top: 40px;
  box-shadow: 0 0 25px rgba(255, 42, 92, 0.9);
}
.share-buttons h5 {
  font-weight: 700;
  color: #ff527b;
  text-shadow: 0 0 15px rgba(255, 82, 123, 0.9);
  margin-bottom: 25px;
  text-align: center;
}
.share-buttons button {
  margin-right: 15px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff527b, #ff2a5c);
  color: #fff;
  border-radius: 25px;
  padding: 12px 24px;
  box-shadow: 0 0 15px rgba(255, 42, 92, 0.8);
  transition: background 0.3s ease;
}
.share-buttons button:hover {
  background: linear-gradient(135deg, #ff2a5c, #ff527b);
  box-shadow: 0 0 30px rgba(255, 42, 92, 1);
}

/* Pequena animação suave no hover de links */
a:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


/* Remove tudo que sobrou do rodapé */
footer,
.site-footer,
#colophon,
.footer-widget,
.footer-credit,
.widget-area,
.footer-info,
.site-info {
  display: none !important;
}

/* Remove título e descrição do site à força */
.site-title,
.site-description,
h1.site-title,
h2.site-description {
  display: none !important;
}

body {
  background-color: #121212 !important; /* ou outra cor sexy tipo #1c1b1b */
  color: #fff;
}

.site, .content-area, .site-content, .container {
  background-color: transparent !important;
  border: none !important;
}

footer, .site-footer {
  display: none !important; /* se quiser ocultar o rodapé inteiro */
}








.video-card {
  transition: transform 0.2s;
}
.video-card:hover {
  transform: scale(1.03);
}
.video-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #000;
  display: block;
  border-radius: 8px;
}
.card-title {
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Estilo do formulário de comentários */
.comment-respond {
    background: #fefefe;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comment-respond h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0,115,170,0.2);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form input[type="submit"] {
    background: #0073aa;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}

.comment-form input[type="submit"]:hover {
    background: #005d8d;
}

/* Estilo para os comentários já postados */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.comment-author .avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.comment-content {
    overflow: hidden;
}

.comment-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.comment-content p {
    font-size: 16px;
    color: #333;
    margin-top: 4px;
}
