:root {
  --bg: #f6f0e8;
  --bg-alt: #efe3d2;
  --ink: #1c1b19;
  --muted: #5a5046;
  --accent: #b33b2f;
  --accent-2: #0c6b60;
  --card: #fff8f0;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bodoni Moda", "Georgia", serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fff4e4 0%, var(--bg) 45%, var(--bg-alt) 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  background: rgba(246, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  font-family: "DM Serif Display", "Georgia", serif;
  font-size: 1.4rem;
  letter-spacing: 0.6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  font-size: 0.95rem;
}

nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 84px 0 64px;
  background: linear-gradient(135deg, rgba(179, 59, 47, 0.16), rgba(12, 107, 96, 0.1));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.section {
  padding: 64px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.section p,
.section li {
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  color: var(--muted);
  font-size: 1.03rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  background: rgba(179, 59, 47, 0.1);
  border-radius: 50%;
}

.banner {
  padding: 56px 0;
  background: linear-gradient(110deg, rgba(12, 107, 96, 0.12), rgba(179, 59, 47, 0.18));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.banner p {
  max-width: 780px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: start;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.list li {
  padding: 10px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.breadcrumb {
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--accent);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.link-grid a {
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  font-size: 0.98rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill-list a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  font-size: 0.95rem;
}

.cta-strip {
  background: var(--accent-2);
  color: #fff;
  padding: 32px 0;
}

.cta-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cta-strip p {
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  color: #f3f3f3;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  color: var(--muted);
}

@media (max-width: 720px) {
  nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
}


.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 999;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: "IBM Plex Sans Condensed", "Arial", sans-serif;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.floating-actions .call {
  background: #b33b2f;
}

.floating-actions .whatsapp {
  background: #1c9d5c;
}
