/*
Theme Name: Busca.Legal 2025
Theme URI: https://busca.legal
Author: Marcelo Santos - Busca.Legal
Author URI: https://www.linkedin.com/in/marcelo-santos-dantas-junior
Description: Tema customizado 2025 para Busca.Legal - Soluções tecnológicas para áreas fiscal, tributária e contábil. Baseado em Bootstrap com design limpo e profissional.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: busca-legal
Tags: corporate, business, tax, legal, bootstrap, responsive

Paleta de Cores:
- Azul-escuro: #1a2f4a
- Cinza: #6c757d
- Off-white: #f8f9fa
- Bordo: #8b2635
- Laranja suave: #e67e22
- Verde-escuro: #27ae60
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a2f4a;
    --secondary-gray: #6c757d;
    --off-white: #f8f9fa;
    --accent-bordeaux: #8b2635;
    --accent-orange: #e67e22;
    --accent-green: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Card styling */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section { padding: 40px 0; }
    .section-title { font-size: 2rem; }
}


/* Newsletter Boletim Diário */
#boletim .newsletter-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

#boletim .newsletter-content h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 16px;
	line-height: 1.3;
}

#boletim .newsletter-content p {
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

#boletim .newsletter-content .highlight {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--accent-green);
	font-weight: 600;
	font-size: 0.95rem;
}

#boletim .newsletter-content.highlight i.fas {
	font-size: 1.2rem;
}

#boletim .newsletter-form-compact {
	background: #ffffff;
	padding: 35px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#boletim .newsletter-form-compact .newsletter-form-compact-row,
#boletim .newsletter-form-compact .newsletter-form-compact-row-single {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

#boletim .newsletter-form-compact .newsletter-form-compact-row-single {
	grid-template-columns: 1fr;
}

#boletim .newsletter-form-compact .form-group,
#boletim .newsletter-form-compact p {
	margin-bottom: 0;	
}

#boletim .newsletter-form-compact label {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-blue);
	margin-bottom: 6px;
	display: block;
}

#boletim .newsletter-form-compact br {
	display: none;
}

#boletim .newsletter-form-compact .btn {
	width: 100%;
	padding: 14px;
	font-size: 1rem;
	font-weight: 700;
}

#boletim .newsletter-form-compact input[type="text"],
#boletim .newsletter-form-compact input[type="email"],
#boletim .newsletter-form-compact input[type="tel"]{
	width:100%;
	padding: 10px 14px;
	border:1px solid #dddddd;
	border-radius: 8px;
	font-size: 14px;
}

@media (max-width: 768px) {
	#boletim .newsletter-wrapper {
		flex-direction: column;
		justify-content: center;
	}

	#boletim .wpcf7 {
		width: 100%;
	}

	#boletim .newsletter-form-compact .newsletter-form-compact-row {
		display: flex;
		flex-direction: column;
	}
}

