/* Importa as fontes */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Montserrat:wght@400;700&display=swap');

/* ----- VARIÁVEIS DE DESIGN (Baseado no seu Logo) ----- */
:root {
  --cor-fundo: #FFFFFF;       /* Fundo Branco (para este modelo) */
  --cor-destaque: #F39C12;    /* Seu Laranja (usei um tom similar) */
  --cor-texto: #222222;       /* Seu Cinza-Escuro (para leitura) */
  
  --fonte-titulo: 'Merriweather', serif;
  --fonte-texto: 'Montserrat', sans-serif;
}

/* ----- RESET BÁSICO ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; /* Para a rolagem da nav ser suave */
}

body {
  font-family: var(--fonte-texto);
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
}

/* Classe utilitária para centralizar conteúdo */
.container {
  max-width: 1100px;
  margin: 0 auto; /* Centraliza */
  padding: 80px 20px; /* Espaçamento interno (vertical, horizontal) */
  text-align: center;
}

/* Estilos de Título e Subtítulo Padrão */
h2 {
  font-family: var(--fonte-titulo);
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.subtitulo {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* ----- 0. NAVEGAÇÃO ----- */
.navbar {
  position: fixed; /* Fica presa no topo */
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* Branco semi-transparente */
  backdrop-filter: blur(10px); /* Efeito de vidro fosco */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-logo {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--cor-texto);
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: var(--cor-texto);
  font-weight: bold;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--cor-destaque);
}
.nav-cta { /* Botão de Contato */
  background-color: var(--cor-destaque);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
}
.nav-cta:hover {
  color: white;
  opacity: 0.9;
}

/* ----- 1. INÍCIO (HERO) ----- */
.hero {
  height: 100vh;
  /* Imagem de fundo do cliente (é bom ser escura ou usar filtro) */
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://placehold.co/1920x1080'); 
  background-size: cover;
  background-position: center;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero h1 {
  font-family: var(--fonte-titulo);
  font-size: 3.5rem;
}
.hero p {
  font-size: 1.5rem;
  font-family: var(--fonte-texto);
}

/* ----- 2. SOBRE ----- */
.sobre {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}
.sobre img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}
.sobre-texto p {
  line-height: 1.6; /* Espaçamento entre linhas */
}

/* ----- 3. PORTFÓLIO (GRID) ----- */
.portfolio {
  background-color: #f9f9f9; /* Fundo cinza claro para destacar */
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 15px;
}
.galeria-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}
.galeria-grid img:hover {
  transform: scale(1.03);
}

/* ----- 4. SERVIÇOS ----- */
.servicos ul {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
.servicos li {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.servicos .icone {
  color: var(--cor-destaque);
  font-weight: bold;
  margin-right: 10px;
}

/* ----- 5. CONTATO ----- */
.contato {
  background-color: #f9f9f9;
}
.contato form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contato .form-linha {
  display: flex;
  gap: 15px;
}
.contato input, .contato textarea {
  width: 100%;
  padding: 15px;
  font-family: var(--fonte-texto);
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contato .form-linha input {
  width: 50%;
}
.cta-button {
  background-color: var(--cor-destaque);
  color: var(--cor-texto);
  padding: 15px 30px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.cta-button:hover {
  opacity: 0.9;
}

/* ----- RODAPÉ ----- */
footer {
  padding: 30px;
  text-align: center;
  background-color: var(--cor-texto);
  color: var(--cor-fundo);
}
.creditos {
  font-size: 0.9rem;
}