* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80vh;
    min-height: 400px;
    background-image: url("../assets/kld.png");
    background-size: cover;
    background-position: center;
}


img {
    width: 100%;
    position: relative;
}

form {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #666;
}

form input[type="submit"] {
    width: 100%;
    background-color: #FF500D;
    color: #fff;
    border-radius: 5px;
    border: 0px;
    font-size: 18px;
}

form input[type="text"]::placeholder {
    font-size: 15px;
    color: #666;
}

form input {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form input:first-of-type {
    margin-top: 10px;
}

.sec1{
    background: #FF500D;
    display: flex;
    justify-content: center;
}

.flex-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.content {
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    padding: 30px;
    width: 50%;
}

.content h1{
    line-height: 1;
    margin-bottom: 20px;
}

.serie {
    width: 50%;
    text-align: center;
}

.serie img{
    width: 300px;
}

footer {
    vertical-align: middle;
    background-color: #666;
    height: 60px;
    line-height: 40px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    padding: 10px;

}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whats {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    animation: slideIn 0.8s ease-out;
    transition: transform 0.3s ease; /* Transição suave para hover */
}

/* Efeito de aumento ao passar o mouse */
.whats:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 600px) {
    .flex-1 {
        height: 0vh;
        min-height: 400px;
    }

    .flex-2 {
    display: flex;
    align-items: center;
    flex-direction: column;
}
}
