* {
    margin: 0;
    padding: 0;
    transition: 0.4s;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.main {
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    background-image: url(/assets/img/background.png);
    background-size: cover;
    background-position: center;
}

.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.azul {
    background-color: #159F9F;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px;
}

.rosa {
    background-color: #B81265;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px;
}

.logo {
    height: clamp(40px, 59px, 60px);
    width: auto;
    display: block;

}



.promo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: calc(100vh - 80px);
}

.principal {
    min-height: 70vh;
    width: 100%;
    max-width: 1200px;
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.c1 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

input {
    width: 100%;
    padding: 12px 10px 8px;
    font-size: clamp(14px, 2vw, 16px);
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    border-top: hidden;
    border-left: hidden;
    border-right: hidden;
    background: transparent;
}

label {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #777;
    font-size: clamp(14px, 2vw, 16px);
    pointer-events: none;
    transition: 0.2s ease all;
    background: white;
    padding: 0 4px;
}

input:focus+label,
input:not(:placeholder-shown)+label {
    top: -8px;
    left: 8px;
    font-size: clamp(10px, 1.5vw, 12px);
    color: #333;
}

.send {
    width: fit-content;
    border-radius: 15px;
    min-height: 40px;
    background-color: white;
    padding: 12px 30px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0px 0px 5px rgb(0, 0, 0), 0 0 25px rgb(0, 0, 0);
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.send:hover {
    box-shadow: 0 0 5px rgb(0, 0, 0),
        0 0 15px rgb(0, 0, 0),
        0 0 25px rgb(0, 0, 0),
        0 0 50px rgb(0, 0, 0),
        0 0 100px rgb(0, 0, 0);
    transform: translateY(-2px);
}

.c2 {

    gap: 20px;
    font-size: clamp(16px, 3vw, 30px);
    padding: 20px;
    justify-content: center;
    text-align: right;
}

.c2 p {
    margin: 0;
    line-height: 1.4;
}

.form-title {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 20px;
    text-align: left;
    vertical-align: top;
}

.contact-title {
    font-size: clamp(24px, 4vw, 40px);
    text-align: center;
    padding-bottom: 10%;
    text-align: right;
    vertical-align: top;
}




.l1 img,
.l2 img,
.l3 img {
    height: clamp(30px, 6vh, 50px);
    width: auto;
}

/* Rodape */
.rodape {
    width: 100%;
    min-height: 200px;
    background-color: #c5c5c5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rlogo {
    height: clamp(40px, 8vh, 60px);
    width: auto;
}

.r1 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.r2 {
    font-size: clamp(14px, 2.5vw, 20px);
    line-height: 1.4;
}

.r3 {
    font-size: clamp(14px, 2.5vw, 20px);
    color: aliceblue;
}

.r2 a {
    text-decoration: none;
    color: aliceblue;
    word-wrap: break-word;
}

.nome {
    font-size: clamp(16px, 2.5vw, 20px);
    color: aliceblue;
}

/* Media Queries para responsividade----------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .header {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 5px;
        padding: 0 15px;
    }

    header ul {
        gap: 15px;
        font-size: clamp(12px, 3vw, 16px);
    }

    .principal {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        padding: 15px;
    }

    .c1,
    .c2 {
        padding: 15px;
    }

    .l1,
    .l2,
    .l3 {
        justify-content: center;
        text-align: center;
    }

    .l1 p,
    .l2 p,
    .l3 p {
        margin: 0;
        text-align: center;
    }

    .form-title,
    .contact-title {
        text-align: center;
        margin-bottom: 15px;
    }

    .rodape {
        text-align: center;
        align-items: center;
    }

    .r1,
    .r2,
    .r3 {
        margin: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 10px;
    }

    .header>div:nth-child(2) {
        padding: 5px;
    }

    header ul {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .promo {
        padding: 10px;
    }

    .principal {
        padding: 10px;
        gap: 20px;
    }

    .c1,
    .c2 {
        padding: 10px;
    }

    .send {
        width: 100%;
        text-align: center;
    }

    .form-title,
    .contact-title {
        font-size: 20px;
    }

    .rodape {
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .header ul {
        font-size: 12px;
    }

    .c2 {
        font-size: 18px;
    }

    .rodape {
        font-size: 14px;
    }
}