/* limpar estilos */
*{
	box-sizing:border-box;
}
body {
	font-family: sans-serif;
	border:0px solid black;
	padding:0;
	margin:0;
}
.container {
	display:grid;
	grid-template-columns:repeat(12,1fr);
	grid-column:1/-1;
	padding:0px;	
/*	background-image: repeating-linear-gradient(         
		to right,         
		rgba(173, 216, 230, 0.4) 0,         
		rgba(173, 216, 230, 0.4) calc((100% - (20px * 11)) / 12),         
		transparent calc((100% - (20px * 11)) / 12),         
		transparent calc(((100% - (20px * 11)) / 12) + 20px)   
	);*/
	background-color: rgba(0, 128, 0, 0.1);
	border:1px solid black;
}

.hero-container {
	display:grid;
	grid-template-columns:repeat(12,1fr);
	grid-column:1/-1;
	padding:clamp(5px, 60px, 70px) 0 ;
	background-color:red;
	background-image:          
		linear-gradient(to right, rgba(0, 15, 30, 0.9), rgba(0, 15, 30, 0.6)),          
		url('imagem-fundo.jpg');           
	background-position: center right;     
	background-size: cover;     
	background-repeat: no-repeat;              
	background-color: #000F1E;
}

.hero {
	display:grid;
	grid-column:2/10;
	padding:20px;
	color:white;
}
.hero h1{
	font-size:clamp(1.5rem, 3vw, 3rem);
	margin-bottom:20px;
	line-height:1.2;
	font-weight:700;
	text-transform: uppercase;
}
.hero p{
	font-size:1.2rem;
	margin-bottom:35px;
	color:#e0e0e0;
	line-height:1.6;
	max-width: 600px;
}
.btn-primary {     
	background-color: #e67e22;
	color: #ffffff;     
	padding: 15px 30px;     
	text-decoration: none;     
	font-weight: bold;     
	border-radius: 4px;     
	text-transform: uppercase;     
	font-size: 0.9rem;     
	transition: background-color 0.3s; 
} 

.btn-primary:hover {     
	background-color: #d35400; 
}

.servicos-section {
	display:grid;
	grid-column: 4 / 9;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
	padding:20px;
}


.servicos-wrapper {
    display: grid;
    grid-column: 3 / 11;
    padding: 60px 0;
}

.servicos-intro {
    text-align: left;
    margin-bottom: 30px;
    grid-column:5 / 8;
}

.servicos-intro h2 {
	font-size:clamp(1.4rem, 2.2vw, 1.8rem); 
	margin-bottom:20px;
	line-height:1.2;
	font-weight:700;
	text-transform: uppercase;
	text-align:center;
	color: #0b131d;
}

.servicos-card p {
	font-size:1.2rem;
	color:black;
	line-height:1.6;
	color: #0b131d;
}
.servicos-intro p {
	font-size:1.2rem;
	color: #0b131d;
	line-height:1.6;
	text-align:justify;
}

.servicos-card{
	border-radius:12px;
	padding:20px;
	text-align: center;
	text-wrap:balance;
	background-color:white;
	color: #0b131d;
	max-width: 350px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.servicos-card .material-icons-outlined {
	font-size:5rem;
	display:block;
	color: #0b131d;
	margin-top:30px;
}

.footer-container{
	padding:20px;
	display:grid;
	grid-template-columns:repeat(12,1fr);
	grid-column:1/-1;
	background-color:#0b131d;
}
.footer-content {
	display:grid;
	grid-template-columns:repeat(12,1fr);
	grid-column:1/-1;
	color:white;
}
.footer-card:nth-child(1){
	grid-column: 3 /span 2;
}
.footer-card:nth-child(2){
	grid-column:5 / span 7;
}
.footer-card p {
	line-height:1.6;
	font-size:1.0rem;
	margin:0px;
}
.footer-card h3 {
	line-height:1.6;
	margin:0;
	}

@media (max-width: 768px){
	.servicos-intro p {
		text-align:left;
	}
	
	.hero, .servicos-wrapper, .footer-content {
		grid-column: 1 / -1; 
		padding: 0 35px;
    }
    
	.servicos-section {
		grid-template-columns:1fr;
		width:100%;
	}
	.servicos-card {
		max-width:100%;
		width:100%;
	}
	
	.footer-card:nth-child(1), 
   .footer-card:nth-child(2) {
	    grid-column: 1 / -1;
    }
}


.contacto-form {
    width: 100%;
    max-width: 600px;

    padding: 20px;


    display: grid;
    gap: 1px;
    margin: 0 auto; 
}

.form-group {
    display: grid;
    gap: 1px;
    width: 100%; 
}

.form-group input, 
.form-group textarea {
    width: 100%; 
    box-sizing: border-box; 
    padding: 1px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}
.btn-primary {     
    background-color: #e67e22;
    color: #ffffff;     
    padding: 15px 30px;     
    text-decoration: none;     
    font-weight: bold;     
    border-radius: 4px;     
    text-transform: uppercase;     
    font-size: 0.9rem;     
    border: none;             /* Garante que não tem contorno 3D */
    box-shadow: none;         /* Remove qualquer sombra */
    cursor: pointer;          /* Mantém o ponteiro do rato interativo */
    transition: background-color 0.3s; 
} 

.btn-primary:hover {     
    background-color: #d35400; 
    box-shadow: none;         /* Garante que também não ganha sombra ao passar o rato */
}
