:root {
    --black: #1f2125;
    --grey: #434448;
    /* --accent: #ffa235; */
    /* --accent: #ff5e4e; */
    /* --accent: #ff1700; */
    --accent: #ff3f2c;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.padding-container {
    max-width: 1500px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}
html {
    font-size: 12px;
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    font-family: "Poppins", sans-serif;
}

.nav-desktop-container {
    display: flex;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.language-change-container {
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}
.language-change-container span {
    font-size: 1rem;
    margin-right: 0.5rem;
}

#language-change {
    display: flex;
    align-items: center;
}
span.title-word-residence {
    display: none;
}

.language-span {
    display: none;
}

.bg-image-index {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(15%);
}

#residence-title {
    font-family: "Dancing Script", cursive;
    text-decoration: none;
    color: inherit;
    font-size: 2.25rem;
    font-weight: bold;
}
.nav-line {
    width: 100%;
    height: 2px;
}
.nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.1s;
    font-weight: 500;
    font-size: 1.3rem;
}
.nav-links a:hover {
    color: var(--accent);
}

.nav-links.desktop {
    display: none;
}

.nav-links.mobile {
    display: flex;
    flex-direction: column;
}
.nav-links {
    align-items: center;
    gap: 2.4rem;
    font-size: 16px;
}
.nav-container {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#burger-menu > span {
    font-size: 36px;
}
#burger-menu {
    display: flex;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
}
.call-btn-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
}
.call-btn {
    background-color: var(--black);
    box-shadow: var(--shadow-xl);
    padding: 1.2rem;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    color: var(--accent);
}

.installments-btn-container{
    display: flex;
    justify-content: center;
    font-size: 2rem;
}
.installments-btn{
    margin-top: 1rem;
}
.installments-btn a{
    font-size: 1.6rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.btn-accent {
    border: none;
    outline: none;
    padding: 0.3em 2em;
    border-radius: 25px;
    transition: 0.1s ease all;
    cursor: pointer;
}
.btn-accent a {
    color: inherit !important;
}
.btn-accent:hover {
    background: none;
}
.residence-span {
    display: none;
}
.contact-btn > a {
    text-decoration: none;
    color: inherit;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .contact-btn > a {
        font-size: 1.3rem;
        font-weight: 600;
    }
}

.side-menu-mobile {
    position: fixed;
    right: 0px;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 300px;
    transform: translate(300px, 0px);
    background: var(--black);
    color: white;
    transition: 0.3s ease transform;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.side-menu-mobile .contact-btn {
    background-color: var(--grey);
    color: var(--accent);
    border: 2px solid var(--grey);
}
.side-menu-mobile .contact-btn:hover {
    background: none;
}
.side-menu-mobile a {
    color: inherit;
}

.side-menu-mobile.active {
    transform: translate(0px, 0px);
}

.side-menu-mobile__close_icon {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}
@media screen and (min-width: 1250px) {
    html {
        font-size: 16px;
    }
    .nav-links.desktop {
        display: flex;
    }
    .nav-desktop-container {
        gap: 1rem;
    }
    #burger-menu {
        display: none;
    }
}

@media screen and (min-width: 900px) {
    html {
        font-size: 13px;
    }
    span.title-word-residence {
        display: inline;
    }
}

button {
    font-family: "Poppins", sans-serif;
}

footer {
    margin-top: 5rem;

    padding-top: 10px;
    padding-bottom: 10px;
}
.footer {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
    .contact-btn {
        padding: 5px 10px;
    }
}

@media screen and (min-width: 768px) {
    .call-btn-container {
        bottom: 5rem;
    }

    .footer {
        flex-direction: row;
    }
    .footer p {
        text-align: start;
    }

    .language-span {
        display: block;
    }
}

.contact-bottom-warning {
    /* max-width: 45rem; */

    margin: 0 auto;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 20%), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.contact-bottom-warning-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-bottom-warning p {
    margin-top: 1rem;
}

@media screen and (min-width: 900px) {
    .contact-bottom-warning {
        width: 50%;
    }
    .contact-bottom-warning-container {
        flex-direction: row;
    }
}
.designer-contact-link {
    color: inherit;
    text-decoration: none;
}
.designer-contact-container {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 20%), 0 2px 4px -2px rgb(0 0 0 / 10%);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
}
.separator {
    width: 100%;
    height: 2px;
}

@media screen and (min-width: 900px) {
    .designer-contact-container {
        flex-direction: row;
        align-items: normal;
    }

    .separator {
        width: 2px;
        height: auto;
    }
}
