* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	line-height: 1.6;
	background-color: #f0f0f0;
	color: #333;
}

h2{
	font-size: 2.5em;
}

p{
	font-size: 1.2em;
}
a{
	text-decoration: none;
	color: #e90;
}
a:hover{
	color: #c70;
	transform: scale(1.1);
	transition: all .3s;
}
.container {
	width: 80%;
	max-width: 1400px;
	margin: auto;
	overflow: hidden;
}
.header>.container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* Estilo para destacar áreas editáveis */
		
@keyframes changeColor{
	0% { border-color: green; }
	50% { border-color: lightgreen; }
	100% { border-color: darkgreen; }
}
.editavel {
  border: 8px solid green;
  margin-bottom: 10px;
  animation: changeColor 3s infinite; /* Animação contínua */
}

.header {
	background: #333;
	color: #fff;
	padding: 20px 0;
}

.header .logo {
	/* texto h1 */
	/* float: left;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase; */

	width: 7rem;
}

.header .navbar {
	margin: 2rem;
	text-align: center;
}
.navbar ul{
	list-style: none;
	display: flex;
}

.navbar ul li{
	margin-left: 20px;
	position: relative;
	border-radius: 0.4em;
	padding: 0.4em;
	transition: 0.5s ease;
}

.header .navbar a {
	color: #fff;
	text-decoration: none;
	padding: 20px;
	transition: color 0.3s ease;
}
.navbar ul li:hover{
	background-color: #2d2d2d;
	
}
.navbar ul li a:hover,
.navbar ul li a:active{
	color: #aaa;
	transform: scale(1.2);
}

.menu-toggle{
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1000;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 4px 0;
	transition: all 0.3s ease;
}

.hero {
	background-image: url('../assets/bg-mr-ornellas.jpg');
	background-repeat: no-repeat;
	background-position: center 25%;
	background-size: cover;
	background-color: #aaa;
	background-attachment: fixed;
	height: 680px;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-shadow: black 2px 3px 6px;
	overflow: scroll;
}

.hero h2 {
	font-size: 48px;
	margin-bottom: 20px;
	line-height: 1.2em;
}

.hero p {
	margin-bottom: 40px;
	max-width: 600px;
	margin: 0 auto;
}

.about, .services, .contact {
	padding: 60px 0;
}

.iris-fade{
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 1.0) 80%);
	display: inherit;
}

.services h2, .contact h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 36px;
}

.perfil{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.perfil-foto{
	/* height:250px;
	width: 157px;
	min-width: 157px;
	background-position: 75px 0px;
	background-image: url(../assets/Ornellas\ BW.png); */
	min-width: 30%;
	background-image: url(../assets/retrato.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 2.5em;
	margin: 1em;
}
.perfil-foto.f2{
	background-position: -75px 0px;
}

.perfil .info {
	width: 65%;
	padding: 1em;
}

/* .perfil .info h2{
	text-align: left;
} */

.section--dark {
    background: linear-gradient(to bottom right, #000, #413738); /* Cor de fundo escura */
    color: #fff; /* Cor do texto clara */
}


.perfil>p{
	max-width: 600px;
	padding: 40px 10px;
	text-align: left;
}
.service-item {
	margin-bottom: 40px;
}

.service-item h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.service-item p {
	line-height: 1.8;
}

.service-item ul {
	list-style-type: none;
	padding-left: 0;
}

.service-item ul li {
	margin-bottom: 8px;
}

.contact p {
	line-height: 1.8;
}

.contact p strong {
	font-weight: bold;
}

.contact a{
	word-break: break-word;
}
.footer {
	background: #333;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	margin-top: 60px;
}

.footer p {
	margin: 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	justify-content: center; /* Centraliza as colunas horizontalmente */
	align-items: start; /* Alinha os itens ao topo */
}


.service-item {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

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

.service-icon {
	margin-bottom: 20px;
}

.service-icon img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
}

.service-description{
	/* padding: 1em; */
	width: 80%;
}

.garantia-icon{
	width: 100%;
	background-color: black;
	border-radius: 8px 8px 0 0;
}
.garantia-icon img {
	width: 100%;
	height: 230px;
	object-fit: contain;
	border-radius: 8px 8px 0 0;
}

.garantia .service-item{
	padding: 0;
}

.service-text{
	padding: 20px;
}


.service-item h3 {
	margin-bottom: 10px;
	font-size: 24px;
	color: #333;
}

.service-item p,
.service-item ul {
	line-height: 1.5;
	color: #555;
}

.service-item ul {
	list-style-type: disc;
	margin-left: 20px;
}

/* Advogados */
.advogados{
	background-color: #121212;
	color: #E0E0E0;
	padding: 40px 20px;
}
.section-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	color: #B0B0B0;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.highlight-text {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	color: #A0A0A0;
}
.subheading {
	font-size: 24px;
	font-weight: bold;
	margin-top: 30px;
	color: #D0D0D0;
	text-transform: uppercase;
	text-align: center;
}
.accordion {
	margin-top: 20px;
}
.accordion-item {
	border-bottom: 1px solid #555;
}
.accordion-button {
	background: none;
	border: none;
	color: #E0E0E0;
	font-size: 18px;
	width: 100%;
	text-align: left;
	padding: 15px;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.accordion-button:hover {
	background: rgba(255, 255, 255, 0.1);
}
.accordion-content {
	padding: 0 20px;
	font-size: 16px;
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s;
	display: none;
}
.icon {
	transition: transform 0.3s;
}
.accordion-item.active .icon {
	transform: rotate(90deg);
}
.accordion-item.active .accordion-content {
	display: block;
	padding: 10px 20px;
}
.cards-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}
.card {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	width: 100%;
	max-width: 250px;
}

.cta-box {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: 10px;
	margin-top: 30px;
	animation: fadeIn 1s ease-in-out;
}
.cta-text {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #D0D0D0;
}
.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}
.cta-button {
	background: #ffcc00;
	color: #121212;
	font-size: 16px;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s;
}
.cta-button:hover {
	background: #e6b800;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
/* FIM Advogados */
.whatsapp-call {
	text-decoration: none;
}
.whatsapp-call-button {
	background-color: #25d366;
	color: #FFF;
	border-radius: 100px;
	margin-top: 45px;
	padding: 5px;
	text-align: center;
	font-size: 25px;
	text-decoration-line: none;
	transition: background-color 0.3s ease;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.whatsapp-call-button:hover {
	background-color: #128c7e;
	transition: 400ms;
}

.whatsapp-call-button img {
	width: 30px;
	height: 30px;
	margin-top: 10px;
}
.whatsapp-call-button i{
	vertical-align: text-bottom;
}

/* Whatsapp Float buttom */

.whatsapp-float {
	position: fixed;
	width: 80px;
	height: 80px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
	z-index: 1000;
}

.whatsapp-float img {
	width: 40px;
	height: 40px;
	margin-top: 20px;
}

.whatsapp-float:hover {
	background-color: #128c7e;
	transform: scale(1.2);
	transition: 400ms;
}

/* Estilização da sessão de contato */
.contact {
	background: #fff;
	padding: 60px 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .contact .container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
  }
  
  .contact h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #333;
  }
  
  .contact p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
  }
  
  .contact-info a {
	text-decoration: none;
	color: #0066bb;
	position: relative;
	transition: all 0.3s ease;
  }
  
  /* Animação de hover para links */
  .contact-info a:hover {
	color: #00aaff;
	transform: scale(1.05);
  }
  
  /* Efeito ripple para feedback visual */
  .ripple {
	overflow: hidden;
  }
  
  .ripple::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, 0.4);
	width: 5px;
	height: 5px;
	border-radius: 100%;
	transform: scale(1);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.5s, opacity 1s;
  }
  
  .ripple:active::after {
	transform: scale(100);
	opacity: 0;
	transition: 0s;
  }
  
  

@media screen and (max-width: 950px) {
	/* MENU */
	.navbar{
		display: none;
		order: -1;
	}
	.navbar ul{
		flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #333;
        display: none;
	}

	.navbar ul li{
		margin: 10px 0;
        text-align: center;
	}
	.navbar.active {
		display: block;
	}
	.navbar.active ul{
		display: flex;
	}
	.menu-toggle{
		display: flex;
		position: absolute;
		right: 2em;
		top: 3em;
	}

	/* Animação de feedback: efeito ripple nos links */
    .ripple {
		position: relative;
		overflow: hidden;
	  }
	  .ripple::after {
		content: "";
		position: absolute;
		background: rgba(255, 255, 255, 0.4);
		width: 5px;
		height: 5px;
		border-radius: 100%;
		transform: scale(1);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.5s, opacity 1s;
	  }
	  .ripple:active::after {
		transform: scale(100);
		opacity: 0;
		transition: 0s;
	  }
	/* FIM MENU */

	.perfil .info {
		text-align: center;
		width: 100%;
	}
	.perfil-foto{
		width: 17em;
		height: 17em;
	}

	.garantia-icon img {
		object-fit: cover;
	}

	.hero{
		background-attachment: scroll;
	}

	.service-description{
		width: 100%;
	}

	.cards-container {
		flex-direction: column;
		align-items: center;
	}
	.cta-buttons {
		flex-direction: column;
		width: 100%;
	}
	.cta-button {
		width: 100%;
		text-align: center;
	}


	.contact {
		padding: 40px 10px;
	}
	
	.contact h2 {
		font-size: 28px;
	}
	
	.contact p, .contact-info p {
		font-size: 15px;
	}
}
