/* Reset e Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
}
.entry-header,
.page-header,
.post-header,
h1.entry-title {
margin-top: 0 !important;
padding-top: 0 !important;
}
.featured-image,
.hero,
.page-banner {
margin: 0 !important;
padding: 0 !important;
height: auto !important;
}
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
width: 100%;
max-width: 100vw;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Tipografia */
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
line-height: 1.2;
}
.section-title {
font-size: 2.5rem;
color: #2d5a4a;
margin-bottom: 1rem;
text-align: center;
}
.section-subtitle {
font-size: 1.1rem;
color: #666;
text-align: center;
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
/* Botões */
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 12px 24px;
border: none;
border-radius: 50px;
text-decoration: none;
font-weight: 500;
font-size: 1rem;
transition: all 0.3s ease;
cursor: pointer;
text-align: center;
}
.btn-primary {
background: linear-gradient(135deg, #f4b942, #e6a635);
color: white;
box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(244, 185, 66, 0.4);
}
.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: white;
color: #2d5a4a;
}
.btn-outline {
background: transparent;
color: #2d5a4a;
border: 2px solid #2d5a4a;
}
.btn-outline:hover {
background: #2d5a4a;
color: white;
}
/* Header */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(45, 90, 74, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
transition: all 0.3s ease;
}
.navbar {
padding: 1rem 0;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
height: 50px;
width: auto;
}
.nav-list {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-link {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}
.nav-link:hover {
color: #f4b942;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #f4b942;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.nav-toggle {
display: none;
flex-direction: column;
cursor: pointer;
position: relative;
z-index: 1001;
}
.bar {
width: 25px;
height: 3px;
background: white;
margin: 3px 0;
transition: 0.3s;
display: block;
}
/* Hero Section */
.hero {
height: 100vh;
position: relative;
display: flex;
align-items: center;
color: white;
overflow: hidden;
}
.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #2d5a4a 0%, #3d6b5a 100%);
z-index: -2;
}
.hero-background::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('../images/hero-bg.jpg') center/cover;
opacity: 0.3;
z-index: -1;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(45, 90, 74, 0.8);
z-index: -1;
}
.hero {
min-height: 100vh;
padding-bottom: 3rem;
}
.hero-content {
margin-top: 150px;
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.hero-title {
margin-top: 95px;
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.1;
}
.highlight {
color: #f4b942;
position: relative;
}
.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2.5rem;
opacity: 0.9;
line-height: 1.6;
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 3rem;
flex-wrap: wrap;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 3rem;
}
.stat-item {
text-align: center;
}
.stat-number {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: #f4b942;
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 0.9rem;
opacity: 0.8;
}
/* Sobre Section */
.sobre {
padding: 5rem 0;
background: #f8f9fa;
}
.sobre-content {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
align-items: center;
margin-top: 3rem;
}
.sobre-image {
position: relative;
}
.sobre-image img {
width: 100%;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.sobre-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: #2d5a4a;
color: white;
padding: 1rem 1.5rem;
border-radius: 50px;
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
box-shadow: 0 10px 30px rgba(45, 90, 74, 0.3);
}
.sobre-text h3 {
font-size: 2rem;
color: #2d5a4a;
margin-bottom: 1.5rem;
}
.sobre-text p {
margin-bottom: 1.5rem;
color: #666;
line-height: 1.8;
}
.formacao {
margin: 2rem 0;
}
.formacao h4 {
color: #2d5a4a;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.formacao-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1rem;
padding: 1rem;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.formacao-item i {
color: #f4b942;
font-size: 1.5rem;
margin-top: 0.2rem;
}
.formacao-item strong {
display: block;
color: #2d5a4a;
margin-bottom: 0.2rem;
align-items: center;
}
.formacao-item span {
color: #666;
font-size: 0.9rem;
}
.certificacoes h4 {
color: #2d5a4a;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.certificacoes ul {
list-style: none;
}
.certificacoes li {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
color: #666;
}
.certificacoes i {
color: #f4b942;
}
/* Áreas de Atuação */
.areas {
padding: 5rem 0;
background: white;
}
.areas-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.area-card {
background: white;
padding: 2.5rem 2rem;
border-radius: 20px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border-top: 4px solid #f4b942;
}
.area-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.area-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #2d5a4a, #3d6b5a);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: white;
font-size: 2rem;
}
.area-card h3 {
font-size: 1.5rem;
color: #2d5a4a;
margin-bottom: 1rem;
}
.area-card p {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.area-services {
list-style: none;
margin-bottom: 2rem;
text-align: left;
}
.area-services li {
padding: 0.5rem 0;
color: #666;
position: relative;
padding-left: 1.5rem;
}
.area-services li::before {
content: '✓';
position: absolute;
left: 0;
color: #f4b942;
font-weight: bold;
}
.area-btn {
color: #2d5a4a;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid transparent;
transition: border-color 0.3s ease;
}
.area-btn:hover {
border-bottom-color: #f4b942;
}
/* Depoimentos */
.depoimentos {
padding: 5rem 0;
background: #f8f9fa;
}
.depoimentos-slider {
position: relative;
max-width: 800px;
margin: 0 auto;
}
.depoimento-card {
display: none;
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
text-align: center;
}
.depoimento-card.active {
display: block;
}
.stars {
margin-bottom: 1.5rem;
}
.stars i {
color: #f4b942;
font-size: 1.2rem;
margin: 0 0.1rem;
}
.depoimento-content p {
font-size: 1.2rem;
color: #666;
line-height: 1.8;
margin-bottom: 2rem;
font-style: italic;
}
.depoimento-author {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.depoimento-author img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
}
.depoimento-author h4 {
color: #2d5a4a;
margin-bottom: 0.2rem;
}
.depoimento-author span {
color: #666;
font-size: 0.9rem;
}
.slider-controls {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.slider-btn {
width: 50px;
height: 50px;
border: none;
border-radius: 50%;
background: #2d5a4a;
color: white;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.slider-btn:hover {
background: #f4b942;
transform: scale(1.1);
}
/* Artigos */
.artigos {
padding: 5rem 0;
background: white;
}
.artigos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.artigo-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.artigo-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.artigo-image {
position: relative;
height: 200px;
overflow: hidden;
}
.artigo-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.artigo-card:hover .artigo-image img {
transform: scale(1.05);
}
img, video {
max-width: 100%;
height: auto;
}
.artigo-category {
position: absolute;
top: 1rem;
left: 1rem;
background: #f4b942;
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}
.artigo-content {
padding: 2rem;
}
.artigo-content h3 {
color: #2d5a4a;
margin-bottom: 1rem;
font-size: 1.3rem;
line-height: 1.3;
}
.artigo-content p {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.artigo-meta {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
font-size: 0.9rem;
color: #999;
}
.artigo-meta span {
display: flex;
align-items: center;
gap: 0.3rem;
}
.artigo-link {
color: #2d5a4a;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid transparent;
transition: border-color 0.3s ease;
}
.artigo-link:hover {
border-bottom-color: #f4b942;
}
.artigos-cta {
text-align: center;
margin-top: 3rem;
}
/* Contato */
.contato {
padding: 5rem 0;
background: #f8f9fa;
}
.contato-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-top: 3rem;
}
.contato-info h3 {
color: #2d5a4a;
margin-bottom: 2rem;
font-size: 1.8rem;
text-align: center;
}
.info-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 2rem;
}
.info-item i {
color: #f4b942;
font-size: 1.5rem;
margin-top: 0.2rem;
}
.info-item h4 {
color: #2d5a4a;
margin-bottom: 0.5rem;
}
.info-item p {
color: #666;
line-height: 1.6;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 2rem;
}
.social-link {
width: 50px;
height: 50px;
background: #2d5a4a;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.2rem;
}
.social-link:hover {
background: #f4b942;
transform: translateY(-3px);
}
/* Formulário */
.contato-form {
background: white;
padding: 2.5rem;
border-radius: 20px;
text-align: center;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #2d5a4a;
font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 1rem;
transition: border-color 0.3s ease;
font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #f4b942;
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
/* Footer */
.footer {
background: #2d5a4a;
color: white;
padding: 3rem 0 1rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
text-align: center;
}
.footer-logo {
height: 60px;
margin-bottom: 1rem;
}
.footer-section h4 {
margin-bottom: 1rem;
color: #f4b942;
}
.footer-section p {
color: #ccc;
line-height: 1.6;
margin-bottom: 1rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section ul li a:hover {
color: #f4b942;
}
.footer-social {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
p{
text-align: center;
}
.footer-contact {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-contact i {
color: #f4b942;
width: 20px;
}
.footer-bottom {
border-top: 1px solid #3d6b5a;
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-copyright p {
color: #ccc;
margin: 0;
}
.footer-legal {
display: flex;
gap: 2rem;
}
.footer-legal a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-legal a:hover {
color: #f4b942;
}
/* WhatsApp Float */
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.8rem;
text-decoration: none;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
z-index: 1000;
transition: all 0.3s ease;
animation: pulse 2s infinite;
}
.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
@keyframes pulse {
0% {
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
50% {
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
}
100% {
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
}
/* Responsividade */
@media (max-width: 1024px) {
.container {
padding: 0 30px;
}
.hero-stats {
gap: 2rem;
}
.sobre-content {
gap: 3rem;
}
.areas-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
}
@media (max-width: 768px) {
.container {
padding: 0 20px;
}
/* Ocultar menu desktop em mobile */
.nav-list {
display: none;
}
/* Navegação Mobile */
.nav-menu {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: rgba(45, 90, 74, 0.98);
backdrop-filter: blur(10px);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding-top: 2rem;
transition: left 0.3s ease;
z-index: 999;
overflow-y: auto;
}
.nav-menu.active {
left: 0;
}
.nav-list {
display: flex;
flex-direction: column;
gap: 2rem;
width: 100%;
text-align: center;
list-style: none;
margin: 0;
padding: 0;
}
.nav-item {
width: 100%;
}
.nav-link {
display: block;
padding: 1rem;
font-size: 1.1rem;
color: white;
text-decoration: none;
transition: all 0.3s ease;
}
.nav-link:hover {
background: rgba(244, 185, 66, 0.2);
color: #f4b942;
}
.nav-toggle {
display: flex !important;
flex-direction: column;
cursor: pointer;
z-index: 1001;
padding: 5px;
position: relative;
}
.nav-toggle.active .bar:nth-child(2) {
opacity: 0;
}
.nav-toggle.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
/* Hero Mobile */
.hero {
min-height: 100vh;
padding: 2rem 0;
display: flex;
align-items: center;
}
.hero-content {
margin-top: 80px;
padding: 0 1rem 2rem;
text-align: center;
width: 100%;
}
.hero-title {
font-size: 2.2rem;
line-height: 1.2;
margin-bottom: 1rem;
text-align: center;
}
.hero-subtitle {
font-size: 1rem;
margin-bottom: 2rem;
line-height: 1.5;
line-height: 1.5;
text-align: center;
}
.hero-buttons {
flex-direction: column;
align-items: center;
gap: 1rem;
margin-bottom: 2rem;
}
.hero-buttons .btn {
width: 100%;
max-width: 280px;
justify-content: center;
padding: 15px 20px;
}
.hero-stats {
flex-direction: row;
justify-content: space-around;
gap: 1rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.stat-item {
flex: 1;
min-width: 100px;
text-align: center;
}
.stat-number {
font-size: 2.2rem;
display: block;
}
.stat-label {
font-size: 0.85rem;
display: block;
}
/* Seções Mobile */
.section-title {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
.section-subtitle {
font-size: 1rem;
margin-bottom: 2rem;
}
/* Sobre Mobile */
.sobre {
padding: 3rem 0;
}
.sobre-content {
grid-template-columns: 1fr;
gap: 2rem;
margin-top: 2rem;
}
.sobre-text h3 {
font-size: 1.5rem;
}
.formacao-item {
flex-direction: column;
text-align: center;
gap: 0.5rem;
}
/* Áreas Mobile */
.areas {
padding: 3rem 0;
}
.areas-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
margin-top: 2rem;
}
.area-card {
padding: 2rem 1.5rem;
}
/* Depoimentos Mobile */
.depoimentos {
padding: 3rem 0;
}
.depoimento-card {
padding: 2rem 1.5rem;
}
.depoimento-author {
flex-direction: column;
gap: 0.5rem;
}
/* Artigos Mobile */
.artigos {
padding: 3rem 0;
}
.artigos-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
margin-top: 2rem;
}
.artigo-meta {
flex-direction: column;
gap: 0.5rem;
}
/* Contato Mobile */
.contato {
padding: 3rem 0;
}
.contato-content {
grid-template-columns: 1fr;
gap: 2rem;
margin-top: 2rem;
}
.contato-direct {
margin: 0 auto;
max-width: 600px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.form-row {
grid-template-columns: 1fr;
}
.social-links {
justify-content: center;
}
/* Footer Mobile */
.footer {
padding: 2rem 0 1rem;
}
.footer-content {
grid-template-columns: 1fr;
gap: 1.5rem;
text-align: center;
}
.footer-bottom {
flex-direction: column;
text-align: center;
gap: 1rem;
}
.footer-legal {
justify-content: center;
}
/* WhatsApp Float Mobile */
.whatsapp-float {
bottom: 20px;
right: 20px;
width: 55px;
height: 55px;
font-size: 1.6rem;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
/* Hero Extra Small */
.hero-title {
font-size: 2rem;
line-height: 1.1;
text-align: center;
}
.formacao-item {
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.hero-subtitle {
font-size: 1rem;
text-align: center;
}
.hero-buttons .btn {
font-size: 0.9rem;
padding: 12px 16px;
}
.hero-stats {
flex-direction: row;
justify-content: space-around;
gap: 0.5rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.stat-item {
flex: 1;
min-width: 90px;
text-align: center;
}
.stat-number {
font-size: 1.8rem;
display: block;
}
.stat-label {
font-size: 0.75rem;
display: block;
}
/* Seções Extra Small */
.section-title {
font-size: 1.6rem;
}
.section-subtitle {
font-size: 0.9rem;
}
/* Cards Extra Small */
.area-card,
.contato-form,
.depoimento-card {
padding: 1.5rem 1rem;
}
.area-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
.area-card h3 {
font-size: 1.2rem;
}
/* Formulário Extra Small */
.form-group input,
.form-group select,
.form-group textarea {
padding: 10px 12px;
font-size: 0.9rem;
}
.btn {
padding: 10px 16px;
font-size: 0.9rem;
}
/* Footer Extra Small */
.footer-social {
justify-content: center;
}
.social-link {
width: 45px;
height: 45px;
font-size: 1.1rem;
}
/* WhatsApp Float Extra Small */
.whatsapp-float {
width: 50px;
height: 50px;
font-size: 1.4rem;
bottom: 60px;
right: 15px;
}
}
@media (max-width: 360px) {
.container {
padding: 0 10px;
}
.hero-title {
font-size: 1.8rem;
text-align: center;
}
.hero-subtitle {
font-size: 0.9rem;
text-align: center;
}
.hero-stats {
flex-direction: row;
justify-content: space-around;
gap: 0.3rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.stat-item {
flex: 1;
min-width: 80px;
text-align: center;
}
.stat-number {
font-size: 1.6rem;
display: block;
}
.stat-label {
font-size: 0.7rem;
display: block;
}
.section-title {
font-size: 1.4rem;
}
.area-card,
.contato-form {
padding: 1rem;
}
.hero-buttons .btn {
max-width: 250px;
}
}
/* Melhorias para touch devices */
@media (hover: none) and (pointer: coarse) {
.btn:hover,
.nav-link:hover,
.area-btn:hover,
.artigo-link:hover,
.social-link:hover {
transform: none;
}
.btn:active,
.social-link:active {
transform: scale(0.95);
}
.area-card:hover,
.artigo-card:hover {
transform: none;
}
/* Aumentar área de toque */
.nav-link,
.btn,
.social-link {
min-height: 44px;
min-width: 44px;
}
}
/* Animações */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.6s ease-out;
}
/* Scroll suave para seções */
.section-header {
margin-bottom: 3rem;
}
/* Melhorias de acessibilidade */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
outline: 2px solid #f4b942;
outline-offset: 2px;
}
/* Estados de loading */
.loading {
opacity: 0.7;
pointer-events: none;
}
/* Transições suaves */
* {
transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
/* Estilos para Contato Direto */
.contato-direct {
background: white;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.contato-direct h3 {
color: #2d5a4a;
margin-bottom: 1rem;
font-size: 1.8rem;
text-align: center;
}
.contato-direct > p {
color: #666;
text-align: center;
margin-bottom: 2rem;
font-size: 1.1rem;
}
.contato-direct > p,
.contact-note {
text-align: center;
}
.contact-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
justify-content: center;
margin-bottom: 2rem;
}
@media (max-width: 768px) {
.contact-options {
grid-template-columns: 1fr;
}
}
.contact-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
justify-content: center;
}
.contact-option,
.contact-note {
width: 100%;
}
.contact-option,
.contact-note {
width: 100%;
}
.contact-option {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem;
border: 2px solid #e0e0e0;
border-radius: 15px;
text-decoration: none;
transition: all 0.3s ease;
background: #f8f9fa;
min-height: 100px;
}
.contact-option:hover {
border-color: #f4b942;
background: white;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(244, 185, 66, 0.15);
}
.contact-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: white;
flex-shrink: 0;
}
.email-option .contact-icon {
background: linear-gradient(135deg, #2d5a4a, #3d6b5a);
}
.whatsapp-option .contact-icon {
background: linear-gradient(135deg, #25d366, #20b358);
}
.phone-option .contact-icon {
background: linear-gradient(135deg, #f4b942, #e6a635);
text-align: center;
}
.contact-info h4 {
color: #2d5a4a;
margin-bottom: 0.3rem;
font-size: 1.2rem;
}
.contact-info p {
color: #333;
font-weight: 600;
margin-bottom: 0.3rem;
font-size: 1rem;
}
.contact-info span {
color: #666;
font-size: 0.9rem;
}
.contact-note {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.5rem;
background: #f0f8f5;
border-radius: 10px;
border-left: 4px solid #f4b942;
}
.contact-note i {
color: #f4b942;
font-size: 1.2rem;
margin-top: 0.2rem;
flex-shrink: 0;
}
.contact-note p {
color: #666;
margin: 0;
line-height: 1.6;
font-size: 0.95rem;
}
.container {
padding: 0 10px;
}
h1 {
font-size: 1.8rem;
}
.section-title {
font-size: 2rem;
}
.col {
width: 100%;
display: block;
}
/* Responsividade para contato direto */
@media (max-width: 768px) {
.contato-direct {
padding: 2rem 1.5rem;
}
.contact-option {
flex-direction: column;
text-align: center;
gap: 1rem;
padding: 1.5rem 1rem;
}
.contact-icon {
width: 50px;
height: 50px;
font-size: 1.5rem;
}
.contact-note {
flex-direction: column;
gap: 0.5rem;
text-align: center;
}
}
@media (max-width: 480px) {
.contato-direct {
padding: 1.5rem 1rem;
}
.contato-direct h3 {
font-size: 1.5rem;
}
.contact-option {
padding: 1rem;
}
.contact-icon {
width: 45px;
height: 45px;
font-size: 1.3rem;
}
.contact-info h4 {
font-size: 1.1rem;
}
.contact-info p {
font-size: 0.9rem;
}
.contact-info span {
font-size: 0.8rem;
}
}
h4 {

}
/* Estilos para as duas colunas no formulário de contato */
.contact-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.contact-columns .column {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
/* Ajuste para mobile para que as colunas voltem a ser uma única coluna */
@media (max-width: 768px) {
.contact-columns {
grid-template-columns: 1fr;
}
}
/* --- Responsividade --- */
@media (max-width: 1024px) {
.container {
padding: 0 15px;
}
.section-title {
font-size: 2.2rem;
}
}
@media (max-width: 768px) {
.container {
padding: 0 10px;
}
h1 {
font-size: 1.8rem;
}
.section-title {
font-size: 2rem;
}
.col, .column, .service, .client {
width: 100% !important;
display: block;
margin-bottom: 20px;
}
nav ul {
flex-direction: column;
gap: 10px;
}
nav ul li {
display: block;
}
.hero-text {
font-size: 1rem;
}
.btn {
padding: 10px 18px;
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 1.5rem;
}
.section-title {
font-size: 1.6rem;
}
.btn {
width: 100%;
text-align: center;
}
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.artigo-card {
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
transition: box-shadow 0.3s ease;
}
.artigo-card:hover {
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.artigo-image img {
width: 100%;
height: 200px;
object-fit: cover;
}
.artigo-content {
padding: 1.5rem;
}
.artigo-content h3 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
.artigo-meta {
display: flex;
gap: 1rem;
font-size: 0.875rem;
color: #666;
margin-bottom: 1rem;
}
.artigo-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
}
.artigo-link {
display: none;
}
.main-content {
padding-top: 0;
}
.hero-section {
background: linear-gradient(135deg, #2d5a4a 0%, #3d6b5a 100%);
color: white;
padding: 80px 0;
text-align: center;
margin-bottom: 40px;
}
.hero-section .hero-title {
font-size: 3rem;
margin-bottom: 15px;
margin-top: 0;
}
.hero-section .hero-subtitle {
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 10px;
}
.hero-section .hero-description {
max-width: 700px;
margin: 0 auto;
font-size: 1rem;
}
.blog-container {
display: flex;
gap: 30px;
max-width: 1200px;
margin: 0 auto 60px auto;
padding: 0 20px;
}
.blog-main {
flex: 3;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.blog-sidebar {
flex: 1;
padding-left: 30px;
border-left: 1px solid #eee;
}
@media (max-width: 992px) {
.blog-container {
flex-direction: column;
}
.blog-sidebar {
padding-left: 0;
border-left: none;
margin-top: 40px;
}
}
.artigo-card {
background-color: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
display: flex;
flex-direction: column;
}
.artigo-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.artigo-card a {
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
height: 100%;
}
.artigo-image {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
}
.artigo-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease-in-out;
}
.artigo-card:hover .artigo-image img {
transform: scale(1.05);
}
.artigo-category {
position: absolute;
top: 15px;
left: 15px;
background-color: #f4b942;
color: white;
padding: 5px 10px;
border-radius: 5px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
}
.artigo-content {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.artigo-content h3 {
font-size: 1.3rem;
color: #2d5a4a;
margin-bottom: 10px;
line-height: 1.3;
}
.artigo-meta {
display: flex;
align-items: center;
gap: 15px;
font-size: 0.85rem;
color: #888;
margin-bottom: 15px;
}
.artigo-meta span {
display: flex;
align-items: center;
gap: 5px;
}
.artigo-meta i {
color: #f4b942;
}
.artigo-content p {
font-size: 0.95rem;
color: #555;
line-height: 1.6;
margin-bottom: 15px;
}
.artigo-link {
display: inline-flex;
align-items: center;
color: #2d5a4a;
font-weight: 600;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
.artigo-link:hover {
color: #f4b942;
}
.artigo-link i {
margin-left: 5px;
font-size: 0.8rem;
}
.sidebar-widget {
background-color: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sidebar-widget .widget-title {
font-size: 1.4rem;
color: #2d5a4a;
margin-bottom: 20px;
border-bottom: 2px solid #f4b942;
padding-bottom: 10px;
}
.sidebar-widget ul {
list-style: none;
padding: 0;
}
.sidebar-widget ul li {
margin-bottom: 10px;
}
.sidebar-widget ul li a {
color: #555;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
.sidebar-widget ul li a:hover {
color: #f4b942;
}
.sidebar-widget .post-date {
display: block;
font-size: 0.8rem;
color: #888;
margin-top: 5px;
}
.sidebar-widget .categories li a {
display: block;
padding: 8px 0;
border-bottom: 1px dashed #eee;
}
.sidebar-widget .categories li:last-child a {
border-bottom: none;
}
.blog-container.article-page {
max-width: 900px;
margin-top: 40px;
}
.blog-container.article-page .blog-main {
grid-template-columns: 1fr;
}
.article-header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.article-title {
font-size: 2.8rem;
color: #2d5a4a;
margin-bottom: 15px;
line-height: 1.2;
}
.article-meta {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
font-size: 0.95rem;
color: #777;
}
.article-meta span {
display: flex;
align-items: center;
gap: 8px;
}
.article-meta i {
color: #f4b942;
font-size: 1.1rem;
}
.article-content {
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
color: #2d5a4a;
margin-top: 2.5rem;
margin-bottom: 1.5rem;
line-height: 1.3;
}
.article-content h2 {
font-size: 2rem;
}
.article-content h3 {
font-size: 1.7rem;
}
.article-content p {
margin-bottom: 1.5rem;
}
.article-content strong {
font-weight: 700;
color: #2d5a4a;
}
.article-content em {
font-style: italic;
}
.article-content ul, .article-content ol {
margin-bottom: 1.5rem;
padding-left: 25px;
}
.article-content ul li {
list-style: disc;
margin-bottom: 0.8rem;
}
.article-content ol li {
list-style: decimal;
margin-bottom: 0.8rem;
}
.article-content a {
color: #f4b942;
text-decoration: none;
border-bottom: 1px solid #f4b942;
transition: color 0.2s ease, border-color 0.2s ease;
}
.article-content a:hover {
color: #2d5a4a;
border-bottom-color: #2d5a4a;
}
.article-content blockquote {
border-left: 5px solid #f4b942;
padding-left: 20px;
margin: 2rem 0;
font-style: italic;
color: #666;
}
.article-content img {
max-width: 100%;
height: auto;
display: block;
margin: 2rem auto;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
.article-title {
font-size: 2rem;
}
.article-meta {
flex-direction: column;
gap: 10px;
}
.article-content {
font-size: 1rem;
}
}
.hero-section-blog {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') no-repeat center center/cover;
color: #fff;
padding: 100px 0;
text-align: center;
}
.hero-title-blog {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
}
.hero-subtitle-blog {
font-size: 1.5rem;
font-weight: 400;
}
.blog-container-new {
display: flex;
justify-content: space-between;
padding: 50px;
max-width: 1200px;
margin: 0 auto;
}
.blog-main-new {
width: 65%;
display: grid;
grid-template-columns: 1fr;
gap: 40px;
}
.post-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
overflow: hidden;
transition: transform 0.3s;
margin-bottom: 30px;
}
.post-card:hover {
transform: translateY(-10px);
}
.post-card-image-link {
display: block;
}
.post-card-image {
width: 100%;
height: 250px;
object-fit: cover;
}
.post-card-content {
padding: 20px;
}
.post-card-title-link {
text-decoration: none;
color: #333;
}
.post-card-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 10px;
}
.post-card-excerpt {
font-size: 1rem;
color: #666;
margin-bottom: 15px;
}
.post-card-meta {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
color: #999;
}
.blog-sidebar-new {
width: 30%;
}
.sidebar-widget-new {
background: #f9f9f9;
padding: 20px;
border-radius: 8px;
margin-bottom: 30px;
}
.widget-title-new {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 15px;
border-bottom: 2px solid #00a859;
padding-bottom: 10px;
}
.search-form {
display: flex;
}
.search-field {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px 0 0 4px;
}
.search-submit {
padding: 10px;
border: none;
background: #00a859;
color: #fff;
cursor: pointer;
border-radius: 0 4px 4px 0;
}
.recent-posts-new .recent-post-item {
margin-bottom: 15px;
}
.recent-posts-new .recent-post-item a {
text-decoration: none;
color: #333;
font-weight: 500;
}
.recent-posts-new .recent-post-item a:hover {
color: #00a859;
}
.article-hero-section {
background-size: cover;
background-position: center;
position: relative;
padding: 100px 0;
color: white;
text-align: center;
}
.article-hero-overlay {
position: absolute;
top: 60px;
left: 0;
width: 100%;
height: 140%;
background: rgba(45, 90, 74, 0.8);
display: flex;
align-items: center;
justify-content: center;
}
.article-hero-title {
font-size: 3rem;
margin-bottom: 2rem;
margin-top: 2rem;
font-weight: 700;
padding: 0 20px;
}
.article-hero-meta {
font-size: 1rem;
opacity: 0.9;
}
.article-container {
display: flex;
gap: 30px;
padding: 50px 0;
max-width: 1200px;
margin: 0 auto;
}
.article-main-content {
flex: 3;
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
margin-top: 150px;
}
.article-main-content h1, .article-main-content h2, .article-main-content h3 {
color: #2d5a4a;
margin-top: 2em;
margin-bottom: 1em;
}
.article-main-content p {
margin-bottom: 1.5em;
line-height: 1.8;
color: #333;
text-align: justify;
text-justify: inter-word;
}
.article-sidebar {
flex: 1;
padding: 20px;
background-color: #f8f9fa;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
margin-top: 70px;
}
.sidebar-widget-new {
margin-bottom: 30px;
}
.widget-title-new {
font-size: 1.4rem;
color: #2d5a4a;
margin-bottom: 15px;
border-bottom: 2px solid #f4b942;
padding-bottom: 5px;
}
.share-buttons {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.share-button {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #2d5a4a;
color: white;
font-size: 1.2rem;
text-decoration: none;
transition: background-color 0.3s ease;
}
.share-button:hover {
background-color: #f4b942;
}
.recent-posts-new .recent-post-item {
margin-bottom: 10px;
}
.recent-posts-new .recent-post-item a {
color: #2d5a4a;
text-decoration: none;
font-weight: 500;
}
.recent-posts-new .recent-post-item a:hover {
color: #f4b942;
}
@media (max-width: 768px) {
.article-container {
flex-direction: column;
padding: 20px 15px;
}
.article-main-content, .article-sidebar {
padding: 20px;
margin-top: 50px;
}
.article-hero-title {
font-size: 2rem;
padding: 0 15px;
}
.article-hero-meta {
font-size: 0.9rem;
padding: 0 15px;
}
.article-hero-section {
padding: 80px 0;
}
.article-main-content p {
font-size: 1rem;
line-height: 1.7;
}
}
@media (max-width: 480px) {
.article-container {
padding: 15px 10px;
}
.article-main-content, .article-sidebar {
padding: 15px;
margin: 0 5px;
margin-top: 100px;
}
.article-hero-title {
font-size: 1.6rem;
padding: 0 10px;
line-height: 1.3;
}
.article-hero-meta {
font-size: 0.8rem;
padding: 0 10px;
}
.article-hero-section {
padding: 60px 0;
}
.article-main-content p {
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 1.2em;
}
.article-main-content h1, .article-main-content h2, .article-main-content h3 {
font-size: 1.3rem;
margin-top: 1.5em;
margin-bottom: 0.8em;
}
}
.family-law-banner {
background: linear-gradient(135deg, #2d5a4a 0%, #3a6b5a 100%);
border-radius: 12px;
padding: 25px;
margin: 30px 0;
position: relative;
overflow: hidden;
box-shadow: 0 8px 25px rgba(45, 90, 74, 0.15);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
cursor: pointer;
text-decoration: none;
display: block;
border: 2px solid transparent;
}
.family-law-banner:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 20px 45px rgba(45, 90, 74, 0.35);
border-color: rgba(244, 185, 66, 0.3);
}
.family-law-banner:active {
transform: translateY(-4px) scale(1.01);
box-shadow: 0 12px 30px rgba(45, 90, 74, 0.25);
}
.family-law-banner::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 120px;
height: 120px;
background: url('../images/banner-direito-familia.png') no-repeat center;
background-size: cover;
opacity: 0.1;
transition: opacity 0.3s ease;
}
.family-law-banner:hover::before {
opacity: 0.15;
}
.family-law-banner::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(244, 185, 66, 0.05), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.family-law-banner:hover::after {
opacity: 1;
}
.banner-content {
position: relative;
z-index: 2;
}
.banner-title {
color: #f4b942;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
}
.banner-subtitle {
color: white;
font-size: 1.1rem;
margin-bottom: 15px;
line-height: 1.4;
}
.banner-description {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 20px;
}
.banner-cta-text {
display: inline-flex;
align-items: center;
gap: 8px;
background: #f4b942;
color: #2d5a4a;
padding: 12px 24px;
border-radius: 25px;
font-weight: 600;
font-size: 0.95rem;
margin-top: 15px;
transition: all 0.3s ease;
}
.family-law-banner:hover .banner-cta-text {
background: #e6a635;
transform: translateX(3px);
}
.banner-cta-text i {
font-size: 1rem;
}
@media (max-width: 768px) {
.family-law-banner {
padding: 20px;
margin: 20px 0;
}
.banner-title {
font-size: 1.5rem;
}
.banner-subtitle {
font-size: 1rem;
}
.banner-description {
font-size: 0.9rem;
}
.banner-cta {
padding: 10px 20px;
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.family-law-banner {
padding: 15px;
}
.banner-title {
font-size: 1.3rem;
}
.banner-cta {
width: 100%;
justify-content: center;
text-align: center;
}
}
@media (max-width: 1024px) {
.container {
padding: 0 15px;
}
}
@media (max-width: 768px) {
.header {
padding: 10px 0;
}
.nav-menu {
background: rgba(45, 90, 74, 0.98);
backdrop-filter: blur(10px);
}
.article-hero-overlay {
top: 70px;
}
}
@media (max-width: 480px) {
body {
font-size: 14px;
}
.container {
padding: 0 10px;
}
.header {
padding: 8px 0;
}
.logo {
height: 35px;
}
.nav-toggle {
width: 25px;
height: 20px;
}
.nav-toggle .bar {
height: 2px;
}
.article-hero-overlay {
top: 60px;
}
.sidebar-widget-new {
margin-bottom: 20px;
}
.widget-title-new {
font-size: 1.2rem;
}
.share-buttons {
justify-content: center;
}
.share-button {
width: 35px;
height: 35px;
font-size: 1rem;
}
}
@media (max-width: 360px) {
.article-hero-title {
font-size: 1.4rem;
padding: 0 5px;
}
.article-main-content, .article-sidebar {
padding: 12px;
margin-top: 50px;
}
.article-container {
padding: 10px 5px;
}
}
@media (hover: none) and (pointer: coarse) {
.banner-cta {
min-height: 44px;
padding: 12px 20px;
}
.share-button {
min-width: 44px;
min-height: 44px;
}
.nav-link {
padding: 15px 20px;
font-size: 1.1rem;
}
}
.back-to-top {
position: fixed;
bottom: 200px;
right: 20px;
width: 60px;
height: 60px;
background: linear-gradient(135deg, #f4b942, #e6a635);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
font-size: 1.2rem;
box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
.back-to-top.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
background: linear-gradient(135deg, #e6a635, #d49429);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(244, 185, 66, 0.4);
}
.back-to-top:active {
transform: translateY(-1px);
box-shadow: 0 3px 10px rgba(244, 185, 66, 0.3);
}
@media (max-width: 768px) {
.back-to-top {
bottom: 99px;
right: 20px;
width: 45px;
height: 45px;
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.back-to-top {
bottom: 150px;
right: 15px;
width: 40px;
height: 40px;
font-size: 1rem;
}
}
.pagination-container {
margin: 40px 0;
display: flex;
justify-content: center;
align-items: center;
}
.pagination {
display: flex;
align-items: center;
gap: 10px;
background: white;
padding: 15px 20px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border: 1px solid #e5e5e5;
}
.pagination-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
color: #495057;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
.pagination-btn:hover:not(:disabled) {
background: #2d5a4a;
color: white;
border-color: #2d5a4a;
transform: translateY(-1px);
}
.pagination-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
background: #f8f9fa;
color: #6c757d;
}
.pagination-numbers {
display: flex;
gap: 5px;
margin: 0 15px;
}
.pagination-number {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #dee2e6;
background: white;
color: #495057;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.pagination-number:hover {
background: #2d5a4a;
color: white;
border-color: #2d5a4a;
transform: translateY(-1px);
}
.pagination-number.active {
background: #f4b942;
color: #2d5a4a;
border-color: #f4b942;
font-weight: 600;
}
@media (max-width: 768px) {
.pagination {
padding: 10px 15px;
gap: 8px;
}
.pagination-btn {
padding: 8px 12px;
font-size: 13px;
}
.pagination-btn span {
display: none;
}
.pagination-numbers {
margin: 0 10px;
gap: 3px;
}
.pagination-number {
width: 35px;
height: 35px;
font-size: 13px;
}
}
@media (max-width: 480px) {
.pagination {
padding: 8px 12px;
gap: 5px;
}
.pagination-btn {
padding: 6px 10px;
font-size: 12px;
}
.pagination-numbers {
margin: 0 8px;
}
.pagination-number {
width: 32px;
height: 32px;
font-size: 12px;
}
}
.bot-widget {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 10000;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.bot-toggle {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #2d5a4a 0%, #4a7c59 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
transition: all 0.3s ease;
color: white;
font-size: 24px;
}
.bot-toggle:hover {
transform: scale(1.1);
box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}
.bot-container {
position: absolute;
bottom: 80px;
right: 0;
width: 350px;
height: 500px;
background: white;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
display: none;
flex-direction: column;
overflow: hidden;
}
.bot-container.active {
display: flex;
}
.bot-header {
background: linear-gradient(135deg, #2d5a4a 0%, #4a7c59 100%);
color: white;
padding: 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
.bot-logo-container {
display: flex;
align-items: center;
gap: 10px;
}
.bot-logo-square {
width: 40px;
height: 40px;
background-color: white;
color: #2d5a4a;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
font-weight: bold;
font-size: 16px;
}
.bot-brand-name {
font-size: 14px;
font-weight: bold;
margin: 0;
letter-spacing: 1px;
}
.bot-brand-subtitle {
font-size: 10px;
margin: 0;
opacity: 0.8;
}
.bot-close {
background: none;
border: none;
color: white;
font-size: 18px;
cursor: pointer;
padding: 5px;
border-radius: 3px;
transition: background-color 0.3s;
}
.bot-close:hover {
background-color: rgba(255,255,255,0.1);
}
.bot-chat-window {
flex: 1;
background-color: #f5f5f5;
padding: 15px;
overflow-y: auto;
}
.bot-message {
margin-bottom: 15px;
display: flex;
align-items: flex-start;
gap: 8px;
}
.bot-avatar {
width: 30px;
height: 30px;
border-radius: 50%;
flex-shrink: 0;
}
.bot-message-content {
background-color: white;
padding: 10px 15px;
border-radius: 15px;
max-width: 80%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bot-message-content p {
margin: 0;
color: #333;
font-size: 14px;
line-height: 1.4;
}
.bot-user-message {
justify-content: flex-end;
}
.bot-user-message .bot-message-content {
background-color: #e3f2fd;
margin-left: auto;
}
.bot-options {
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 6px;
}
.bot-option-button {
background: linear-gradient(135deg, #2d5a4a 0%, #497e59 100%);
color: white;
border: none;
padding: 8px 15px;
border-radius: 20px;
cursor: pointer;
font-size: 12px;
font-weight: 500;
transition: all 0.3s ease;
text-align: center;
}
.bot-option-button:hover {
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(45, 80, 22, 0.3);
}
.bot-footer {
background-color: #333;
color: white;
padding: 10px 15px;
text-align: center;
}
.bot-footer-content {
font-size: 10px;
line-height: 1.4;
}
.bot-footer-content p {
margin: 2px 0;
}
.bot-phone {
font-weight: bold;
font-size: 12px;
}
.bot-address, .bot-oab {
color: #ccc;
font-size: 9px;
}
@media (max-width: 768px) {
.bot-widget {
bottom: 15px;
right: 15px;
}
.bot-container {
width: 300px;
height: 450px;
bottom: 70px;
}
.bot-toggle {
width: 50px;
height: 50px;
font-size: 20px;
}
}
.blog-post-page {
padding-top: 100px;
}
.hero-blog-post {
background: linear-gradient(135deg, #2d5a4a 0%, #3d6b5a 100%);
color: white;
padding: 40px 0;
text-align: center;
}
.blog-post-header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.blog-post-header .post-meta {
font-size: 0.9rem;
opacity: 0.8;
}
.blog-post-content {
padding: 40px 0;
background-color: #f8f9fa;
}
.blog-post-content .container {
max-width: 800px;
}
.blog-post-content .post-image {
width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.blog-post-content h2 {
font-size: 1.8rem;
color: #2d5a4a;
margin-top: 30px;
margin-bottom: 15px;
}
.blog-post-content p {
margin-bottom: 15px;
line-height: 1.7;
color: #555;
}
.blog-post-content ul {
list-style: disc;
margin-left: 20px;
margin-bottom: 15px;
color: #555;
}
.blog-post-content ul li {
margin-bottom: 8px;
}
@media (max-width: 768px) {
.blog-post-page {
padding-top: 80px;
}
.hero-blog-post {
padding: 30px 0;
}
.blog-post-header h1 {
font-size: 2rem;
}
.blog-post-content {
padding: 30px 0;
}
.blog-post-content .post-image {
margin-bottom: 20px;
}
.blog-post-content h2 {
font-size: 1.5rem;
margin-top: 25px;
margin-bottom: 10px;
}
.blog-post-content p {
margin-bottom: 10px;
}
}
@media (max-width: 480px) {
.blog-post-page {
padding-top: 70px;
}
.hero-blog-post {
padding: 20px 0;
}
.blog-post-header h1 {
font-size: 1.8rem;
}
.blog-post-content .post-image {
margin-bottom: 15px;
}
.blog-post-content h2 {
font-size: 1.3rem;
margin-top: 20px;
}
}
.blog-post-page .hero-blog-post .container {
padding-top: 20px;
padding-bottom: 20px;
}
.blog-post-page .blog-post-header {
margin-bottom: 30px;
}
.blog-post-page .blog-post-header h1 {
margin-bottom: 15px;
line-height: 1.3;
}
.blog-post-page .blog-post-content .post-image {
margin-top: 20px;
margin-bottom: 30px;
}
@media (max-width: 768px) {
.blog-post-page .hero-blog-post .container {
padding-top: 15px;
padding-bottom: 15px;
}
.blog-post-page .blog-post-header {
margin-bottom: 20px;
}
.blog-post-page .blog-post-header h1 {
font-size: 1.8rem;
margin-bottom: 10px;
}
.blog-post-page .blog-post-content .post-image {
margin-top: 15px;
margin-bottom: 20px;
}
}
@media (max-width: 480px) {
.blog-post-page .hero-blog-post .container {
padding-top: 10px;
padding-bottom: 10px;
}
.blog-post-page .blog-post-header {
margin-bottom: 15px;
}
.blog-post-page .blog-post-header h1 {
font-size: 1.5rem;
margin-bottom: 8px;
}
.blog-post-page .blog-post-content .post-image {
margin-top: 10px;
margin-bottom: 15px;
}
}
@media (max-width: 992px) {
.nav-toggle {
display: flex;
}
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background: rgba(45, 90, 74, 0.98);
backdrop-filter: blur(10px);
flex-direction: column;
justify-content: flex-start;
align-items: center;
transition: left 0.3s ease;
z-index: 999;
padding-top: 2rem;
}
.nav-menu.active {
left: 0;
}
.nav-list {
flex-direction: column;
gap: 2rem;
width: 100%;
text-align: center;
}
.nav-item {
margin: 0;
}
.nav-link {
font-size: 1.2rem;
padding: 1rem;
display: block;
width: 100%;
}
.nav-toggle.active .bar:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.active .bar:nth-child(2) {
opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}
.hero-title {
font-size: 3rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.hero-stats {
flex-wrap: wrap;
gap: 1.5rem;
}
.sobre-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.sobre-image {
order: -1;
}
.area-card {
padding: 2rem 1.5rem;
}
.areas-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.depoimento-card {
padding: 2rem;
}
.footer-content {
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
}
@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1rem;
}
.hero-buttons {
flex-direction: column;
gap: 0.8rem;
}
.hero-buttons .btn {
width: 80%;
margin: 0 auto;
}
.stat-number {
font-size: 2rem;
}
.section-title {
font-size: 2rem;
}
.section-subtitle {
font-size: 1rem;
}
.sobre-text h3 {
font-size: 1.8rem;
}
.areas-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-social {
justify-content: center;
}
.footer-section ul {
padding: 0;
}
.footer-section ul li {
display: inline-block;
margin: 0 5px;
}
.footer-contact p {
justify-content: center;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 0.9rem;
}
.hero-buttons .btn {
width: 90%;
}
.stat-number {
font-size: 1.8rem;
}
.section-title {
font-size: 1.8rem;
}
.section-subtitle {
font-size: 0.9rem;
}
.sobre-text h3 {
font-size: 1.5rem;
}
.area-card h3 {
font-size: 1.3rem;
}
.depoimento-card {
padding: 1.5rem;
}
}
.back-to-top {
position: fixed;
bottom: 200px;
right: 50px;
width: 50px;
height: 50px;
background: #f4b942;
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
z-index: 1000;
}
.back-to-top.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
background: #e6a635;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(244, 185, 66, 0.4);
}
@media (max-width: 768px) {
.back-to-top {
bottom: 130px;
right: 30px;
width: 45px;
height: 45px;
font-size: 18px;
}
}
@media (max-width: 768px) {
.container {
padding: 0 15px;
}
.hero-content {
margin-top: 100px;
padding: 0 20px;
}
.hero-title {
font-size: 2.2rem;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.1rem;
margin-bottom: 2rem;
}
.hero-buttons {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.hero-buttons .btn {
width: 280px;
max-width: 90%;
}
.hero-stats {
flex-wrap: wrap;
gap: 2rem;
margin-top: 2rem;
}
.stat-item {
flex: 1;
min-width: 120px;
}
.section-title {
font-size: 2rem;
margin-bottom: 0.8rem;
}
.section-subtitle {
font-size: 1rem;
margin-bottom: 2rem;
}
.sobre-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.sobre-image {
order: -1;
max-width: 300px;
margin: 0 auto;
}
.areas-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.area-card {
padding: 2rem 1.5rem;
}
.depoimento-card {
padding: 2rem 1.5rem;
}
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.footer-section ul {
padding: 0;
}
.footer-section ul li {
display: inline-block;
margin: 0 10px 5px 0;
}
.footer-contact p {
justify-content: center;
text-align: center;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 1.8rem;
}
.hero-subtitle {
font-size: 1rem;
}
.hero-buttons .btn {
width: 100%;
max-width: 280px;
}
.stat-number {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
.area-card h3 {
font-size: 1.3rem;
}
.depoimento-card {
padding: 1.5rem 1rem;
}
}
@media (max-width: 768px) {
.blog-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.blog-card {
margin: 0 10px;
}
.blog-card-title {
font-size: 1.2rem;
}
.hero-section {
padding: 4rem 0 3rem 0;
margin-top: 60px;
}
.hero-title {
font-size: 2.2rem;
}
.hero-subtitle {
font-size: 1.3rem;
}
}
@media (max-width: 480px) {
.blog-grid-container {
padding: 2rem 1rem;
}
.hero-section {
padding: 3rem 0 2rem 0;
margin-top: 60px;
}
.hero-title {
font-size: 1.8rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.blog-card-content {
padding: 1.2rem;
}
}

.three-column-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    flex: 1 1 300px; /* Permite que os cartões cresçam e encolham, com base de 300px */
    max-width: 350px; /* Limita a largura máxima para manter o layout */
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f4b942;
}

@media (max-width: 768px) {
    .three-column-layout {
        flex-direction: column;
        align-items: center;
    }
    .info-card {
        max-width: 90%;
    }
}


/* Estilos para a caixa do autor do blog */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-top: 30px;
    background-color: #f9f9f9;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2d5a4a;
}

.author-info p {
    margin: 0;
    line-height: 1.4;
}

.author-info strong {
    font-size: 1.1rem;
    color: #2d5a4a;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

.author-info em {
    font-style: normal;
    color: #666;
    display: block;
    font-size
}

/* Ajuste para telas menores */
@media (max-width: 600px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        margin-top: 10px;
    }
}

a {
    text-decoration: none !important;
}