* {
    box-sizing: border-box;
    margin: 0;
}
html {
	scroll-behavior: smooth;
}
p,h1,h2,h3  {
    margin-bottom: 20px;
}
summary {
	margin-bottom: 30px;
    cursor: pointer;
}
summary::marker {
	color: #00bbe0;
}
details[open] {
	padding-bottom: 70px;
}
summary:hover h2 {
	color: #00bbe0;
}
h2 {
	font-size: 20px;
	display: initial;
	padding-left: 15px;
}
h4 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 16px;
}
input:focus{
    outline: none;
}
body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	font-size: 14px;
	color: #000;
    text-rendering: geometricPrecision;
    background-color: #fff;
}
header {
	width: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
header a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
	color: #fff;
}

header a:before {
    content: 'www.affix.com.br';
	display: block;
	width: auto;
	height: 20px;
	background: #00bbe0;
	text-align: right;
	padding: 3px 10px;
}

header img {
	max-width: 170px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}
footer {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 20px;
	border-top: solid 1px #ddd;
	padding-top: 15px;
}

img {
	max-width: fit-content;
}

footer span {
	font-size: 12px;
	color: #6c6c6c;
}

footer img {
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
}
.container-max-width {
	max-width: 960px;
	padding: 50px;
    margin-left: auto;
    margin-right: auto;
}
.v {
    text-align: center;
    margin-bottom: 50px;
}
.v strong {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
}
ol {
	list-style: lower-roman;
}

ol li::marker {
	font-weight: bold;
}
ol li, ul li {
	margin-bottom: 20px;
}
table td, table th {
	border: solid 1px #000;
	padding: 10px;
	text-align: center;
}

table {
	border-collapse: collapse;
	margin-top: 30px;
    margin-bottom: 30px;
}
summary {
	margin-bottom: 30px;
}
/* END DESKTOP */
/* Start Desktop Only */
@media (min-width:1024px) {

}
/* end Desktop Only */
/* START MOBILE */
@media (max-width:768px) {
    .container-max-width {
        padding: 20px;
    }
    
    h2 {
        font-size: 16px;
        padding-left: 5px;
    }
    
    p {
        font-size: 12px;
    }
    
    ol li, ul li {
        font-size: 12px;
    }
    
    h4 {
        font-size: 14px;
    }
    
    table td, table th {
        font-size: 12px;
    }
    
    details[open] {
        padding-bottom: 40px;
    }
}
/* END MOBILE */