body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: .2px;
    background-color: var(--color-bg);
    color: var(--color-surface-bg);
}

* {
    margin: 0;
    padding: 0;
}

/* NAVEGAÇÃO - NAV */

nav {
    position: sticky;
    top: 24px;
    z-index: 999;
}

.navbar {
    background-color: var(--color-primary);
    color: var(--color-surface-bg);
    padding: 16px 24px;
    border-radius: 16px;
    margin-top: 16px;
    box-shadow: 0 0 16px rgba(0,0,0, .24);
}

.navbar-toggler {
    color: var(--color-surface-bg);
    border: none;
    padding: 0;
}

.navbar-toggler span {
    font-size: 32px;
    padding: 12px;
}

.navbar .navbar-brand {
    color: var(--color-surface-bg);
}

.navbar-collapse .navbar-nav .nav-item .nav-link {
    font-weight: 300;
    color: var(--color-surface-bg);
    opacity: .72;
}

.navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    opacity: 1;
}

.section {
    position: relative;
    z-index: 1 !important;
}

.section-about {
    margin-top: 120px;
    margin-bottom: 120px;
}

.section-cases,
.section-contact {
    margin-top: 120px;
}

/* SECTION HERO - HERO BANNER */

.section-hero {
    margin: 32px 0;
}

.section-hero .card.card-lg {
    padding: 32px;
}

.content-container .card.card-lg {
    height: 640px;
}

.img-container {
    background-image: url(../img/img-hero.jpeg);
    background-position: center;
    border-radius: 24px;
    height: 640px;
}

/* SECTION ABOUT - SOBRE */

.img-container-about {
    background-image: url(../img/img-about.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    height: 640px;
}

.section-services {
    margin-top: 120px;
    margin-bottom: 120px;
}

.card .card-body img.svg {
    width: 42px;
}

/* SECTION CASES */

.section-cases {
    padding: 88px 0;
    background-color: var(--color-primary);
}

.img-case {
    border-radius: 16px;
    width: 100%;
}

/* testimonials - TESTEMUNHOS */

.section-testimonials {
    padding: 88px 0;
    background-color: var(--color-primary);
}

.img-cliente {
    border-radius: 8px;
    width: 100%;
}

.section-testimonials .card .bi-quote {
    font-size: 40px;
    color: #404740;
}

/* SECTION CONTACT */

.section-contact .card .card-body {
    padding: 40px;
}

/* CARD */


.card {
    background-color: var(--color-primary);
    border: solid 1px var(--color-primary);
    color: var(--color-surface-bg);
    padding: 12px;
    border-radius: 16px;
}

.card.card-bordered {
    border: solid 1px var(--color-primary-hover);
}

.card.card-dark {
    background-color: var(--color-bg);

}

.card span.material-symbols-outlined {
    font-size: 40px;
    margin-bottom: 24px;
}

.card-footer {
    border-top: solid 1px #292828;
}

/* BADGE */

.badge {
    font-weight: 400;
    font-size: 14px;
    background-color: var(--color-badge-bg);
    color: var(--color-badge);
    padding: 12px 16px;
    border-radius: 24px;
    display: inline-flex !important;
    align-items: center;
}

.badge span.material-symbols-outlined {
    font-size: 24px;
    margin-right: 6px;
}

/* FORMULÁRIO */

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
}

.form-group .form-control {
    height: 48px;
    font-size: 16px;
    font-weight: 300;
    background-color: #232C23;
    border: solid 1px #6B716B;
    color: #fff;
}

.form-group .form-control:focus {
    border: solid 1px var(--color-focus);
    box-shadow: none;
}

.form-group .form-control::placeholder {
    font-size: 14px;
    color: #fff;
    opacity: .32;
}

/* BUTTON - BTN */

.btn {
    padding: 8px 16px;
    font-size: 16px;
}

.btn-outline-primary {
    border-radius: 24px !important;
    background-color:var(--color-surface-bg);
    border: solid 1px var(--color-surface-bg);
    color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color:var(--color-secondary-hover);
    border: solid 1px var(--color-secondary-hover);
    color: var(--color-primary);
}

.btn-primary {
    border-radius: 24px;
    background-color:var(--color-secondary);
    border: solid 1px var(--color-secondary);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color:var(--color-secondary-hover);
    border: solid 1px var(--color-secondary-hover);
    color: var(--color-primary);
}

.btn-ghost {
    color: var(--color-surface-bg);
    font-weight: 300 !important;
    opacity: .72;
    padding: 0;
}

.btn-ghost:hover {
    color: var(--color-surface-bg);
    font-weight: 400;
    opacity: 1;
}

/* BACKGORUND ASSETS */

.bg-asset {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-asset::after,
.bg-asset::before {
    content: "";
    display: inline-flex;
    position: absolute;
    background-image: url(../img/bg/bg-outline.svg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .40;
}

.bg-asset.bottom-right::after {
    width: 100%;
    height: 100%;
    bottom: -30%;
    right: -30%;
}

.bg-asset.top-left::before {
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
}

.bg-asset.rotate-300::before {
    transform: rotate(300deg);
}

.bg-asset.rotate-75::before {
    transform: rotate(75deg);
}

/* DISPLAY - FONT */

.display-body {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
}

.display-body-sm {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
}

.display-ul {
    text-decoration: none;
    list-style: none;
    padding: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
}

.display-header {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

b, strong {
    font-weight: 500;
}

.text-focus {
    font-weight: 500;
    color: var(--color-focus);
}

.mh-100 {
    min-height: 100%;
}

.index-1 {
    z-index: 1;
}


/* DARK MODE */
:root {
    --color-primary: #1F281F;
    --color-primary-hover: #2A392A;
    --color-secondary: #F2C971;
    --color-secondary-hover: #c9a14a;
    --color-bg: #171B17;
    --color-surface-bg: #fff;
    --color-surface-button: #2A392A;
    --color-bg-100: #1E211E;
    --color-badge-bg: #2A392A;
    --color-badge: #ECF6EC;
    --color-focus: #7D9E7D;
    --bg-input: #232C23;
    --border-input: #6B716B;
    --border-default: #292828;
    --nav-shadow: rgba(0,0,0, .24);
}

/* LIGHT MODE */

/* :root {
    --color-primary: #ECF6EC;
    --color-primary-hover: #cde4cd;
    --color-secondary: #F2C971;
    --color-secondary-hover: #c9a14a;
    --color-bg: #fff;
    --color-surface-bg: #2A392A;
    --color-surface-button: #2A392A;
    --color-bg-100: #f1f1f1;
    --color-badge-bg: #f5fff5;
    --color-badge: #2A392A;
    --color-focus: #7D9E7D;
    --bg-input: #eefcee;
    --border-input: #d8e2d8;
    --border-default: #eee;
    --nav-shadow: rgba(0,0,0, .16);
} */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20b858;
}
