/*
Theme Name: MPMED
Theme URI: 
Author: Lucas R. Leite
Version: 1
Author URI: 
Text Domain: Janaina

*/

:root {
	--marrom: #a66156;
	--laranja: #fe522e;
	--azul: #3566bf;
	--azul-escuro: #4f6792;
	--verde: #00FDC0;
	--cinza: #757575;
	--font: 'Montserrat', sans-serif;
	--font-secundaria: 'Neulis Cursive', sans-serif;
	--font-bold: 'Montserrat', sans-serif;
	--roxo: #7317f9;
}

/* 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: 14px;
	line-height: 1;
	font-weight: normal;
	background: #fff;
	overflow-x: hidden;
}

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 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	gap: 15px;
	padding: 15px 35px;
	border-radius: 40px;
	color: var(--verde);
	font-weight: bold;
	font-size: 16px;
	font-family: var(--font);
	background: var(--roxo);
	cursor: pointer;
	text-transform: uppercase;
	border: 0;
}

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