/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  background: linear-gradient(120deg, #f5efe6 0%, #f9f9f9 100%);
  color: #2d2d2d;
  min-height: 100vh;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  padding: 48px 0;
}

header {
  background: rgba(34,34,34,0.98);
  color: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 24px 0 18px 0;
  border-bottom: 4px solid #c9a063;
}

header h1 {
  float: left;
  margin-left: 5%;
  font-family: 'Montserrat', serif;
  font-size: 2.2em;
  letter-spacing: 2px;
  font-weight: 700;
}

nav {
  float: right;
  margin-right: 5%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 1px;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #c9a063;
  transition: width .3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: #c9a063;
}

.hero {
  background: linear-gradient(120deg, #c9a063 0%, #a7854e 100%);
  color: #fff;
  padding: 100px 0 80px 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(201,160,99,0.08);
}

.hero h2 {
  font-size: 2.8em;
  margin-bottom: 18px;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.25em;
  margin-bottom: 32px;
  color: #f8f5f0;
}

.btn {
  background: linear-gradient(90deg, #fff 60%, #f5efe6 100%);
  color: #a7854e;
  padding: 14px 36px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 18px;
  display: inline-block;
  font-size: 1.1em;
  box-shadow: 0 2px 12px rgba(201,160,99,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover {
  background: #a7854e;
  color: #fff;
  box-shadow: 0 4px 24px rgba(201,160,99,0.18);
}

.section {
  background-color: #fff;
  padding: 64px 0;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 18px rgba(201,160,99,0.04);
}

.section.dark {
  background: linear-gradient(120deg, #f5efe6 0%, #eee 100%);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
  justify-content: center;
}

.card {
  background: linear-gradient(120deg, #fff 80%, #f5efe6 100%);
  border: 1.5px solid #e7d7b9;
  flex: 1 1 260px;
  padding: 32px 24px;
  min-width: 260px;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(201,160,99,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
  text-align: center;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(201,160,99,0.13);
}
.card h4 {
  font-size: 1.3em;
  color: #a7854e;
  margin-bottom: 12px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
}
.card p {
  color: #444;
  font-size: 1.08em;
}

.benefits {
  list-style: none;
  padding-left: 0;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits li {
  margin-bottom: 18px;
  padding-left: 18px;
  border-left: 4px solid #a7854e;
  font-size: 1.13em;
  background: #fffbe9;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(201,160,99,0.04);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
  background: #fffbe9;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(201,160,99,0.08);
}

form label {
  font-weight: 600;
  color: #a7854e;
  margin-bottom: 4px;
  font-size: 1.08em;
}

input, textarea {
  padding: 12px;
  border: 1.5px solid #e7d7b9;
  border-radius: 8px;
  font-size: 1.08em;
  background: #fff;
  transition: border 0.2s;
  font-family: inherit;
}
input:focus, textarea:focus {
  border: 1.5px solid #c9a063;
  outline: none;
}

button {
  background: linear-gradient(90deg, #a7854e 80%, #c9a063 100%);
  color: #fff;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1em;
  box-shadow: 0 2px 12px rgba(201,160,99,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
button:hover {
  background: #c9a063;
  box-shadow: 0 4px 24px rgba(201,160,99,0.18);
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 36px 0 24px 0;
  font-size: 1em;
  border-top: 4px solid #c9a063;
  letter-spacing: 1px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards {
    gap: 18px;
  }
  .container {
    padding: 32px 0;
  }
}

@media (max-width: 768px) {
  nav {
    float: none;
    margin: 20px 0;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  header h1 {
    float: none;
    text-align: center;
    margin: 0 0 12px 0;
    font-size: 2em;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
  .section {
    padding: 36px 0;
    border-radius: 12px;
  }
  .hero {
    padding: 60px 0 40px 0;
    border-radius: 0 0 18px 18px;
  }
  form {
    padding: 18px 8px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98%;
    padding: 12px 0;
  }
  .hero h2 {
    font-size: 1.5em;
  }
  .card {
    padding: 18px 8px;
    min-width: unset;
    max-width: unset;
  }
  .section {
    margin-bottom: 18px;
  }
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
