

/* Global Variables */
:root {
    /* Cores da marca */
    --primary-color: #ff6115;      /* Laranja claro */
    --primary-dark: #F26122;       /* Laranja escuro */
    --primary-light: #ffa179;      /* Salmão */
    --secondary-color: #626262;    /* Cinza escuro */
    --accent-color: #efefef;       /* Cinza claro */
    --white: #ffffff;
    --light-bg: #efefef;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary-color) 0%, #d0d0d0 100%);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition-standard: all 0.3s ease-in-out;
   --primary-font: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --heading-font: 'Belleza', cursive;
    --text-color: #333;
    --border-color: #dee2e6;
    --background-light: #f8f9fa;
    --whatsapp-color: #25D366;
    --whatsapp-hover-color: #128C7E;
}

/* Global Styles */
body {
    /* Para textos corridos, utiliza uma fonte neutra; os títulos poderão usar as fontes da marca */
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}
header {
    /* Fallback para navegadores que não suportam gradientes */
    background: #ff6115;
    
    /* Gradiente para navegadores com suporte a -webkit- (Safari, Chrome antigo) */
    background: -webkit-linear-gradient(left, #F26122, #f98c14);
    
    /* Gradiente padrão para navegadores modernos */
    background: linear-gradient(to right, #F26122, #f98c14);
}
/* Melhorando o espaçamento e o hover dos ícones */
.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
  color: #fff !important;
}

/* Estilizando o hover */
.navbar-nav .nav-link:hover {
    color: #FFF;
}

/* Ajustando os ícones */
.navbar-nav i {
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
}

/* Pequeno efeito ao passar o mouse */
.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
}

/* Classes específicas para aplicar as fontes da marca */
/* Exemplo: logotipo e título principal usam Belleza */
.logo-text, 
h1.logo-title {
    font-family: 'Belleza', cursive;
}

/* Exemplo: slogan usa Orev Edge (pode ser aplicado em um elemento com a classe .slogan) */
.slogan {
    font-family: 'Open Sans', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}


/* Hero Section */
.hero {
   position: relative;
    min-height: 80vh;
    background-color: #1a1a1a; /* Fallback para cinza escuro */
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(90, 90, 90, 0.8) 100%), 
        url('img/bannerhome.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Efeito de Onda sobre a imagem */
  .hero::before {
    content: '';
    position: absolute;

    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,149.3C960,128,1056,128,1152,144C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.1;
  }
  
  /* Garante que o conteúdo fique visível sobre a imagem */
  .hero-content {
   color: var(--white);

    z-index: 1;

  }
  
 
  
  /* Ajusta a responsividade do título */
  
.hero-content h1 {
 margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    font-family: 'Belleza', cursive;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-content a.btn {
    background: var(--primary-color);
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content a.btn:hover {
   background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Seção Sobre Nós - Versão Aprimorada */
#sobre-nos {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;

}

#sobre-nos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}

#sobre-nos h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    font-family: 'Belleza', cursive;
}

#sobre-nos p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: justify;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: textReveal 1s ease-out forwards;
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#sobre-nos img {
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}

#sobre-nos img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

#sobre-nos img::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--primary-color);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#sobre-nos img:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    #sobre-nos h2 { font-size: 2rem; }
    #sobre-nos p { font-size: 1rem; }
}

/* Seção Como Funciona - Versão Aprimorada */
#como-funciona {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    overflow: hidden;
}

#como-funciona::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

#como-funciona h2 {
    font-size: 2.5rem;
    color: #37474F;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    font-family: 'Belleza', cursive;
}

/* Ajustes para os cards */
.card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

.process-section .col-md-3 {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-section .col-md-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.process-section .col-md-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.process-section .col-md-3:hover::before {
    opacity: 1;
}

.process-section i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-section .col-md-3:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.process-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.process-section p {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    #como-funciona h2 { font-size: 2rem; }
    .process-section .col-md-3 { padding: 1.5rem; }
}

/* Seção Benefícios - Versão Aprimorada */
#beneficios {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, #eaeaea);
    overflow: hidden;
}

#beneficios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5), transparent 80%);
    opacity: 0.2;
    pointer-events: none;
}

#beneficios h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #37474F;
    letter-spacing: 1px;
    font-family: 'Belleza', cursive;
}

/* Cartões */
.benefits-section .card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

/* Delay nos cartões */
.benefits-section .col:nth-child(1) .card { animation-delay: 0.2s; }
.benefits-section .col:nth-child(2) .card { animation-delay: 0.4s; }
.benefits-section .col:nth-child(3) .card { animation-delay: 0.6s; }

/* Hover */
.benefits-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Ícones */
.benefits-section i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefits-section .card:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* Textos */
.benefits-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #37474F;
}

.benefits-section p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Animação */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    #beneficios h2 { font-size: 2rem; }
    .benefits-section .card { padding: 1.5rem; }
}

/* Seção Formulário - Design Avançado */
#formulario {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff, #c9c9c9);
    overflow: hidden;
}


#formulario h2 {
    font-size: 2.5rem;
    color: #37474F;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-out;
    font-family: 'Belleza', cursive;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

#formulario form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-section .form-control {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(242, 97, 34, 0.25);
    transform: scale(1.02);
    outline: none;
}

#formulario button.btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

#formulario button.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

#formulario form > div {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

#formulario form > div:nth-child(1) { animation-delay: 0.3s; }
#formulario form > div:nth-child(2) { animation-delay: 0.5s; }
#formulario form > div:nth-child(3) { animation-delay: 0.7s; }
#formulario form > button {
    animation-delay: 0.9s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #formulario h2 { font-size: 2rem; }
    .form-section .form-control { padding: 0.75rem; font-size: 0.95rem; }
    #formulario button.btn { font-size: 1rem; }
}

/* Footer */
.footer {
    position: relative;
    background: var(--gradient-dark);
}

.footer i {
    margin-right: 10px;
    transition: var(--transition-standard);
}

.footer p:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}



/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section > *,
.process-section > *,
.benefits-section > *,
.form-section > * {
    animation: fadeIn 1s ease-out forwards;
}

/* Advanced Card Effects */
.col-md-3, .col-md-4 {
    perspective: 1000px;
}

.col-md-3:hover, .col-md-4:hover {
    z-index: 1;
}

/* Custom Input Styling */
input::placeholder, textarea::placeholder {
    color: #999;
    transition: var(--transition-standard);
}

input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(10px);
}

/* Custom Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Accessibility Focus Styles */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section,
    .promo-section {
        background: var(--white) !important;
        color: black !important;
    }
    
    .btn,
    .form-section {
        display: none !important;
    }
}

/* Seção de Contato do Rodapé */
.footer-contact-section {
    background: linear-gradient(135deg, var(--secondary-color), #2a3f54);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-contact-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-contact-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.footer-contact-section .contact-info p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact-section .contact-info i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-contact-section .location iframe {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-contact-section .contact-form form {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-form form input,
.footer-contact-section .contact-form form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.footer-contact-section .contact-form form textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-contact-section .contact-form form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-contact-section .contact-form form button:hover {
    background: var(--primary-dark);
}


.footer-contact-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

@media (max-width: 768px) {
    .footer-contact-section .contact-content > div {
        margin-bottom: 2rem;
    }
}
/* Seção Depoimentos */
.testimonials-section {
    background: linear-gradient(135deg, #f9f9f9, #eaeaea);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #37474F;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: 'Belleza', cursive;
}

/* Estilização dos cartões */
.testimonials-section .card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.testimonials-section .col:nth-child(1) .card { animation-delay: 0.2s; }
.testimonials-section .col:nth-child(2) .card { animation-delay: 0.4s; }
.testimonials-section .col:nth-child(3) .card { animation-delay: 0.6s; }

/* Efeito Hover */
.testimonials-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Estilização do texto */
.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #6c757d;
}

/* Nome do cliente */
.testimonials-section h5 {
    font-size: 1.2rem;
    color: #37474F;
}

/* Animação */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-section h2 { font-size: 2rem; }
    .testimonials-section .card { padding: 1.5rem; }
}
/* Seção de Artigos do Blog */
.blog-section {
    background: linear-gradient(135deg, #f9f9f9, #eaeaea);
}

.blog-section h2 {
    font-size: 2.5rem;
    color: #37474F;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: 'Belleza', cursive;
}

/* Cartões de artigos */
.blog-section .card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

/* Delay na animação */
.blog-section .col:nth-child(1) .card { animation-delay: 0.2s; }
.blog-section .col:nth-child(2) .card { animation-delay: 0.4s; }
.blog-section .col:nth-child(3) .card { animation-delay: 0.6s; }

/* Hover */
.blog-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Estilização dos botões */
.blog-section .btn {
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.blog-section .btn:hover {
    background: var(--primary-dark);
}

/* Botão Ver Mais */
.blog-section .btn-lg {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.blog-section .btn-lg:hover {
    background: var(--primary-color);
    color: white;
}

/* Animação */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-section h2 { font-size: 2rem; }
    .blog-section .card { padding: 1.5rem; }
}/* Estilos dos campos de input */
.form-label {
    font-size: 1.1rem;
    color: #555555;
}

/* Campos de texto e email */
.form-control {
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de foco nos campos */
.form-control:focus {
    border-color: #F26122;
    box-shadow: 0 0 10px rgba(242, 97, 34, 0.2);
    outline: none;
}

/* Texto de erro nos campos obrigatórios */
.text-danger {
    font-size: 0.9rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

thead tr {
  background-color: #D0AB01; /* Cor Cabeçalho */
  color: #ffffff;
  text-align: left;
}

th, td {
  padding: 12px 15px;
}

tbody tr {
  border-bottom: 1px solid #dddddd;
}

tbody tr:nth-of-type(even) {
  background-color: #D4D4D5; /* Cor Fileiras */
}

tbody tr:last-of-type {
  border-bottom: 2px solid #AFAFAE;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px;
  border-radius: 50%;
  z-index: 9999;
  display: none; /* começa invisível */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}

.whatsapp-float i {
  pointer-events: none;
}
/*-- Estilo do Artigo Principal --*/
#site-content .entry-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    margin-bottom: 0.5rem;
    color: #222;
}

#site-content .entry-meta {
    font-size: 0.9rem; /* 14.4px */
    color: #6c757d;
    margin-bottom: 1.5rem;
}

#site-content .entry-content {
    line-height: 1.75;
    font-size: 1.1rem; /* 17.6px */
}

#site-content .entry-content p {
    margin-bottom: 1.5em;
}

#site-content .entry-content h2,
#site-content .entry-content h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
}

/*-- Estilo do Rodapé do Post (Tags e Categorias) --*/
.entry-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    font-size: 0.9rem;
}

.entry-footer .tag-links a,
.entry-footer .categories-links a {
    display: inline-block;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    color: #555;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.2rem;
}

.entry-footer .tag-links a:hover,
.entry-footer .categories-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/*-- Botão de CTA WhatsApp --*/
.cta-whatsapp-button {
    background-color: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    font-family: var(--heading-font);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-whatsapp-button:hover {
    background-color: var(--whatsapp-hover-color);
    border-color: var(--whatsapp-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-whatsapp-button .fab.fa-whatsapp {
    margin-right: 10px;
    font-size: 1.2em;
}

/*-- Seção de Posts Relevantes --*/
.related-posts-title {
    font-family: var(--heading-font);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.related-post-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-image-link {
    display: block;
    overflow: hidden;
}

.related-post-card .card-img-top {
    transition: transform 0.4s ease;
}

.related-post-card:hover .card-img-top {
    transform: scale(1.05);
}

.related-post-card .card-body {
    text-align: left;
}

.related-post-card .card-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-post-card .card-title a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.related-post-card .card-title a:hover {
    color: var(--primary-color);
}

/*-- Responsividade --*/
@media (max-width: 768px) {
    #site-content .entry-title {
        font-size: 2rem; /* 32px */
    }
    
    .related-posts .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .related-posts .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ================================================================
   VITAE FARMA — PREMIUM REDESIGN COMPONENTS
   ================================================================ */

/* --- Section Header Pattern --- */
.section-header h2,
.section-header h2 { font-family: 'Belleza', cursive; font-size: 2.2rem; color: #2d2d2d; line-height: 1.25; }
.section-tag {
    display: inline-block;
    background: rgba(255, 97, 21, 0.1);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.section-sub { color: #6c757d; font-size: 1rem; max-width: 580px; margin: 0.5rem auto 0; }
.text-highlight { color: var(--primary-color); }

/* --- Hero Enhancements --- */
.hero { min-height: 72vh; padding: 5rem 0 3.5rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: 'Belleza', cursive;
    font-size: clamp(1.9rem, 5vw, 3.1rem);
    color: #fff;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.3s forwards;
}

.hero-highlight { color: var(--primary-light); }

.hero-rotating { min-height: 3rem; margin-bottom: 1rem; }
.seg-line {
    display: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}
.seg-line.active {
    display: block;
    animation: fadeInUp 0.5s ease-out forwards;
}
.seg-line strong { color: var(--primary-light); }

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 560px;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.7s forwards;
}

.hero-trust { opacity: 0; animation: fadeInUp 0.9s ease-out 1s forwards; }
.hero-trust span { color: rgba(255, 255, 255, 0.82); font-size: 0.88rem; }
.hero-trust i { color: #4ade80; margin-right: 4px; }

.btn-hero-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.85rem 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(255, 97, 21, 0.45);
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 97, 21, 0.55);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50px;
    font-weight: 500;
    padding: 0.85rem 2rem;
    transition: all 0.3s;
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* --- Stats Bar --- */
.stats-bar {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    padding: 1.25rem 0;
}
.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
}
.stat-item:last-child { border-right: none; }
.stat-inner { display: flex; flex-direction: column; align-items: center; }
.stat-num {
    font-family: 'Belleza', cursive;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* --- Segments Section --- */
.segments-section { background: #f8f9fa; }

.seg-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.seg-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.11);
    border-color: var(--primary-light);
}
.seg-card.seg-featured {
    border-color: var(--primary-color);
    background: linear-gradient(160deg, #fff 0%, #fff8f5 100%);
}

.seg-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

.seg-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: transform 0.3s;
}
.seg-card:hover .seg-icon { transform: scale(1.08) rotate(4deg); }
.seg-icon i { font-size: 1.4rem; color: #fff; }

.seg-card h3 {
    font-family: 'Belleza', cursive;
    font-size: 1.25rem;
    color: #2d2d2d;
    margin-bottom: 0.65rem;
}
.seg-card p { color: #6c757d; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }

.seg-list { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.seg-list li {
    color: #555;
    font-size: 0.88rem;
    padding: 0.28rem 0 0.28rem 1.6rem;
    position: relative;
    line-height: 1.4;
}
.seg-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 0.72rem;
    top: 0.42rem;
}

.btn-seg {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    transition: all 0.3s;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}
.btn-seg:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(255, 97, 21, 0.35);
}

/* --- About Section --- */
.about-section { background: #fff; }

.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img-wrap img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s;
}
.about-img-wrap:hover img { transform: scale(1.02); }

.about-badge-box {
    position: absolute;
    bottom: -1.2rem;
    left: -1rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 24px rgba(255, 97, 21, 0.45);
    text-align: center;
    min-width: 110px;
}
.about-badge-box strong { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.about-badge-box small { font-size: 0.72rem; opacity: 0.88; margin-top: 2px; }

.check-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.25rem; }
.check-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.check-ico {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.check-ico i { color: #fff; font-size: 0.7rem; }
.check-row strong { display: block; color: #2d2d2d; font-size: 0.95rem; margin-bottom: 0.15rem; }
.check-row p { color: #6c757d; font-size: 0.875rem; margin: 0; line-height: 1.5; }

/* --- Process Cards (enhanced) --- */
.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}
.process-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}
.process-num {
    font-family: 'Belleza', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(255, 97, 21, 0.13);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.process-card h4 { font-size: 1.05rem; font-weight: 700; color: #2d2d2d; margin-bottom: 0.65rem; }

/* --- Benefit Cards (new style) --- */
.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.11);
    border-color: rgba(255, 97, 21, 0.2);
}
.benefit-ico {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s;
}
.benefit-card:hover .benefit-ico { transform: scale(1.1) rotate(6deg); }
.benefit-ico i { font-size: 1.5rem; color: #fff; }
.benefit-card h4 { font-size: 1.05rem; font-weight: 700; color: #2d2d2d; margin-bottom: 0.65rem; }
.benefit-card p { color: #6c757d; font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* --- Testimonials (new style) --- */
.testimonials-section { background: #f8f9fa !important; }

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: left;
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
}
.testi-card.testi-featured {
    border-color: var(--primary-color);
    background: linear-gradient(160deg, #fff 0%, #fff8f5 100%);
}
.testi-stars i { color: #f59e0b; font-size: 0.88rem; }
.testimonial-text {
    font-size: 0.92rem !important;
    color: #4a4a4a !important;
    font-style: italic;
    line-height: 1.7;
    flex: 1;
    margin: 0 !important;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testi-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-avatar i { color: #fff; font-size: 1rem; }
.testi-author strong { font-size: 0.9rem; color: #2d2d2d; display: block; }
.testi-author small { font-size: 0.78rem; color: #6c757d; }

/* --- FAQ Section --- */
.faq-section { background: #fff; }

.faq-item {
    border: none !important;
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}
.faq-btn {
    background: #fff !important;
    color: #2d2d2d !important;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: none !important;
    padding: 1.1rem 1.5rem;
}
.faq-btn:not(.collapsed) {
    background: linear-gradient(135deg, #fff8f5, #fff) !important;
    color: var(--primary-color) !important;
}
.accordion-body {
    color: #6c757d;
    font-size: 0.92rem;
    line-height: 1.75;
    padding: 0 1.5rem 1.25rem;
    background: #fff;
}

/* --- CTA Final Section --- */
.cta-final-section {
    background: linear-gradient(135deg, #1c1c1c 0%, #2f2f2f 100%);
}
.cta-final-box { max-width: 680px; margin: 0 auto; }
.cta-final-box h2 {
    font-family: 'Belleza', cursive;
    font-size: clamp(1.6rem, 4vw, 2rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.cta-sub { color: rgba(255, 255, 255, 0.75); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.cta-wpp-icon { font-size: 3rem; color: #25D366; line-height: 1; }

.btn-cta-main {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 22px rgba(37, 211, 102, 0.4);
}
.btn-cta-main:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.btn-cta-phone {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    transition: all 0.3s;
}
.btn-cta-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.cta-disclaimer { color: rgba(255, 255, 255, 0.42); font-size: 0.82rem; }

/* --- Blog Section (enhanced) --- */
.blog-section { background: #f8f9fa !important; }
.blog-card { transition: all 0.3s ease !important; }
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12) !important;
}

/* --- Global Button Brand Override --- */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}
.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .about-badge-box { position: relative; bottom: auto; left: auto; margin-top: 1.25rem; flex-direction: row; gap: 1rem; justify-content: center; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 4.5rem 0 3rem; }
    .hero-headline { font-size: 1.65rem; }
    .section-header h2 { font-size: 1.65rem; }
    .stat-num { font-size: 1.35rem; }
    .stat-lbl { font-size: 0.65rem; }
    .seg-card, .benefit-card, .testi-card, .process-card { padding: 1.5rem 1.25rem; }
    .cta-final-box h2 { font-size: 1.5rem; }
}

/* --- Hero subtle secondary link --- */
.hero-link-subtle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s;
    padding: 0.25rem 0;
    border: none;
    background: none;
}
.hero-link-subtle:hover {
    color: rgba(255, 255, 255, 0.85);
}
.hero-link-subtle i {
    font-size: 0.75rem;
}

/* --- Broader scope banner --- */
.seg-broader {
    border-top: 1px solid #eee;
    padding-top: 2.5rem;
}
.seg-broader-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
    border: 1.5px solid rgba(255, 97, 21, 0.15);
    border-radius: 18px;
    padding: 2rem 2.25rem;
}
.seg-broader-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.seg-broader-icon i {
    font-size: 1.4rem;
    color: #fff;
}
.seg-broader-body h3 {
    font-family: 'Belleza', cursive;
    font-size: 1.2rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}
.seg-broader-body p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

@media (max-width: 576px) {
    .seg-broader-inner {
        flex-direction: column;
        padding: 1.5rem;
    }
}

/* ================================================================
   VITAE FARMA — CUSTOM LEAD FORM
   ================================================================ */

/* Modal intro text */
.vf-modal-intro {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Form fields */
.vf-field {
    margin-bottom: 1rem;
}
.vf-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 0.35rem;
    letter-spacing: 0.2px;
}
.vf-req {
    color: var(--primary-color);
    margin-left: 1px;
}
.vf-opt {
    font-weight: 400;
    color: #9a9a9a;
    font-size: 0.78rem;
}

/* Input wrapper with icon */
.vf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.vf-icon {
    position: absolute;
    left: 0.85rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 2;
}
.vf-input-wrap input,
.vf-input-wrap select {
    width: 100%;
    padding: 0.65rem 0.9rem 0.65rem 2.4rem;
    font-size: 0.92rem;
    color: #2d2d2d;
    background: #f8f9fa;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.vf-input-wrap input::placeholder {
    color: #bbb;
}
.vf-input-wrap input:focus,
.vf-input-wrap select:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 97, 21, 0.12);
}
.vf-input-wrap input:focus + .vf-icon,
.vf-input-wrap:focus-within .vf-icon {
    color: var(--primary-color);
}

/* Select arrow */
.vf-select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #999;
    position: absolute;
    right: 0.9rem;
    pointer-events: none;
    z-index: 2;
}
.vf-select-wrap select {
    padding-right: 2.2rem;
    cursor: pointer;
}

/* Feedback messages */
.vf-feedback {
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
}
.vf-feedback.d-none { display: none !important; }
.vf-feedback-error {
    background: #fff2f2;
    border: 1px solid #ffcdd2;
    color: #c0392b;
}
.vf-feedback-ok {
    background: #f0fff4;
    border: 1px solid #c3e6cb;
    color: #1e7e34;
}

/* Submit button */
.vf-btn-submit {
    background: linear-gradient(135deg, #25D366, #1da856);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    margin-top: 0.25rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.2px;
}
.vf-btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #1da856, #128C7E);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(37, 211, 102, 0.45);
}
.vf-btn-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

/* Disclaimer */
.vf-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Modal header tweak for custom form */
#exampleModal .modal-header {
    padding-bottom: 0.5rem;
}
#exampleModal .modal-body {
    padding-top: 0.75rem;
}