/*
Theme Name: Partido Liberal
Author: LURA
Version: 1.0.01
*/

/* 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}table{border-collapse:collapse;border-spacing:0}


/* Global vars */
:root {
    --azul: #2a3591;
    --vermelho: #2a2f66;
    --preto: #333333;
    --branco: #fff;
}

html {scroll-behavior: smooth;}

#site {overflow-x: hidden; min-height: 100vh;}

h1, h2, h3, h4, h5, h6 {font-family:'Roboto', sans-serif;}
body {font-family:'Roboto', sans-serif; color:var(--preto); font-size:14px; line-height:1; font-weight:normal; background: #f1f1f1;}
body img {max-width:100%; height:initial;}
strong {font-weight:bold;}
a:hover, a:focus {text-decoration:none;}
input, button {font-family:'Roboto', sans-serif;}


/* Geral */
.titleHome {
    font-size:24px;
    font-weight: bold;
    color:var(--preto);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px #dedede solid;
    position: relative;
}

.titleHome:after {
    content:'';
    width:115px;
    height:5px;
    background: #7078b9;
    display: block;
    position: absolute;
    left:0;
    bottom:0;
}

.titleHome > i {
    color:#7078b9;
    margin-right: 5px;
}

.subTitleHome {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 120%;
}

.btnDonate {
    background: #fff;
    color:var(--azul);
    font-weight: bold;
    font-size:14px;
    display: block;
    position: relative;
    padding: 25px 0;
    padding-left: 90px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0px 7px 10px #0000001f;
    margin-bottom: 40px;
}

.btnDonate:hover {
    color: var(--azul);
    box-shadow: 0px 7px 10px #0000002d;
}

.btnDonate .icone {
    position: absolute;
    left: 35px;
    top: 50%;
    font-size: 40px;
    transform: translateY(-50%);
}

.btnDonate strong {
    display: block;
    color:var(--vermelho);
    font-size:30px;
}

.btnDonate .seta {
    position: absolute;
    right:0;
    top:0;
    height:100%;
    width:70px;
    background: var(--azul);
    color:#fff;
    font-size:24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnDonate:hover .seta {
    background: var(--vermelho);
}