/* Enhanced styles for divorcio page - Desktop optimization and mobile responsiveness */
/* Desktop optimization - Better content filling */
@media (min-width: 1200px) {
.container {
max-width: 1400px;
padding: 0 40px;
}
.guia-content {
max-width: 1200px !important;
padding: 60px 80px !important;
}
.section-header {
margin-bottom: 60px;
}
.section-title {
font-size: 3rem;
margin-bottom: 20px;
}
.section-subtitle {
font-size: 1.3rem;
max-width: 800px;
margin: 0 auto;
}
}
/* Enhanced content boxes with attractive styling */
.content-box {
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
border-radius: 15px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(212, 175, 55, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.content-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #d4af37, #f4d03f);
}
.content-box:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.content-box h3 {
	text-align: center;
color: #2c3e50;
font-size: 1.8rem;
margin-bottom: 20px;
font-weight: 600;

}
.content-box h4 {
color: #d4af37;
font-size: 1.4rem;
margin: 25px 0 15px;
font-weight: 600;
}
.content-box h5 {
color: #34495e;
font-size: 1.2rem;
margin: 20px 0 10px;
font-weight: 500;
}
.content-box p {
line-height: 1.8;
color: #555;
margin-bottom: 15px;
font-size: 1.1rem;
}
.content-box ul {
	list-style-type: none; /* Removido para evitar o ponto cinza */
margin: 15px 0 20px 25px;
color: #666;
}
.content-box li {
margin-bottom: 8px;
line-height: 1.7;
position: relative;
}
.content-box li::before {
	content: '\f00c'; /* Usando o Font Awesome check-solid icon */
	color: #d4af37;
	font-weight: bold;
	position: absolute;
	left: -20px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	background-color: transparent;
	border-radius: 0;
	}
/* Icon styling for content boxes */
.box-icon {
	display: flex;
	align-items: center;
	justify-content: center;
font-size: 2.5rem;
color: #d4af37;
margin-bottom: 20px;

}
/* Two-column layout for desktop */
.two-column-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin: 40px 0;
}
/* Three-column layout for features */
.three-column-layout {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin: 40px 0;
}
/* Enhanced info cards */
.info-card {
background: white;
border-radius: 12px;
padding: 35px;
text-align: center;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border-top: 4px solid #d4af37;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.info-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.info-card .card-icon {
font-size: 3.5rem;
color: #d4af37;
margin-bottom: 25px;
}
.info-card h4 {
color: #2c3e50;
font-size: 1.4rem;
margin-bottom: 15px;
font-weight: 600;
}
.info-card p {
color: #666;
line-height: 1.6;
flex-grow: 1;
}
/* Process steps enhancement */
.process-step {
background: white;
border-radius: 15px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.process-step::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #d4af37, #f4d03f);
}
.process-step:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.step-number {
background: linear-gradient(135deg, #d4af37, #f4d03f);
color: white;
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: bold;
margin: 0 auto 25px;
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
/* Highlight boxes */
.highlight-box {
background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
border: 2px solid #d4af37;
border-radius: 12px;
padding: 30px;
margin: 30px 0;
position: relative;
}
.highlight-box::before {
content: '💡';
position: absolute;
top: -15px;
left: 30px;
background: #d4af37;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;

font-size: 1.2rem;
}
.highlight-box h4 {
color: #856404;
margin-bottom: 15px;
font-weight: 600;
}
.highlight-box p {
color: #856404;
margin: 0;
font-weight: 500;
}
/* Warning boxes */
.warning-box {
background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
border: 2px solid #dc3545;
border-radius: 12px;
padding: 30px;
margin: 30px 0;
position: relative;
}
.warning-box::before {
content: '⚠️';
position: absolute;
top: -15px;
left: 30px;
background: #dc3545;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.warning-box h4 {
color: #721c24;
margin-bottom: 15px;
font-weight: 600;
}
.warning-box p {
color: #721c24;
margin: 0;
font-weight: 500;
}
/* Success boxes */
.success-box {
background: linear-gradient(135deg, #d1edff 0%, #a8dadc 100%);
border: 2px solid #28a745;
border-radius: 12px;
padding: 30px;
margin: 30px 0;
position: relative;
}
.success-box::before {
content: '✅';
position: absolute;
top: -15px;
left: 30px;
background: #28a745;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.success-box h4 {
color: #155724;
margin-bottom: 15px;
font-weight: 600;
}
.success-box p {
color: #155724;
margin: 0;
font-weight: 500;
}
/* Enhanced table styling */
.enhanced-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.enhanced-table th {
background: linear-gradient(135deg, #d4af37, #f4d03f);
color: white;
padding: 20px;
text-align: left;
font-weight: 600;
font-size: 1.1rem;
}
.enhanced-table td {
padding: 20px;
border-bottom: 1px solid #eee;
color: #555;
line-height: 1.6;
}
.enhanced-table tr:hover {
background: #f8f9fa;
}
.enhanced-table tr:last-child td {
border-bottom: none;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.container {
padding: 0 20px;
}
.guia-content {
padding: 30px 25px !important;
margin: 20px 10px !important;
}
.content-box {
	text-align: center;
padding: 25px 20px;
margin-bottom: 20px;
}
.content-box h3 {
	text-align: center;
font-size: 1.5rem;
}
.content-box h4 {
font-size: 1.3rem;
}
.content-box p {
font-size: 1rem;
}
.two-column-layout {
grid-template-columns: 1fr;
gap: 20px;
}
.three-column-layout {
grid-template-columns: 1fr;
gap: 20px;
}
.info-card {
padding: 25px 20px;
}
.info-card .card-icon {
font-size: 2.5rem;
}

.process-step {
padding: 30px 20px;
}
.step-number {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
.highlight-box,
.warning-box,
.success-box {
padding: 20px;
margin: 20px 0;
}
.enhanced-table {
font-size: 0.9rem;
}
.enhanced-table th,
.enhanced-table td {
padding: 15px 10px;
}
.section-title {
font-size: 2rem;
}
.section-subtitle {
font-size: 1.1rem;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.guia-content {
padding: 20px 15px !important;
margin: 15px 5px !important;
}
.content-box {
	text-align: center;
padding: 20px 15px;
}
.content-box h3 {
	text-align: center;
font-size: 1.3rem;
}
.info-card {
padding: 20px 15px;
margin-left: 20px;	
}

.btn .btn-primary{
	text-align: center;
}
.process-step {
padding: 25px 15px;
}
.highlight-box,
.warning-box,
.success-box {
padding: 15px;
}
.section-title {
font-size: 1.8rem;
}
.hero-title {
font-size: 2rem;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fadeInUp 0.6s ease-out;
}
html {
scroll-behavior: smooth;
}
.content-box:focus-within,
.info-card:focus-within,
.process-step:focus-within {
outline: 2px solid #d4af37;
outline-offset: 2px;
}
@media print {
.content-box,
.info-card,
.process-step {
break-inside: avoid;
box-shadow: none;
border: 1px solid #ddd;
}
.two-column-layout,
.three-column-layout {
grid-template-columns: 1fr;
}
}

/* Estilos para a Calculadora de Divórcio */
.formulario-section {
    padding: 80px 0;
    background: #f8f9fa; /* Cor de fundo suave para a seção */
}

.divorce-form {
    padding: 40px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.resultado-consulta {
    margin-top: 40px; /* Espaço extra para separar do formulário */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #2d5a4a;
    background: white;
}

