@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	--primary: #16a814;
	--link: rgb(13, 150, 13);
	--bg: #ffffff;
	--page-margin: 12rem;
}
mark {
    background: yellow;
    color: #222;
}
.img {
    display: block;
    width: 100% !important;
    height: 70vh;
    /* max-width: 90vh; */
    max-height: 90vh;
    object-fit: cover !important;
}
.btn-braga{
   background-color: #13B510 !important;
   color: #fff;
}
/* html {
	font-size: 62.5%;
} */

/* body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg);
	margin: 0;
	min-height: 100vh;
	font-size: 1.9rem;
} */

.section {
	/* max-width: 920px; */
	margin: 0 auto;
	padding: 8rem var(--page-margin);
}

.section p {
	font-size: 1.9rem;
	font-weight: 300;
	line-height: 1.5;
}
.section strong{
	color: #000;
    line-height: 3em;
}

.hr {
	border: none;
	border-top: 1px solid #ccc;
	margin: 0;
}

.a , .a > *{
	color: var(--link) !important;
	text-decoration: none;
	font-weight: 500;
}

.a:hover {
	text-decoration: underline !important;
}

b {
	font-weight: 500;
}

.blurb-shifter {
	margin-top: -12rem;
	padding: 1.6rem;
	max-width: 1080px;
	margin-inline: auto;
}

.cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.headline {
	max-width: 460px;
	font-weight: 500;
	font-size: 2.4rem;
	color: #666;
	margin-bottom: 4.6rem;
	text-align: center;
}


.blurb {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    gap: 1rem;
    z-index: 10;
}

.blurb-box {
    padding: 2.6rem 1.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: var(--bg);
    text-align: center;
    z-index: 999;
    width: 100%;
}

.blurb-box img {
    width: 72px;
    height: 74px;
    margin-inline: auto;
}

.blurb-box span {
    display: block;
    margin-top: 1.6rem;
    font-size: 2.3rem;
    font-weight: 300;
}
.star{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 720px) {
    .blurb {
        grid-template-columns: 1fr 1fr 1fr;
    }
}