@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

:root {
    --bk: #595959;
    --gr: #A5A68F;
    --p1: #D9B2A9;
    --p2: #F2DBD5;
    --wh: #FFFFFF;
    --bg: #F2F2F2;
    --wa: #25D366;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 14pt;
    color: var(--bk);
    line-height: 125%;
    font-family: 'Lato';
    box-sizing: border-box;
}

a {
    color: var(--bk);
    text-decoration: none;
}

body {
    background: var(--bg);
}

html {
    scroll-behavior: smooth;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--wh);
    justify-content: space-between;
}

header i {
    margin: 0px 6px;
    color: var(--gr);
    font-size: 1.8rem;
}

.boxed {
    margin: auto;
    padding: 24px;
    max-width: 1024px;
}

.p1 {
    background-color: var(--p1);
}

.p1 p,
.p1 b {
    color: var(--wh);
}

.wh {
    background-color: var(--wh);
}

article {
    gap: 48px;
    display: flex;
    padding: 32px 48px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
}

article p {
    margin-bottom: 12px;
    text-align: justify;
    letter-spacing: -0.1px;
}

article p b {
    font-weight: bold;
    font-size: 1.1rem;
    font-style: normal;
    font-family: "Itim";
}

article .img {
    width: 480px;
    margin-top: 88px;
    border-radius: 8px;
    display: inline-block;
    background-color: var(--wh);
    border: 8px solid var(--wh);
    border-bottom: 48px solid var(--wh);
}

article img {
    width: auto;
    margin: auto;
    max-width: 100%;
    max-height: 240px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

article img:hover {
    transform: scale(1.2);
}

h1 {
    color: var(--p1);
    font-size: 2.2rem;
    margin-bottom: 32px;
    font-family: "Dancing Script";
}

iframe {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.address {
    font-size: 0.8rem;
}

.address b {
    width: 24px;
    display: inline-flex;
    justify-content: center;
}

.address i {
    color: var(--wh);
    font-size: 0.8rem;
}

input,
textarea {
    width: 100%;
    resize: none;
    color: var(--gr);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

input::placeholder,
textarea::placeholder {
    color: var(--gr);
    font-size: 0.9rem;
}

button {
    cursor: pointer;
    color: var(--wh);
    min-width: 128px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: var(--p1);
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    transform: scale(1.05);
}

#message {
    color: var(--wh);
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 16px;
}

@keyframes fade {
    0% {
        opacity: 0
    }

    25% {
        opacity: 1
    }

    75% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

footer {
    background: var(--wh);
}

footer p {
    color: var(--gr);
    font-size: 0.7rem;
}

footer a {
    color: var(--p1);
    font-size: 0.7rem;
}

.whatsapp {
    right: 0px;
    width: 42px;
    bottom: 58px;
    height: 42px;
    display: flex;
    position: fixed;
    align-items: center;
    background: var(--wh);
    justify-content: center;
    border-radius: 8px 0px 0px 8px;
    box-shadow: -1px 1px 2px var(--gr);
}

.whatsapp .fa-whatsapp {
    color: var(--gr);
    font-size: 1.5rem;
}

.goback {
    right: 0px;
    width: 42px;
    bottom: 8px;
    height: 42px;
    display: flex;
    position: fixed;
    align-items: center;
    background: var(--wh);
    justify-content: center;
    border-radius: 8px 0px 0px 8px;
    box-shadow: -1px 1px 2px var(--gr);
}

.goback .fa-angle-up {
    color: var(--gr);
    font-size: 1.5rem;
}

@media only screen and (max-width: 480px) {

    article {
        padding: 24px;
        flex-direction: column;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    article p {
        text-align: left;
    }

    article .img {
        width: 100%;
        margin-top: 0px;
    }

}