body {
	font-family: 'Montserrat', Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}

header {
    background: #fff;
    border-bottom: 4px solid #9b6b3e;
    padding: 0;
    height: 80px;
    font-family: 'Montserrat', Arial, sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

h1 {
    margin: 0;
}

.container {
	width: 80%;
	margin: auto;
	overflow: hidden;
}

footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.button {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	background: #e8491d;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
}

.button:hover {
	background: #333;
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1300px;
	margin: 0 auto;
	height: 80px;
	padding: 0 32px;
}

/* Menu mobile */
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; position: relative; }
.menu-toggle .bar { display: block; width: 28px; height: 3px; background: #9b6b3e; margin: 6px auto; transition: all 0.3s ease; border-radius: 2px; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav { transition: max-height 0.35s ease, opacity 0.25s ease; }
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 80px; left: 0; right: 0; background: #fff; overflow: hidden; max-height: 0; opacity: 0; box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
  .nav.open { max-height: 320px; opacity: 1; }
  .nav ul { flex-direction: column; padding: 16px; gap: 16px; }
}

/* Efeito zoom no logo */
.logo-area .logo {
	height: 48px;
	width: auto;
	display: block;
	transition: transform 0.45s cubic-bezier(.4,1.5,.6,1);
}

.logo-area .logo:hover {
	transform: scale(1.05);
}

.nav ul {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav a {
	text-decoration: none;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #9b6b3e;
	transition: color 0.2s, transform 0.35s cubic-bezier(.4,1.5,.6,1);
}

.nav a:nth-child(2) {
	color: #982d2d;
}

.nav a:hover {
	color: #982d2d;
	transform: scale(1.09);
}

/* Corrige o efeito zoom nos itens do menu */
.nav ul li a {
	text-decoration: none;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #9b6b3e;
	transition: color 0.2s, transform 0.35s cubic-bezier(.4,1.5,.6,1);
	display: inline-block;
}

.nav ul li:nth-child(2) a {
	color: #982d2d;
}

.nav ul li a:hover {
	color: #982d2d;
	transform: scale(1.09);
}

/* Estado ativo no menu */
.nav ul li a.active {
	color: #982d2d;
	position: relative;
}
.nav ul li a.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 100%;
	background: #982d2d;
	border-radius: 2px;
}

/* Utilitários e base */
html { scroll-behavior: smooth; }
.destaque { color: #9b6b3e; }
.btn {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
	background: #9b6b3e;
	color: #fff;
	box-shadow: 0 6px 16px rgba(155,107,62,0.35);
}
.btn-primary:hover { background: #8a5f34; }
.btn-outline {
	border: 2px solid #9b6b3e;
	color: #9b6b3e;
	background: transparent;
}
.btn-outline:hover { background: #9b6b3e; color: #fff; }
.titulo-secao {
	text-align: center;
	font-size: 32px;
	margin: 0 0 8px 0;
}

/* Hero (layout fornecido) */
.hero { position: relative; padding: 0; }
.main-container {
	min-height: 867px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	/* Fundo com imagem hero e gradiente de suporte */
	background-image: linear-gradient(135deg, rgba(218, 205, 189, 0.55), rgba(255, 255, 255, 0.35)), url('../assets/hero-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.content-overlay { position: relative; z-index: 1; width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.hero-section {
	text-align: center;
	background: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px 32px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin: 0 auto;
}
.hero-section h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 16px; line-height: 1.12; font-weight: 800; }
.hero-section .highlight-primary { color: #9A3030; display: block; }
.hero-section .highlight-dark { color: #353F40; display: block; }
.hero-section .description { font-size: clamp(1rem, 2.5vw, 1.2rem); color: #353F40; max-width: 700px; margin: 20px auto 40px; line-height: 1.6; opacity: 0.9; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: center; }
.btn { display: inline-block; padding: 15px 30px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; text-align: center; min-width: 200px; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; }
.btn:hover::before { left: 100%; }
.btn-primary, .btn-primary:link, .btn-primary:visited, .btn-primary:active, .btn-primary:focus { background: linear-gradient(135deg, #9A3030, #b83636); color: #FFFFFF !important; border: 2px solid #9A3030; box-shadow: 0 4px 15px rgba(154, 48, 48, 0.3); text-decoration: none; outline: none; }
.btn-primary:hover { background: linear-gradient(135deg, #9A6F42, #b8834a); border-color: #9A6F42; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(154, 111, 66, 0.4); color: #FFFFFF !important; }
.btn-secondary, .btn-secondary:link, .btn-secondary:visited, .btn-secondary:active, .btn-secondary:focus { background: rgba(255, 255, 255, 0.9); color: #353F40 !important; border: 2px solid #353F40; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); text-decoration: none; outline: none; }
.btn-secondary:hover { background: #353F40; color: #FFFFFF !important; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(53, 63, 64, 0.3); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-section { animation: fadeInUp 0.8s ease-out; }
.hero-section h1 { animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-section .description { animation: fadeInUp 0.8s ease-out 0.4s both; }
.hero-buttons { animation: fadeInUp 0.8s ease-out 0.6s both; }

/* Removidos estilos da seção 'excelencia' */

/* Excelência - novo layout */
.excellence-section { padding: 100px 20px; background: linear-gradient(135deg, #DACDBD 0%, #e6ddd0 100%); position: relative; overflow: hidden; scroll-margin-top: 80px; }
.excellence-section::before { content: ''; position: absolute; top: -30%; left: -20%; width: 50%; height: 160%; background: linear-gradient(45deg, transparent, rgba(154, 111, 66, 0.05)); transform: rotate(-15deg); z-index: 0; }
.excellence-container { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.excellence-content { flex: 1; max-width: 600px; }
.excellence-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: #9A3030; margin-bottom: 25px; font-weight: 800; line-height: 1.2; position: relative; }
.excellence-content h2::after { content: ''; position: absolute; bottom: -15px; left: 0; width: 80px; height: 4px; background: linear-gradient(90deg, #9A3030, #9A6F42); border-radius: 2px; }
.excellence-content .intro { font-size: clamp(1rem, 2vw, 1.2rem); color: #353F40; margin-bottom: 40px; line-height: 1.7; opacity: 0.9; }
.excellence-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature-item { display: flex; align-items: center; padding: 15px 20px; background: rgba(255, 255, 255, 0.8); border-radius: 12px; font-size: 1rem; color: #353F40; font-weight: 600; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(154, 48, 48, 0.1); backdrop-filter: blur(10px); position: relative; overflow: hidden; }
.feature-item::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(154, 48, 48, 0.05), transparent); transition: left 0.5s; }
.feature-item:hover::before { left: 100%; }
.feature-item:hover { transform: translateX(8px); background: rgba(255, 255, 255, 0.95); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-color: #9A3030; }
.feature-item i { color: #9A6F42; margin-right: 15px; font-size: 1.3rem; transition: all 0.3s ease; min-width: 20px; }
.feature-item:hover i { color: #9A3030; transform: scale(1.2); }
.excellence-image { flex: 1; max-width: 650px; position: relative; }
.image-wrapper { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); transition: all 0.4s ease; }
.image-wrapper:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.25); }
.excellence-image img { width: 100%; height: auto; display: block; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.image-wrapper:hover img { transform: scale(1.05); }
.image-wrapper::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(154, 48, 48, 0.1), transparent 50%); opacity: 0; transition: opacity 0.4s ease; }
.image-wrapper:hover::after { opacity: 1; }
.experience-badge { position: absolute; bottom: 25px; right: 25px; background: linear-gradient(135deg, #9A6F42, #b8834a); color: #FFFFFF; padding: 20px 25px; border-radius: 16px; text-align: center; font-weight: 700; box-shadow: 0 8px 25px rgba(154, 111, 66, 0.4); line-height: 1.2; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(10px); border: 2px solid rgba(255, 255, 255, 0.2); cursor: pointer; z-index: 10; }
.experience-badge:hover { transform: translateY(-12px) scale(1.1) rotate(-3deg); box-shadow: 0 20px 45px rgba(154, 48, 48, 0.6); background: linear-gradient(135deg, #9A3030, #b83636); border-color: rgba(255, 255, 255, 0.4); }
.experience-badge .years { font-size: 2rem; display: block; margin-bottom: 5px; font-weight: 800; transition: all 0.3s ease; }
.experience-badge:hover .years { font-size: 2.2rem; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
.experience-badge .text { font-size: 0.9rem; opacity: 0.95; transition: all 0.3s ease; }
.experience-badge:hover .text { opacity: 1; font-size: 0.95rem; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }

@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.excellence-content { animation: fadeInLeft 0.8s ease-out; }
.excellence-image { animation: fadeInRight 0.8s ease-out; }
.feature-item { animation: fadeInUp 0.6s ease-out; }
.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 992px) { .excellence-container { flex-direction: column; gap: 50px; text-align: center; } .excellence-content { max-width: 800px; } .excellence-content h2::after { left: 50%; transform: translateX(-50%); } .excellence-image { max-width: 100%; } }
@media (max-width: 768px) { .excellence-section { padding: 80px 15px; } .excellence-container { gap: 40px; } .excellence-features { grid-template-columns: 1fr; gap: 15px; } .feature-item { padding: 12px 15px; font-size: 0.95rem; } .experience-badge { bottom: 15px; right: 15px; padding: 15px 20px; } .experience-badge .years { font-size: 1.6rem; } .experience-badge:hover .years { font-size: 1.8rem; } }
@media (max-width: 480px) { .excellence-section { padding: 60px 10px; } .feature-item { padding: 10px 12px; font-size: 0.9rem; } .feature-item i { font-size: 1.1rem; margin-right: 12px; } .experience-badge { padding: 12px 16px; } .experience-badge .years { font-size: 1.4rem; } .experience-badge:hover .years { font-size: 1.6rem; } .experience-badge .text { font-size: 0.8rem; } }

/* Serviços */
/* Novo layout - Nossos Serviços */
.services-section { padding: 80px 20px; background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%); position: relative; overflow: hidden; scroll-margin-top: 80px; }
.services-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: linear-gradient(45deg, transparent, rgba(154, 48, 48, 0.03)); transform: rotate(15deg); z-index: 0; }
.services-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #9A3030; margin-bottom: 20px; font-weight: 800; position: relative; display: inline-block; }
.services-section h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: linear-gradient(90deg, #9A3030, #9A6F42); border-radius: 2px; }
.services-section .description { font-size: clamp(1rem, 2vw, 1.2rem); color: #353F40; max-width: 700px; margin: 0 auto; opacity: 0.9; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { background: #FFFFFF; border-radius: 16px; padding: 35px 25px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); text-align: left; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; border: 1px solid rgba(154, 48, 48, 0.1); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #9A3030, #9A6F42); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: #9A3030; }
.icon-wrapper { background: linear-gradient(135deg, #353F40, #4a5658); border-radius: 16px; width: 70px; height: 70px; display: flex; justify-content: center; align-items: center; margin-bottom: 25px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.icon-wrapper::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.6s; }
.service-card:hover .icon-wrapper { background: linear-gradient(135deg, #9A3030, #b83636); transform: rotateY(360deg); }
.service-card:hover .icon-wrapper::before { left: 100%; }
.icon { font-size: 1.8rem; color: #FFFFFF; transition: all 0.3s ease; z-index: 1; }
.service-card:hover .icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.4rem; color: #353F40; margin-bottom: 15px; font-weight: 700; line-height: 1.3; }
.service-card p { font-size: 0.95rem; color: #353F40; opacity: 0.85; line-height: 1.6; margin: 0; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.services-header { animation: fadeInUp 0.8s ease-out; }
.service-card { animation: fadeInUp 0.8s ease-out; }
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Contato - novo layout */

/* Orçamento */
.budget-section { padding: 80px 20px; background: #FFFFFF; }
.budget-wrapper { max-width: 900px; margin: 0 auto; }
.budget-card { background: #FFFFFF; border-radius: 16px; padding: 30px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); border: 1px solid rgba(154, 48, 48, 0.1); }
.budget-card h1 { font-size: 2rem; color: #9A3030; margin: 0 0 10px 0; }
.budget-card .description { color: #353F40; margin: 0 0 24px 0; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-weight: 600; color: #353F40; }
.form-group input, .form-group textarea { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; padding: 12px 14px; border-radius: 10px; border: 1px solid #d9d9d9; outline: none; transition: all .2s ease; }
.form-group input:focus, .form-group textarea:focus { border-color: #9A3030; box-shadow: 0 0 0 3px rgba(154,48,48,.1); }
.actions-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 10px; }
.btn-full { display: block; width: 100%; margin: 24px auto 0 auto; }
@media (max-width: 640px) { .actions-row { grid-template-columns: 1fr; } }

.contact-section { padding: 80px 20px; text-align: center; width: 100%; background-color: #FFFFFF; }
.contact-section h1 { font-size: 2.5em; color: #9A3030; margin-bottom: 15px; font-weight: 700; max-width: 1200px; margin-left: auto; margin-right: auto; }
.contact-section .description { font-size: 1.1em; color: #353F40; max-width: 700px; margin: 0 auto 50px auto; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-content: center; max-width: 1200px; margin: 0 auto 50px auto; }
.contact-card { background-color: #FFFFFF; border-radius: 10px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; }
.contact-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.contact-card .icon-wrapper { background-color: #353F40; border-radius: 50%; width: 70px; height: 70px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; transition: all 0.3s ease; }
.contact-card:hover .icon-wrapper { background-color: #9A3030; }
.contact-card .icon { font-size: 2.2em; color: #FFFFFF; transition: all 0.3s ease; }
.contact-card h2 { font-size: 1.4em; color: #353F40; margin: 0 0 10px 0; font-weight: 600; }
.contact-card p { font-size: 1em; color: #353F40; margin: 0; }
.contact-card .contact-info { font-size: 0.9em; margin-bottom: 5px; }
.btn-cta, .btn-cta:link, .btn-cta:visited, .btn-cta:active, .btn-cta:focus { padding: 15px 30px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1.1em; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; background: linear-gradient(135deg, #9A3030, #b83636); color: #FFFFFF !important; border: 2px solid #9A3030; display: inline-block; margin-top: 20px; cursor: pointer; min-width: 200px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(154, 48, 48, 0.3); outline: none; }
.btn-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; }
.btn-cta:hover::before { left: 100%; }
.btn-cta:hover { background: linear-gradient(135deg, #9A6F42, #b8834a); border-color: #9A6F42; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(154, 111, 66, 0.4); color: #FFFFFF !important; }
.btn-cta:focus { outline: 2px solid #9A3030; outline-offset: 2px; color: #FFFFFF !important; }
.budget-wrapper .btn-cta { display: block; width: 100%; box-sizing: border-box; min-width: 0; }
.contact-link { color: #353F40; text-decoration: none; transition: all 0.3s ease; }
.contact-link:hover, .contact-link:focus { color: #9A3030; text-decoration: underline; }
.address { font-style: normal; line-height: 1.5; }

/* Rodapé */
.footer { background: transparent; color: #353F40; }
.footer-top {
    padding: 28px 0;
    background: #DACDBD;
}
.footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-logo-area {
    flex: 1.6;
    max-width: 400px;
}
.footer-logo-area p {
    margin-top: 8px;
    color: #353F40;
}
.footer-flex { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-logo { width: 395px; height: 78px; display: block; margin-bottom: 12px; transition: transform 0.45s cubic-bezier(.4,1.5,.6,1); }
.footer-logo:hover { transform: scale(1.05); }
.footer-servicos, .footer-contato {
    flex: 1;
    margin-left: 20px;
}
.footer-servicos strong, .footer-contato strong {
    display: block;
    margin-bottom: 8px;
    color: #353F40;
}
.footer-servicos ul, .footer-contato ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #353F40;
}
.footer-servicos li, .footer-contato li {
    margin: 6px 0;
}
.footer-mid {
    background: #9A3030;
    padding: 14px 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
}
.footer-mid p {
    margin: 0;
}
.footer-mid a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Força a visibilidade do link do desenvolvedor no rodapé em hover (corrige caso páginas locais sobrescrevam) */
.footer-mid a:hover, .footer-mid a:focus {
	color: #FFFFFF !important;
	text-decoration: underline !important;
}
.footer-bottom {
    background: #202832;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #FFFFFF;
}
.footer-bottom .container { max-width: 1100px; margin: 0 auto; width: 100%; }
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}
.footer-link {
    color: #FFFFFF;
    text-decoration: none;
}
.footer-link:hover {
    text-decoration: underline;
}
.footer-bottom .footer-link { color: #FFFFFF !important; }

@media (max-width: 480px) {
  .footer-bottom {
    justify-content: center;
  }
  .footer-bottom-flex {
    gap: 8px;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
	.main-container { min-height: 867px; }
}
@media (max-width: 1024px) {
	.container { width: 88%; }
	.excelencia-flex { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.main-container { min-height: 720px; padding: 20px 0; }
	.hero-section { padding: 32px 18px; margin: 20px; border-radius: 15px; }
	.servicos-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.contato-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.footer-flex { grid-template-columns: 1fr; }
  .footer-bottom-flex { justify-content: center; }
}
@media (max-width: 520px) {
	.container { width: 92%; }
	.servicos-grid { grid-template-columns: 1fr; }
	.contato-cards { grid-template-columns: 1fr; }
  .footer-logo { width: 260px; height: auto; }
}

/* Páginas legais (privacidade e termos) */
.title-bar { width: 100%; background-color: #8B2627; padding: 25px 0; margin: 40px 0 24px 0; display: flex; justify-content: center; align-items: center; }
.title-bar h1 { color: #fff; font-weight: 700; font-size: 2.2rem; max-width: 960px; margin: 0; padding: 0 24px; font-family: 'Playfair Display', serif; text-align: center; }
.legal-content { background-color: #fff; max-width: 960px; margin: 0 auto 40px auto; padding: 40px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); color: #353F40; line-height: 1.6; }
.legal-content h2 { font-family: 'Playfair Display', serif; color: #9A3030; font-size: 1.6rem; margin-top: 30px; margin-bottom: 15px; border-bottom: 2px solid #9A6F42; padding-bottom: 5px; }
.legal-content p { text-align: justify; margin-bottom: 1em; }
.legal-content ul { list-style-type: disc; margin-left: 25px; margin-bottom: 1em; }
.legal-content .last-updated { text-align: center; font-size: 0.9em; color: #353F40; margin-bottom: 30px; }

/* Links globais padronizados como na home */
:root { --link: #353F40; --link-hover: #fff; }
a { color: var(--link); text-decoration: none; transition: color 0.2s ease; }
a:hover, a:focus { color: var(--link-hover); text-decoration: underline; }
