:root {
  --color-primary: #eb0203;
  --color-primary-2: #7f1215;
  --color-secondary: #f0f0f0;
  --color-secondary-2: #e1e1e1;
  --color-secondary-3: #c1c1c1;
  --color-secondary-4: #6f6f6f;
  --color-secondary-5: #32312d;
  --font-primary: "Open Sans", arial, sans-serif;
  --border-radius: 6px;
  --gap: 20px;
  --font-size: 18px;
}

body,
h1,
h2,
h3,
hr,
p,
figure {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: normal;
}

h1,
h2,
h3,
p,
figcaption {
  line-height: 1.5;
}

h2,
h3,
p,
figcaption {
  font-size: var(--font-size);
}

img {
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
}

.aniversario_wrapper {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  /*gap: var(--gap);*/
}

.intro,
.apresenta {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  text-align: center;
}
.intro h2,
.intro p,
.apresenta h2,
.apresenta p {
  font-size: 18px;
}
.intro h2,
.apresenta h2 {
  font-weight: normal;
}

.offer {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding: 20px 0;
}
.offer:first-child {
  padding-top: 0;
}

.offers {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

h3 {
  padding: 10px 10px;
  font-weight:700;
}

.round-header {
  background-color: var(--color-primary);
  position: relative;
  color: white;
  padding: 25px 20px 0;
  margin: 20px 0;
}
.round-header h2 {
  font-weight: bold;
}
.round-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 100%;
  height: 25px;
  background-color: var(--color-primary);
  border-radius: 50% 50% 50% 50%/0% 0% 100% 100%;
}

.data-validade {
  font-size: 14px;
}

.cta-wrapper a.btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 12px 32px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
}

.receitas_wrapper {
  background-color: #FFF5DB;
  padding: var(--gap);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}
.receitas_wrapper .receitas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.receitas_wrapper .receitas .receita {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.receitas_wrapper .receitas .receita img {
  max-width:220px;
}

.cc p {
  font-size: 14px;
  color: #32312d;
  margin: 0;
  font-weight: bold;
}

hr {
  border: none;
  background-color: var(--color-primary);
  height: 1px;
  width: 100%;
}/*# sourceMappingURL=main.css.map */