/*
Theme Name: Rafaela Hernandes
Theme URI: 
Author: Lucas R. Leite
Version: 1
Author URI: 
Text Domain: Rafaela Hernandes

*/

:root {
	--marrom: #a66156;
	--laranja: #fe522e;
	--verde: #0D873F;
	--azul: #0a3b60;
	--azul-hover: #4f6474;
	--amarelo: #ffc71b;
	--font: 'Red Hat Display', sans-serif;
}

/* Reset */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}


html {
	scroll-behavior: smooth;
	font-weight: 400;
	font-family: var(--font);
	overflow-x: hidden;
}

h1,h2, h3, h4, h5, h6 {
	font-family: var(--font);
}

body {
	font-family: var(--font), sans-serif;
	font-size: 18px;
	line-height: 1;
	font-weight: normal;
	background: #fff;
	overflow-x: hidden;
	color: var(--azul);
}

body img {
	max-width: 100%;
	height: initial;
}

strong {
	font-weight: bold;
}

a:hover,
a:focus {
	text-decoration: none;
}

h1 {
	font-size: 100px;
	font-weight: bold;
}

.container {
	max-width: 1300px;
	width: 1300px;
}

.cta__primary:not(li) {
	color: #fff;
	padding: 15px 50px;
	font-weight: 600;
	background: var(--verde);
	border: 0;
	transition: all .3s;
	display: flex;
	align-items: center;
	width: fit-content;
	gap: 15px;
	font-size: 18px;
	border-radius: 50px;
	font-family: var(--font);
	cursor: pointer;
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.cta__primary svg {
	width: 20px;
	height: 20px;
	fill: var(--verde);
}

.cta__primary:not(li):hover {
	background: var(--azul);
	color: #fff;
}


/* Title Home */
.title__home {
	position: relative;
	padding-top: 30px;
}

.title__home.center {
	display: flex;
	justify-content: center;
}

.title__home:before {
	content: '';
	width: 100px;
	height: 10px;
	background: var(--verde);
	border-radius: 40px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

.title__home:after {
	content: '';
	display: block;
	background: var(--azul);
	border-radius: 50%;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 110px;
	top: 0;
}

.title__home.center::before {
	left: 50%;
	transform: translateX(calc(-50% - 10px));
	top: auto;
	bottom: 0;
}

.title__home.center::after {
	left: 50%;
	transform: translateX(calc(-50% + 55px));
	top: auto;
	bottom: 0;
}
 
.title__home h2 {
	font-size: 60px;
	color: var(--azul);
	font-weight: bold;
	letter-spacing: -2px;
	margin-bottom: 30px;
	line-height: 1.1;
}

.title__home h3 {
	font-size: 24px;
	color: var(--verde);
	margin-bottom: 30px;
	line-height: 1.2;
}