/* Variables y paleta Jocaposso */
:root {
  --primary-pink: #e9a6b5;
  --primary-brown: #af8676;
  --accent-mocha: #f4eadf;
  --background: #fff8f5;
  --text-main: #191414;
  --heading: #532b2b;
  --button-pink: #ea4c89;
  --button-brown: #855e42;
  --white: #fff;
  --gray: #ccc;
  --input-bg: #fff;
  --input-border: #d3b8a2;
  --input-focus: #e9a6b5;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--background);
  color: var(--text-main);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 2em;
}

.section {
  background: var(--white);
  border-radius: 30px;
  padding: 2.2em 2em;
  margin-bottom: 3rem;
  box-shadow: 0 2px 30px rgba(175, 134, 118, 0.12);
}

h1, h2, h3, h4 {
  letter-spacing: 0.01em;
  color: var(--heading);
  margin-bottom: 1rem;
}

.button, .form-btn {
  background: var(--button-pink);
  color: var(--white);
  border: none;
  border-radius: 24px;
  padding: 0.75em 1.3em;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin: 0 0.7em 0 0;
}

.button-brown {
  background: var(--button-brown);
  color: var(--white);
}

.button:hover, .button-brown:hover, .form-btn:hover {
  background: var(--primary-brown);
  box-shadow: 0 8px 20px rgba(233,166,181,0.2);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 14px rgba(175, 134, 118, 0.1);
  padding: 1.4em;
  min-width: 260px;
  max-width: 310px;
}

.card img {
  border-radius: 12px;
  width: 100%;
  max-height: 135px;
  object-fit: cover;
  margin-bottom: 0.9em;
}

.card h3, .card h2 {
  color: var(--primary-brown);
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

.card p {
  color: var(--text-main);
  font-size: 0.95em;
  margin-bottom: 0.5em;
}

.card small {
  color: var(--gray);
  font-size: 0.85em;
}

.form-field {
  width: 100%;
  margin-bottom: 1.4em;
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 0.4rem;
  color: var(--heading);
  font-weight: 600;
  font-size: 1rem;
}

.form-field input,
.form-field textarea {
  padding: 1em 1.2em;
  font-size: 1rem;
  border-radius: 16px;
  border: 1.5px solid var(--input-border);
  background: var(--accent-mocha);
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(175,134,118,0.1);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 8px 20px rgba(233,166,181,0.3);
  background: var(--white);
}

.footer-form .form-field input,
.footer-form .form-field textarea {
  background: var(--white);
}

.form-btn {
  margin-top: 0.8rem;
  padding: 1rem 2.3rem;
  font-weight: 700;
  border-radius: 20px;
}

.site-footer {
  background: var(--accent-mocha);
  border-radius: 48px 48px 0 0;
  padding: 3em 1.5em;
  margin-top: 4rem;
  color: var(--heading);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.site-footer a {
  color: var(--primary-brown);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .container {
    width: 95%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 20px;
  }
  .card-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .form-field input,
  .form-field textarea {
    font-size: 0.95rem;
  }
  .site-footer {
    padding: 2rem 1rem;
  }
}
