 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Lato', Arial, sans-serif;
   line-height: 1.6;
   color: #3E3E3E;
   background-color: #ffffff;
 }

 main {
   padding-top: 25px;
 }

 main .has-global-padding {
   padding: 0;
 }

 .container {
   max-width: 800px;
   margin: 0 auto;
   padding: 20px;
 }

 .entry-content:not(:has(.container)) {
   max-width: 800px;
   margin: 0 auto;
   padding: 20px;
 }

 .entry-content:not(:has(.container)) h2 {
   margin-top: 50px;
 }

 h1 {
   font-family: 'Playfair Display', serif;
   font-size: 2.5em;
   color: #6B1D1D;
   text-align: center;
   margin-bottom: 30px;
   line-height: 1.2;
 }

 h2 {
   font-family: 'EB Garamond', serif;
   font-size: 1.8em;
   color: #6B1D1D;
   margin: 40px 0 20px 0;
   border-left: 4px solid #D1A948;
   padding-left: 15px;
 }

 h3 {
   font-size: 1.3em;
   color: #2C3E50;
   margin: 25px 0 15px 0;
 }

 h4 {
   font-size: 1.2em;
   color: #2C3E50;
   font-weight: 400;
   margin: 15px 0 10px 0;
 }

 p {
   margin-bottom: 15px;
   font-size: 1.1em;
 }

 .intro {
   background: white;
   padding: 10px;
   margin-bottom: 30px;
 }

 .highlight-box {
   background: #2C3E50;
   color: white;
   padding: 25px;
   border-radius: 8px;
   margin: 25px 0;
 }

 .highlight-box h3 {
   color: #fff;
 }

 ul {
   margin: 15px 0;
   padding-left: 20px;
 }

 li {
   margin-bottom: 8px;
   font-size: 1.05em;
 }

 .cta-button {
   display: inline-block;
   background: green;
   color: white;
   padding: 10px;
   text-decoration: none;
   border-radius: 5px;
   font-weight: bold;
   font-size: 1.2em;
   text-align: center;
   transition: all 0.3s ease;
 }

 .cta-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(107, 29, 29, 0.4);
 }

 .cta-section {
   background: linear-gradient(135deg, #6B1D1D, #A83232);
   color: white;
   padding: 40px;
   border-radius: 15px;
   text-align: center;
   margin: 40px 0;
 }

 .cta-section h2 {
   color: white;
   border: none;
   padding: 0;
   margin-bottom: 20px;
 }

 .pain-points {
   background: #fff;
   padding: 10px;
   margin: 20px 0;
 }

 .solution-box {
   background: linear-gradient(135deg, #D1A948, #F4D878);
   color: #2C3E50;
   padding: 30px;
   border-radius: 12px;
   margin: 25px 0;
 }

 .transformation {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin: 25px 0;
 }

 .before,
 .after {
   padding: 20px;
   border-radius: 8px;
 }

 .before {
   background: #f8d7da;
   border-left: 4px solid #A83232;
 }

 .after {
   background: #d1edff;
   border-left: 4px solid #D1A948;
 }

 @media (max-width: 768px) {
   .container {
     padding: 15px;
   }

   h1 {
     font-size: 2em;
   }

   h2 {
     font-size: 1.5em;
   }

   .transformation {
     grid-template-columns: 1fr;
   }
 }

 .icon {
   font-size: 1.2em;
   margin-right: 8px;
 }

 /* Imagem de destaque responsiva */
 .page-template-custom_page main>figure>img {
   display: block;
   width: 100%;
   height: auto;
   margin: 0 auto 30px auto;
   border-radius: 12px;
   box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
   max-width: 895px;
   max-height: 581px;
 }

 .cta-section p strong {
   font-weight: bold;
   font-size: 1.08em;
 }


 /* ===== Links Gerais ===== */
 a {
   color: blue;
   /* Bordô Sacro - cor primária */
   text-decoration: none;
   transition: color 0.3s ease, border-bottom 0.3s ease;
   font-weight: 500;
 }

 a:hover,
 a:focus {
   color: #D1A948;
   /* Dourado Editorial - destaque */
   border-bottom: 2px solid #D1A948;
 }

 /* ===== Links em Conteúdo (posts/páginas) ===== */
 .post-content a,
 .page-content a {
   color: #2C3E50;
   /* Azul Revelação - leitura técnica */
   font-weight: 600;
   border-bottom: 1px dashed #D1A948;
 }

 .post-content a:hover,
 .page-content a:hover {
   color: #6B1D1D;
   /* Bordô no hover */
   border-bottom: 1px solid #6B1D1D;
 }

 /* ===== Links em Botões/CTAs ===== */
 a.button-link {
   display: inline-block;
   background-color: #6B1D1D;
   color: #F8F5EB;
   /* Marfim Litúrgico - texto claro */
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: bold;
   text-align: center;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }

 a.button-link:hover {
   background-color: #D1A948;
   /* Dourado Editorial */
   color: #3E3E3E;
   /* Cinza Manuscrito */
   transform: translateY(-2px);
 }

 /* ===== Links de Urgência/Escassez ===== */
 a.urgente-link {
   color: #A83232;
   /* Vermelho Rubi */
   font-weight: 700;
   text-decoration: underline;
 }

 a.urgente-link:hover {
   color: #6B1D1D;
   background-color: #F8F5EB;
   padding: 2px 4px;
   border-radius: 4px;
 }

 .entry-content>p strong {
   color: #A83232;
   /* Bordô Sacro - dá autoridade */
   font-weight: 700;
   font-family: "Playfair Display", serif;
   /* Editorial e elegante */
   letter-spacing: 0.3px;
   background: linear-gradient(to bottom, transparent 70%, #F8F5EB 70%);
   /* Marfim Litúrgico discreto */
   padding: 0 2px;
   transition: color 0.3s ease;
 }
