@import url('https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&family=Lexend:wght@100..900&display=swap');

:root {
    /* Cores */
    --primary-color: #4f1b24;
    --secondary-color: #eddfe2;
    --background-color: #fff;
    --text-color: #535b53;
    --black: #000;
    --white: #fff;

    /* Tipografia */
    --font-family: 'Lexend', sans-serif;
    --title-font-family: 'Castoro', serif;
    --font-size-base: 16px;
    --font-size-large: 20px;

    /* Containers */
    --container-max-width: 1200px;
    --container-large-max-width: 1630px;
    --desktop-container-padding: 20px;

}

body {

    letter-spacing: -.16px;
    line-height: 1.2em;
    font-family: var(--font-family);
    color: var(--primary-color);
    background-color: var(--background-color);
}

.df-button {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    letter-spacing: .5px;
    background-color: #fff0;
    border-radius: 8px;
    align-items: center;
    padding: 12px 22px;
    line-height: 1.3em;
    transition: all .4s;
    display: flex;
}

.df-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.df-white-button {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.df-white-button:hover {
    background-color: #fff0;
    color: var(--white);
}

.df-solid-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.df-solid-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.df-link-hover {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #00000000;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: text-decoration-color .3s ease-in-out;
}

.df-link-hover:hover {
    text-decoration-color: var(--primary-color);
}

.df-section,
.pd-section {
    width: 100%;
    min-width: 320px;
}

.pd-section {
    padding: 40px 0;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: var(--container-max-width);
    min-width: 320px;
    padding: var(--desktop-container-padding);
}

/* .container-large {
    margin: 0 auto;
    width: 100%;
    max-width: var(--container-large-max-width);
    min-width: 320px;
    padding: var(--desktop-container-padding);
} */

/* TEXTOS E FONTES 🟢 */

.white-text {
    color: var(--white);
}

h1 {
    color: var(--white);

    font-family: var(--title-font-family);
    font-size: 62px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -2px;
}

h2 {
    font-family: var(--title-font-family);
    font-size: 43px;
    font-weight: 400;
    line-height: 1.2em;

    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

h3 {
    font-family: var(--title-font-family);
    font-size: 33px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: capitalize;
}

h4 {
    font-family: var(--title-font-family);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2em;

    text-transform: capitalize;
}

h5 {
    font-family: var(--title-font-family);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2em;
}

h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
}

.par-small {
    letter-spacing: -.01em;
    font-size: 14px;
    line-height: 1.6em;
}

p {
    color: var(--text-color);

    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: -.16px;
}

.par-large {
    font-size: 20px;
    line-height: 1.5em;
}

a {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    text-transform: capitalize;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

.overline {
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

/* TEXTOS E FONTES 🟡*/

/* FOOTER DESKTOP 🟢 */
.footer {
    background-color: var(--primary-color);
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-menu .df-link-hover:hover {
    text-decoration-color: var(--white);
}

.footer-link a {
    color: var(--white);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 32px 0;

}

/* .footer-contact-item {} */

.footer-contact-overline {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 4px;
}

.footer-contact-link {
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
    cursor: pointer;

    text-transform: none;
}

.footer-corp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright,
.footer-privacy {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.footer-tcna {
    width: 75px;
}

.footer-tcna img {
    width: 100%;
    height: auto;
}
/* FOOTER DESKTOP 🟡*/

/* WHATSAPP ICON 🟢 */
.wpp-icon {
	width: 68px;
	height: 68px;
    position: fixed;
    bottom: 25px;
    right: 25px;
	background-color: #381319;
	border-radius: 50%;
	transition: .3s ease-in-out;
}

.wpp-icon img {
	width: 30px;
}

.wpp-icon:hover {
	scale: 1.06;
}
/* WHATSAPP ICON 🟡 */

@media screen and (max-width: 991px) {
    .container {
        max-width: 971px;
    }

    /* .df-button {
        padding: 18px 28px;
        font-size: 16px;
    } */

    .df-link-hover {
        font-size: 14px;
        text-underline-offset: 3px;
        text-decoration-thickness: 1.5px;
    }

    /* .container {
        max-width: 728px;
    } */

    /* FOOTER MOBILE 🟢 */
    .footer-menu {
        display: none;
    }

    .footer-contact-link {
        font-size: 16px
    }

    .footer-corp {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* FOOTER MOBILE 🟡*/
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 747px;
    }

    /* .df-button {
        padding: 16px 20px;
        font-size: 16px;
    } */

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

}

@media screen and (max-width: 479px) {
    .container {
        max-width: none;
    }

    /* .df-button {
        padding: 12px 16px;
        font-size: 14px;
    } */
}

@media screen and (min-width: 1440px) {
    h1 {
        font-size: 67px;
    }
}



/* @media (min-width: 768px) {}

@media screen and (min-width: 1440px) {} */