/*RESET*/
:root {
    --especialFont: 'Poppins', sans-serif;
    --regularText: #222222;
    --grayText: #565656;
    --accentColor: #76c043;
    --linkColor: #747474;
    --linkWeight: 600;
    --boxShadow: 0px 0px 10px rgba(26, 170, 43, 0.65);
    --boxRadius: 40px;
}
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing:antialiased;
	text-rendering: optimizeLegibility;
    background-repeat: no-repeat;
}
html, body, header, main, footer, section, article, iframe, div, p, form, input, ul, li, h1, h2, h3, table, th, td {
	margin: 0px;
	padding: 0px;
}
object, iframe, table, img {
	outline: none;
	border: none;
}
body {
	font-family: var(--especialFont);
	font-size: 12px;
	color: var(--regularText);
}
table {
	border-collapse: collapse;
}
li {
	list-style: none;
}
a {
    text-decoration: none;
}
/*RESET*/

/*TEMPLATE*/
header {
	width: 100%;
	height: 60px;
	position: fixed;
	background-color: #fff;
	box-shadow: var(--boxShadow);
	z-index: 1000;
}
header .content {
    width: 100%;
	position: relative;
}
#logo {
	position: absolute;
	left: calc(50% - 75px);
}
#logo a {
	float: left;
}
#logo.rapiweb a {
	width: 160px;
	height: 60px;
	background: url(../img/logo.svg) no-repeat center center;
	background-size: 100px;
}
main {
    padding-top: 60px;
}
section .content {
    max-width: 1200px;
    padding: 50px 10%;
    padding-bottom: 100px;
    margin: auto;
}
section .content.center {
    text-align: center;
}
section h1 {
    font-size: 28px;
    margin-bottom: 30px;
}
section h3 {
    font-size: 20px;
    font-weight: 300;
}
section h3 span {
    color: var(--accentColor);
    font-weight: bold;
}
section p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
}
section p .especial {
    color: var(--accentColor);
}
section p .small {
    font-size: 12px;
}
section p a {
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}
footer {
    padding: 20px 0;
    box-shadow: var(--boxShadow);
}
footer .content {
    width: 90%;
    max-width: 950px;
    margin: auto;
    text-align: center;
}
footer p {
    color: var(--grayText);
    margin-bottom: 15px;
}
footer p.credit {
    margin-top: 20px;
    font-size: 10px;
    font-weight: bold;
    color: #a0a0a0;
}
footer p.credit img {
    margin-bottom: -5px;   
}
footer nav li a {
    display: inline-block;
    line-height: 30px;
    color: var(--linkColor);
    font-weight: var(--linkWeight);
    padding-left: 30px;
    background-position: left center;
}
footer nav li a.facebook {
    background-image: url(../img/facebook.svg);
    background-size: 12px;    
}
footer nav li a.instagram {
    background-image: url(../img/instagram.svg);
    background-size: 16px;
}
footer nav li a.whatsapp {
    background-image: url(../img/whatsapp.svg);
    background-size: 20px;
}
footer nav li a.telephone {
    background-image: url(../img/phone.svg);
    background-size: 18px;
}
footer nav li a.mail {
    background-image: url(../img/mail.svg);
    background-size: 17px;
}
/*TEMPLATE*/

#social li {
    display: inline-block;
}
#social li a {
    width: 30px;
    height: 30px;
    display: block;
    margin: 5px;
}
#social li a.facebook {
    background-image: url(../img/icon_facebook.svg);
    background-size: 30px;
}
#social li a.twitter {
    background-image: url(../img/icon_twitter.svg);
    background-size: 30px;    
}
#social li a.instagram {
    background-image: url(../img/icon_instagram.svg);
    background-size: 30px;    
}
#intro {
    background: var(--accentColor);
    padding: 10% 0;
}
#intro h2 {
    color: white;
    text-align: left;
    font-size: 5em;
    font-weight: 100;
    line-height: 1.1em;
    margin-bottom: 30px;
}
#intro p {
    color: white;
    font-size: 20px;
}
#intro p a {
    text-decoration: underline;
    color: white;
}
.buttons {
    margin-top: 40px;
}
.buttons li {
    margin: 5px;
    display: inline-block;
}
.buttons li a {
    display: block;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 16px;
    border-radius: var(--boxRadius);
    box-shadow: var(--boxShadow);
}
.buttons.white li a {
    background: white;
    color: var(--accentColor);
}
.buttons.green li a {
    background: var(--accentColor);
    color: white;
}
.buttons.white li a.store, .buttons.green li a.store {
    background-size: 25px;
    background-position: left 20px center;
    background-repeat: no-repeat;
    padding-left: 55px;
}
.buttons.white li a.store {
    background-image: url(../img/store-green.svg);
}
.buttons.green li a.store {
    background-image: url(../img/store-white.svg);
}
.list {
    margin: 30px 0;
}
.list li {
    vertical-align: top;
    max-width: 250px;
    background: white;
    padding: 40px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    border: 5px solid black;
    box-shadow: -5px 5px 0px var(--accentColor);
}
.list li span {
    display: block;
    font-size: 16px;
}