/* css/style.css */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f7fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .logo img {
  height: 50px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.main-nav a:hover {
  color: #e91e63;
}

/* Hero */
.hero {
  background: url('../images/banner-topo.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 220px 0;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  background: #e91e63;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #d81b60;
}

/* Serviços */
.services {
  padding: 80px 0;
  background: #fff;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card {
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 15px;
  color: #e91e63;
}
.card p {
  font-size: 0.95rem;
}

/* Sobre */
.about {
  padding: 80px 0;
}
.about h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}
.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Contato */
.contact {
  padding: 80px 0;
  background: #fff;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e91e63;
}

/* Footer */
.site-footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 20px 0;
}
.site-footer a {
  color: #e91e63;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}
