* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    color: #ff6a00;
    font-size: 50px;
    line-height: 64px;
}

h2 {
    font-size: 46px;
    line-height: 64px;
    color: #a88914;
}

h4 {
    font-size: 30px;
    color: #7b3703;
}

h6 {
    font-weight: 700;
    font-size: 14px;
}

p {
    font-size: 26px;
    margin: 15px 0 20px 0;
    color: #1a1a1a;
}

.section-p1 {
    padding: 40px 80px;
}

body {
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.66);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logo {
    width: 90px;
    height: 20px;
}
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active {
    color: #d59500;
}
#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #fa3c08;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.container-form{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 50px;
    margin-top: 90px;
}

.container-form h2{
    margin-bottom: 15px;
    font-size: 35px;
}

.container-form p{
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.container-form a{
    font-size: 17px;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.container-form a i{
    color: #ff6a00;
    margin-right: 10px;
}

.container-form .campo, textarea{
    width: 100%;
    padding: 15px 10px;
    font-size: 15px;
    border: 1px solid #a88914;
    margin-bottom: 20px;
    border-radius: 3px;
    outline: 0px;
}

.container-form form textarea{
    max-width: 530px;
    min-width: 530px;
    min-height: 140px;
    max-height: 150px;
}

.container-form .btn-enviar{
    font-size: 16px;
    padding: 15px;
    color: #d59500;
    background-color: #fff;
    outline: 0px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

.container-form .btn-enviar:hover{
    background: #1a1a1a;
}

#btn-whats {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    font-size: 50px;
    color: #00ff00;
}