*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', sans-serif;
	scroll-behavior: smooth;
}

body{
	line-height: 1.6;
	color: #333;
	background-color: #f9f9f9;
}

a{
	text-decoration: none;
	color: inherit;
}

header{
	background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
	color: white;
	padding: 1rem 2rem;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo{
	font-size: 1.8rem;
	font-weight: 700;
}

.logo span{
	color:  #ffcc00;
}

.nav-link{
	display: flex;
	list-style: none;
}

.nav-link li{
	margin-left: 2rem;
}

.nav-link a{
	transition: all 0.3s ease;
	font-weight: 500;
}

.nav-link a:hover{
	color: #ffcc00;
}

.hero{
	height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
	url('img/header.avif') no-repeat center center/cover;
	color: white;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 0 2rem;
}

.hero-content{
	max-width: 800px;
    margin: 0 auto;
}

.hero h1{
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.hero p{
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.btn{
	display: inline-block;
	background: #ffcc00;
	color: #333;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn:hover{
	background: #ffcc00;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.servicos{
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.servicos .section-title p{
	color: #333;
}

.section-title{
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2{
	font-size: 2.5rem;
	color: #6e48aa;
	margin-bottom: 1rem;
}

.section-title p{
	color: #333;
	max-width: 700px;
	margin: 0 auto;
}

.servicos-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servico-card{
	background: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover{
 	transform: translateY(-10px);
 	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.servico-icon{
	font-size: 3rem;
	color: #6e48aa;
	margin-bottom: 1.5rem;
}

.servico-card h3{
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.processo{
	background: #6e48aa;
	color: white;
	padding: 5rem 2rem;
	text-align: center;
}

.processo h2{
	color: white;
}

.section-title p{
	color: white;
}

.processo-steps{
	display: flex;
	justify-self: center;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 3rem auto 0;
	gap: 2rem;
}

.step{
	flex: 1;
	min-width: 200px;
	position: relative;
	padding: 2rem 1rem;
	background: rgba(255,255,255,0.1);
   	border-radius: 10px;
}

.step-number{
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: #ffcc00;
	color: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.portfolio{
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.portfolio .section-title p{
	color: #333;
}

.portfolio-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item{
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 250px;
}

.portfolio-item img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img{
	transform: scale(1.1);
}

.portfolio-overlay{
	position: absolute;
	top: 0;
	width: 100%;
    height: 100%;
    background: rgba(110, 72, 170, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.depoimentos{
	background: #f1f1f1;
	padding: 5rem 2rem;
	text-align: center;
}

.depoimentos .section-title p{
	color: #333;
}

.depoimentos-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.depoimentos-card{
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.client-avatar{
	width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #9d50bb;
}

.client-name{
	font-weight: bold;
    margin-top: 1rem;
    color: #6e48aa;
}

.client-company{
	font-weight: bold;
}

.cta{
	background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta h2{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
     
.cta p{
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}
        
.btn-light {
    background: white;
    color: #6e48aa;
}
        
.btn-light:hover {
    background: #f1f1f1;
}

footer{
   background: #222;
   color: #aaa;
   padding: 3rem 2rem 1rem;
   text-align: center;
}
        
.footer-content {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   text-align: left;
}
        
.footer-column h3 {
   color: white;
   margin-bottom: 1.5rem;
   font-size: 1.2rem;
}
        
.footer-column ul {
    list-style: none;
}
     
.footer-column ul li {
    margin-bottom: 0.8rem;
}
        
.footer-column ul li a:hover {
    color: #ffcc00;
}
        
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
        
.social-links a {
   	display: inline-block;
    width: 40px;
   	height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
        
.social-links a:hover {
    background: #ffcc00;
    color: #333;
 }
        
.copyright {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

/* Responsive : Adaptation mobile */
@media(max-width: 768px){
    .navbar{
        flex-direction: column;
        width: 100%;
    }
            
    .nav-link{
        margin-top: 1rem;
    }
            
    .nav-link li {
        margin: 0 0.5rem;
    }
            
    .hero h1 {
       	font-size: 2.5rem;
    }
            
    .processo-steps {
        flex-direction: column;
        align-items: center;
    }
            
    .step {
        width: 100%;
        max-width: 300px;
        }
    }

@media(max-width: 540px){
	.servicos h2, .processo h2, .portfolio h2, .cta h2{
		padding-top: 2.1rem;
	}
}
