/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* 
Theme Name: Perfil CG Theme
Theme URI: https://perfilcg.com
Author: Perfil CG
Author URI: https://perfilcg.com
Description: Tema personalizado para o site da Perfil CG
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: perfilcg
*/

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    list-style-type: none;
    text-decoration: none;
    font-style: normal;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

a, a:visited {
    color: #000;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Layout e Grid */
.column, .row {
    display: flex;
}

.column {
    flex-direction: column;
}

.container, .content {
    width: 100%;
    margin: 0 auto;
}

.content {
    padding: 80px 0;
    max-width: 1920px;
}

/* Utilitários */
.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.regular {
    font-weight: 400;
}

.light {
    font-weight: 300;
}

.bigger {
    transform: scale(1.15);
}

/* Cores */
.black {
    color: #000;
}

.white {
    color: #fff;
}

.yellow {
    color: #f99d1c;
}

.yellow2 {
    color: #ffd400;
}

.yellow3 {
    color: #fdb913;
}

.orange {
    color: #df6234 !important;
}

.orange2 {
    color: #f37021;
}

.brown {
    color: #ac5840 !important;
}

.bg-black {
    background-color: #000;
}

.bg-orange {
    background-color: #d83b1f !important;
}

.bg-yellow {
    background-color: #f99d1c;
}

.bg-yellow2 {
    background-color: #ffd400;
}

.bg-yellow3 {
    background-color: #fdb913;
}

.bg-pink {
    background-color: #fdf8f4 !important;
}

/* Header */
.header-wrapper {
    display: flex;
    justify-content: center;
}

header {
    height: 0;
    position: fixed;
    z-index: 3;
    max-width: 1920px;
    width: 100%;
    overflow: hidden;
    transition: height 0.4s ease;
}

.header__container {
    background-color: #fff;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.header-transition {
    transition: height 0.6s ease;
    height: 90px;
}

.logo {
    margin-top: 5px;
    max-width: 17.4vh;
}

/* Menu */
.menu {
    gap: 42px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.menu h2 {
    font-size: 2.4vh;
    margin-bottom: 5px;
}

.menu__icon span {
    display: block;
    width: 4.5vh;
    height: 0.73vh;
    margin-bottom: 4px;
    background-color: #000;
}

.menu-logo {
    max-width: 140px;
    cursor: pointer;
}

.opened {
    transform: translateX(0);
}

.closed {
    transform: translateX(100%);
}

.closed, .opened {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: max(300px, 20%);
    right: 0;
    top: 0;
    z-index: 7;
    background-color: #fff;
    padding: 25px;
    opacity: 1;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 100vh;
    background-position: 50%;
    background-color: #000;
    position: relative;
    z-index: 1;
}

.hero-banner:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.empty-space{
    height: 100px;
}

/* Catálogo */
#catalog {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-cards {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
}

.catalog-card {
    flex-basis: calc(33.33% - 15px);
    margin-bottom: 60px;
    margin-right: 15px;
    position: relative;
}

/* Footer */
footer {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 1080px;
    font-size: 16px;
}
footer h3{
    font-size: 18px;
}
footer h4{
    font-size: 16px;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Responsividade */
@media (max-width: 2100px) {
    .content {
        width: 1400px;
    }
}

@media (max-width: 1500px) {
    .content {
        width: 1100px;
        padding: 60px 0 0;
    }
}

@media (max-width: 1200px) {
    .content {
        max-width: 880px;
    }
}

@media (max-width: 960px) {
    .content {
        max-width: 700px;
        padding: 40px 0 0;
    }
    
    #__next {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .content {
        max-width: 550px;
    }
    
    body::-webkit-scrollbar {
        width: 1px;
    }
}

@media (max-width: 600px) {
    .content {
        max-width: 400px;
    }
    
    .bigger {
        transform: scale(1);
    }
}

@media (max-width: 440px) {
    .content {
        max-width: 340px;
    }
}

@media (max-width: 380px) {
    .content {
        max-width: 280px;
    }
}
#about-us {
    background-color: #fdf8f4
}

.about-us__left {
    border-top: 3px solid #000;
    width: 49%;
    margin-right: auto
}

.larger-width {
    max-width: 110%;
    width: 110%
}

.about-us__right {
    padding-left: 60px;
    margin-top: 50px;
    width: 44%
}

.perfil {
    max-width: 500px
}

@media (max-width: 1450px) {
    .about-us__right {
        padding-left:20px
    }

    .about-us__right img {
        width: 120%
    }
}

@media (max-width: 1350px) {
    .about-us__right {
        padding-left:0
    }

    .perfil {
        max-width: 400px
    }
}

@media (max-width: 960px) {
    .about-us__left {
        border-top:3px solid #000;
        width: 100%
    }

    #about-us .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto
    }

    #about-us .container {
        margin-left: 0
    }

    .about-us__right {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding-left: 0
    }

    .about-us__right,.larger-width {
        max-width: 100%;
        width: 100%
    }

    .perfil {
        max-width: 500px;
        margin: 0 auto 40px
    }
}

@media (max-width: 600px) {
    .perfil {
        max-width:100%
    }
}

.header-wrapper {
    display: flex;
    justify-content: center
}

header {
    height: 0;
    position: fixed;
    z-index: 3;
    max-width: 1920px;
    width: 100%;
    overflow: hidden;
    transition: height .4s ease
}

.header__container {
    background-color: #fff;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px
}

.header-transition {
    transition: height .6s ease;
    height: 90px
}

.header__container h2 {
    padding-right: 35px;
    border-right: 1px solid #000;
    height: 30px
}

.logo {
    margin-top: 5px;
    max-width: 17.4vh
}

.menu {
    gap: 42px;
    cursor: pointer;
    position: relative;
    z-index: 1
}

.menu h2 {
    font-size: 2.4vh;
    margin-bottom: 5px
}

.menu__icon span {
    display: block;
    width: 4.5vh;
    height: .73vh;
    margin-bottom: 4px;
    background-color: #000
}

.menu-logo {
    max-width: 140px;
    cursor: pointer
}

.opened {
    transform: translateX(0)
}

.closed {
    transform: translateX(100%)
}

.closed,.opened {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: max(300px,20%);
    right: 0;
    top: 0;
    z-index: 7;
    background-color: #fff;
    padding: 25px;
    opacity: 1;
    transition: opacity .6s ease-in-out,transform .6s ease-in-out
}

.menu-container {
    max-height: 100%;
    overflow-y: auto
}

.menu-container::-webkit-scrollbar {
    display: none
}

.opacity {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 120vh;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.5)
}

.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px
}

.x {
    width: 17px;
    cursor: pointer
}

.nav-box {
    margin-bottom: 5px;
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 20px
}

.margin-top {
    margin-top: 50px
}

.nav-box,nav ul li {
    font-size: 26px;
    font-weight: 700
}

nav ul p {
    margin: 30px 0 5px;
    font-size: 20px
}

.nav-card {
    padding-bottom: 5px
}

.last-item {
    margin-top: 20px
}

.menu-social-media {
    display: flex;
    padding: 0;
    gap: 10px
}

.menu-social-media-items {
    width: 40px;
    height: 40px;
    background-color: #d83b1f;
    border-radius: 50%;
    display: flex;
    align-items: center!important;
    justify-content: center!important;
    line-height: 0;
    margin-bottom: 45px
}

.menu-social-media-items img {
    max-width: 80%;
    max-height: 80%;
    padding-left: 8px
}

.menu-follow {
    margin: 130px 0 20px;
    font-size: 18px
}

@media (max-width: 2100px) {
    header {
        max-width:1400px
    }
}

@media (max-width: 1500px) {
    header {
        width:1100px
    }
}

@media (max-width: 1200px) {
    header {
        max-width:880px
    }
}

@media (max-width: 960px) {
    header {
        max-width:100%
    }
}

@media (max-width: 680px) {
    .header__container {
        padding:0 20px
    }

    .header__container h2 {
        padding-right: 18px;
        height: 25px
    }

    .logo {
        max-width: 130px
    }

    .menu h2 {
        font-size: 18px
    }

    .menu__icon span {
        width: 20px;
        height: 3px
    }

    .menu__icon {
        margin-top: 5px
    }

    .menu {
        gap: 18px
    }

    .nav-box {
        margin-bottom: 5px;
        height: 65px;
        display: flex;
        align-items: center;
        padding-left: 20px
    }

    .nav-box,nav ul li {
        font-size: 20px;
        font-weight: 700
    }

    nav ul p {
        margin: 20px 0 5px;
        font-size: 14px
    }

    .margin-top {
        margin-top: 35px
    }
}

@media (max-width: 570px) {
    .menu-social-media-items {
        width:32px;
        height: 32px
    }

    .menu-social-media-items img {
        max-width: 85%;
        max-height: 85%;
        padding-left: 5px
    }

    .menu-follow {
        margin: 60px 0 20px;
        font-size: 18px
    }

    .header-transition {
        height: 60px
    }

    .opened {
        width: 100%;
        height: 100%
    }
}

@media (max-width: 430px) {
    .header__container h2 {
        padding-right:18px;
        height: 20px
    }

    .logo {
        max-width: 100px
    }

    .menu h2 {
        margin-top: 10px;
        font-size: 12px
    }

    .menu__icon span {
        width: 20px;
        height: 3px
    }

    .menu__icon {
        margin-top: 12px
    }

    .menu {
        gap: 18px
    }
}

.hero-banner {
    width: 100%;
    height: 100vh;
    background-position: 50%;
    background-color: #000;
    position: relative;
    z-index: 1
}

.hero-banner:before {
    bottom: -10px
}

.hero-banner2:before,.hero-banner:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50%;
    height: 100vh;
    background-color: rgba(0,0,0,.6);
    z-index: 1
}

.hero-banner2:before {
    bottom: 0
}

.solutions {
    color: #fff;
    max-width: 960px;
    position: absolute;
    z-index: 2;
    bottom: 50px;
    border-top: 3px solid #fff
}

.container-bg {
    background-size: cover;
    background-position: 50%
}

.img-bg {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    object-fit: fill
}

.solutions button {
    padding: 1.3em 3.5em;
    cursor: pointer;
    font-size: 16px;
    border: none;
    margin-bottom: 50px;
    margin-top: -20px
}

.slide-indicators {
    display: flex;
    justify-content: flex-start
}

.slide-indicator {
    width: 6px;
    height: 4px;
    background-color: gray;
    margin: 0 3px;
    cursor: pointer
}

.slide-indicator.active {
    width: 20px;
    background-color: #c94930
}

@media (max-width: 2100px) {
    .solutions {
        max-width:700px
    }
}

@media (max-width: 1500px) {
    .solutions {
        max-width:550px;
        bottom: 40px
    }

    .solutions button {
        padding: 1.3em 3.5em;
        font-size: 12px
    }
}

@media (max-width: 1200px) {
    .solutions {
        max-width:440px;
        bottom: 30px
    }
}

@media (max-width: 960px) {
    .hero-banner:before {
        bottom:-10px
    }

    .hero-banner2:before,.hero-banner:before {
        top: auto;
        left: 0;
        width: 100%;
        height: 380px;
        background: linear-gradient(180deg,transparent,#000);
        z-index: 1
    }

    .hero-banner2:before {
        bottom: 0
    }

    .solutions {
        max-width: 700px
    }

    .solutions button {
        margin: 20px 0;
        font-size: 10px
    }

    .container-bg {
        background-position: 74%
    }

    .img-bg {
        object-fit: cover;
        object-position: 75% center
    }
}

@media (max-width: 830px) {
    .container-bg {
        background-position:72%
    }
}

@media (max-width: 768px) {
    .solutions {
        max-width:550px
    }

    .container-bg {
        background-position: 47%
    }
}

@media (max-width: 600px) {
    .solutions {
        max-width:400px
    }

    .solutions button {
        margin-top: -50px!important
    }

    .hero-banner:before {
        height: 350px
    }

    .hero-banner2:before {
        height: 400px
    }
}

@media (max-width: 440px) {
    .solutions {
        max-width:340px;
        bottom: 20px
    }

    .hero-banner:before {
        height: 345px
    }
}

@media (max-width: 380px) {
    .solutions {
        max-width:280px
    }

    .hero-banner:before {
        height: 355px
    }
}

#catalog {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.catalog-cards {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto
}

.catalog-card {
    flex-basis: calc(33.33% - 15px);
    margin-bottom: 60px;
    margin-right: 15px;
    position: relative
}

.horizontal-img,.vertical-img {
    width: 100%
}

.border-left {
    border-left: 3px solid #000
}

.catalog-button {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background-color: #d83b1f;
    padding: 1.5em;
    cursor: pointer;
    font-size: 16px;
    border: none
}

.section-subtitle {
    font-size: 16px;
    margin: 10px 0 15px
}

.section-title {
    font-size: 68px;
    line-height: 1
}

.section-text {
    margin: 20px 0 60px;
    font-size: 18px;
    line-height: 1.3;
    max-width: 90%
}

.text-width {
    width: 60%
}

.padding-left {
    padding-left: 37px
}

.card-title {
    padding: 30px 0 20px 20px;
    font-size: 32px
}

.card-text {
    padding-left: 20px;
    max-width: 380px;
    font-size: 18px
}

.view-more {
    display: flex;
    justify-content: center;
    font-size: 18px;
    padding-bottom: 60px
}

.negative-margin {
    margin-top: -230px
}

.negative-bottom {
    margin-bottom: -110px
}

@media (max-width: 2100px) {
    .section-subtitle {
        font-size:14px
    }

    .section-title {
        font-size: 70px
    }

    .section-text {
        font-size: 24px
    }

    .text-width {
        width: 50%
    }

    .card-title {
        font-size: 30px
    }
}

@media (max-width: 1750px) {
    .card-title {
        font-size:26px
    }
}

@media (max-width: 1500px) {
    .text-width {
        width:60%
    }

    .section-subtitle {
        font-size: 14px;
        margin: 10px 0
    }

    .section-title {
        font-size: 62px
    }

    .section-text {
        font-size: 20px;
        margin: 20px 0 40px
    }

    .catalog-button {
        font-size: 14px
    }

    .view-more {
        font-size: 16px
    }

    .card-title {
        font-size: 22px
    }

    .negative-margin {
        margin-top: -150px
    }
}

@media (max-width: 1250px) {
    .card-title {
        padding:20px 0 10px 15px;
        font-size: 20px
    }
}

@media (max-width: 1200px) {
    .section-subtitle {
        font-size:12px;
        margin: 5px 0
    }

    .section-title {
        font-size: 54px
    }

    .section-text {
        font-size: 16px;
        margin: 15px 0 30px
    }

    .catalog-button {
        font-size: 12px
    }

    .card-text {
        padding-left: 15px;
        font-size: 16px
    }

    .view-more {
        font-size: 14px
    }

    .negative-margin {
        margin-top: -150px
    }
}

@media (max-width: 960px) {
    .text-width {
        width:70%
    }

    .card-title {
        padding: 25px 0 15px 15px;
        font-size: 28px
    }

    .card-text {
        padding-left: 15px;
        max-width: 100%;
        font-size: 18px;
        line-height: 1.2
    }

    .catalog-card {
        flex-basis: 100%
    }

    .negative-margin {
        margin-top: -250px
    }

    .catalog-button {
        font-size: 18px;
        padding: 1.5em 4em
    }

    .section-text {
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .text-width {
        width:89%
    }

    .card-title {
        padding: 20px 0 10px 10px;
        font-size: 26px
    }

    .card-text {
        padding-left: 10px
    }

    .catalog-button {
        font-size: 16px;
        padding: 1.5em 4em
    }
}

@media (max-width: 600px) {
    .section-subtitle {
        font-size:12px;
        margin: 5px 0
    }

    .section-title {
        font-size: 40px
    }

    .section-text {
        font-size: 14px;
        margin: 15px 0 20px
    }

    .text-width {
        width: 100%
    }

    .card-title {
        padding: 15px 0 5px 10px;
        font-size: 22px
    }

    .card-text {
        font-size: 14px
    }

    .negative-margin {
        margin-top: -230px
    }

    .catalog-button {
        font-size: 12px
    }
}

@media (max-width: 440px) {
    .section-title {
        font-size:36px
    }

    .view-more {
        font-size: 12px;
        padding-bottom: 40px
    }

    .catalog-button {
        font-size: 10px
    }
}

@media (max-width: 380px) {
    .section-title {
        font-size:28px
    }

    .catalog-button {
        font-size: 8px
    }
}


footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 1
}

address {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    background-color: rgba(245,130,32,.9);
    z-index: 2;
    max-width: 1920px;
    height: 350px;
    padding: 60px 40px 40px 160px!important;
    left: 50%;
    top: 51.5%;
    transform: translateX(-50%)
}

.rights,address {
    position: absolute;
    color: #fff
}

.rights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    bottom: 10%;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 3
}

.rights a {
    color: #fff!important
}

.rights2 {
    display: none
}

.rights2 a {
    color: #fff!important
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.social-icons li a {
    display: block;
    width: 38px;
    height: 38px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center
}

.social-icons img {
    width: 32px;
    height: 32px
}

.social-icons .radius {
    border-radius: 50%
}

.social-icons .small {
    width: 24px;
    height: 24px
}

.social-icons .small2 {
    width: 26px;
    height: 26px
}

.contato {
    border-left: 3px solid #fff;
    height: 90px;
    padding-left: 20px;
    font-size: 22px;
    margin-bottom: 40px;
    margin-left: 15px
}

.contato h4 {
    font-weight: 700
}

.right {
    margin-left: -10px
}

.right .wpp-icon {
    width: 28px;
    margin-bottom: -3px
}

@media (max-width: 1500px) {
    .right .wpp-icon {
        width:22px;
        margin-bottom: -5px
    }
}

@media (max-width: 1200px) {
    .right .wpp-icon {
        width:20px
    }
}

@media (max-width: 600px) {
    .right .wpp-icon {
        width:22px
    }
}

@media (max-width: 390px) {
    .right .wpp-icon {
        width:20px
    }
}

.work-with-us {
    margin: 25px auto auto 60px;
    font-size: 16px
}

.work-with-us p {
    font-size: 14px
}

.fale-conosco {
    margin-left: 60px
}

@media (max-width: 2100px) {
    address {
        height:350px;
        padding: 60px 40px 40px 20px!important
    }
}

@media (max-width: 1500px) {
    .contato {
        font-size:16px
    }

    .work-with-us {
        margin-top: 25px;
        font-size: 14px
    }

    address {
        height: 350px;
        padding: 60px 0 40px!important
    }
}

@media (max-width: 1200px) {
    address {
        height:280px
    }

    .contato {
        font-size: 12px;
        margin-left: 5px;
        height: 60px
    }

    .work-with-us {
        margin-top: 15px;
        font-size: 12px
    }

    .work-with-us p {
        font-size: 10px
    }

    .rights {
        bottom: 180px;
        font-size: 16px
    }

    .social-icons {
        margin-top: 10px
    }

    .social-icons li a {
        width: 32px;
        height: 32px
    }

    .social-icons img {
        width: 24px;
        height: 24px
    }

    .social-icons .small {
        width: 20px;
        height: 20px
    }

    .social-icons .small2 {
        width: 22px;
        height: 22px
    }
}

@media (max-width: 960px) {
    .contato {
        height:70px
    }

    .rights {
        bottom: 220px;
        font-size: 14px
    }

    .fale-conosco,.work-with-us {
        margin-left: 20px;
        font-size: 12px
    }

    address {
        height: 240px;
        padding: 30px 0 40px!important
    }
}

@media (max-width: 768px) {
    .rights {
        font-size:12px
    }

    .fale-conosco {
        font-size: 10px
    }

    .social-icons li a {
        width: 28px;
        height: 28px
    }

    .social-icons img {
        width: 20px;
        height: 20px
    }

    .social-icons .small {
        width: 16px;
        height: 16px
    }

    .social-icons .small2 {
        width: 18px;
        height: 18px
    }

    .social-icons {
        gap: 5px
    }
}

@media (max-width: 600px) {
    footer {
        background-position:right 33% top
    }

    address {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: 700px;
        width: 300px;
        margin: 0 auto;
        padding: 30px 20px 40px!important;
        top: 45%
    }

    .fale-conosco h3 {
        font-size: 16px
    }

    .work-with-us {
        order: 2;
        font-size: 14px
    }

    .work-with-us h4 {
        margin-top: -30px
    }

    .work-with-us p {
        font-size: 12px
    }

    .fale-conosco {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        margin-left: 0
    }

    .contato {
        font-size: 16px;
        height: 70px;
        margin-left: 0;
        padding-left: 10px;
        border-left: 2px solid #fff
    }

    .footer-bg {
        width: 100%;
        background-color: #000;
        height: 150px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px)
    }

    .footer-bg-transition {
        position: absolute;
        bottom: -3px;
        width: 100%;
        height: 80px;
        background: linear-gradient(180deg,rgba(0,0,0,.1),#000)
    }

    .rights {
        display: none
    }

    .rights2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        order: 5;
        font-size: 10px;
        margin-top: 10px
    }

    .rights2 a {
        font-size: 12px
    }

    .work-with-us {
        margin: 25px auto auto 0;
        font-size: 1.52vh
    }
}

@media (max-width: 390px) {
    .contato {
        font-size:12px;
        height: 50px
    }

    .fale-conosco h3 {
        font-size: 14px
    }

    address {
        top: 43%;
        height: 610px
    }

    .rights2 {
        max-width: 200px
    }

    .footer-bg {
        height: 60px
    }

    footer {
        background-position: top;
        width: 100%;
        height: 1000px
    }
}

#paint {
    background-color: #e06335;
    position: relative
}

.paint-container {
    margin: 0 auto -80px!important;
    padding: 80px 0 0;
    display: flex;
    flex-direction: column
}

.paint-link {
    margin-bottom: 80px;
    margin-top: -40px;
    font-size: 18px;
    color: #fce94f!important
}

.epson {
    max-width: 100%;
    width: 100%
}

@media (max-width: 1500px) {
    .paint-container {
        margin:0 auto
    }

    .paint-link {
        margin-bottom: 60px;
        margin-top: -20px;
        font-size: 16px
    }
}

@media (max-width: 1200px) {
    .paint-link {
        font-size:14px
    }
}

@media (max-width: 600px) {
    .paint-link {
        margin-bottom:40px;
        margin-top: 0;
        font-size: 12px
    }
}

.whatsapp {
    border-radius: 20%;
    max-width: 50px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 3
}

@media (max-width: 450px) {
    .whatsapp {
        right:20px
    }
}

.privacy-policy-container .privacy-policy-content {
    max-width: 1440px;
    width: 100%;
    padding: 180px 20px 100px;
    margin: 0 auto
}

.privacy-policy-container .privacy-policy-content h1 {
    margin-bottom: 20px
}

.privacy-policy-container .privacy-policy-content h2 {
    margin: 30px 0 10px
}

@media (max-width: 570px) {
    .privacy-policy-container .privacy-policy-content {
        padding:120px 20px 100px
    }

    .privacy-policy-container .privacy-policy-content h1 {
        font-size: 28px
    }

    .privacy-policy-container .privacy-policy-content h2 {
        font-size: 24px
    }

    .privacy-policy-container .privacy-policy-content p {
        font-size: 14px
    }
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiGyp8kv8JHgFVrJJLedw.ttf) format("truetype")
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiDyp8kv8JHgFVrJJLmy15lEA.ttf) format("truetype")
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLDz8V1s.ttf) format("truetype")
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJA.ttf) format("truetype")
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V1s.ttf) format("truetype")
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V1s.ttf) format("truetype")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins,sans-serif;
    font-weight: 400;
    list-style-type: none;
    text-decoration: none;
    font-style: normal
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 700
}

body {
    overflow-x: hidden
}

body::-webkit-scrollbar {
    width: 10px
}

body::-webkit-scrollbar-track {
    background: #f1f1f1
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px
}

a,a:visited {
    color: #000
}

@media (max-width: 768px) {
    #__next {
        overflow-x:hidden
    }

    body::-webkit-scrollbar {
        width: 1px
    }
}

.column,.row {
    display: flex
}

.column {
    flex-direction: column
}

.container,.content {
    width: 100%;
    margin: 0 auto
}

.content {
    padding: 80px 0;
    max-width: 1920px
}

.uppercase {
    text-transform: uppercase
}

.bold {
    font-weight: 700
}

.semibold {
    font-weight: 600
}

.regular {
    font-weight: 400
}

.light {
    font-weight: 300
}

.bigger {
    transform: scale(1.15)
}

@media (max-width: 2100px) {
    .content {
        width:1400px
    }
}

@media (max-width: 1500px) {
    .content {
        width:1100px;
        padding: 60px 0 0
    }
}

@media (max-width: 1200px) {
    .content {
        max-width:880px
    }
}

@media (max-width: 960px) {
    .content {
        max-width:700px;
        padding: 40px 0 0
    }
}

@media (max-width: 768px) {
    .content {
        max-width:550px
    }
}

@media (max-width: 600px) {
    .content {
        max-width:400px
    }

    .bigger {
        transform: scale(1)
    }
}

@media (max-width: 440px) {
    .content {
        max-width:340px
    }
}

@media (max-width: 380px) {
    .content {
        max-width:280px
    }
}

.black {
    color: #000
}

.white {
    color: #fff
}

.yellow {
    color: #f99d1c
}

.yellow2 {
    color: #ffd400
}

.yellow3 {
    color: #fdb913
}

.orange {
    color: #df6234!important
}

.orange2 {
    color: #f37021
}

.brown {
    color: #ac5840!important
}

.bg-black {
    background-color: #000
}

.bg-orange {
    background-color: #d83b1f!important
}

.bg-yellow {
    background-color: #f99d1c
}

.bg-yellow2 {
    background-color: #ffd400
}

.bg-yellow3 {
    background-color: #fdb913
}

.bg-pink {
    background-color: #fdf8f4!important
}
/* Estilos para o container da imagem em destaque */
.featured-image-container {
    /* Centraliza o container */
    margin: 2rem auto;
    /* Adiciona espaço adequado entre elementos */
    padding: 0;
    /* Garante que a imagem não ultrapasse os limites */
    max-width: 100%;
    /* Adiciona sombra suave para destaque */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Adiciona transição suave ao hover */
    transition: transform 0.3s ease;
    /* Arredonda levemente os cantos */
    border-radius: 8px;
    /* Garante que a sombra e os cantos arredondados sejam visíveis */
    overflow: hidden;
}

/* Estilos para a imagem */
.featured-image {
    /* Garante que a imagem ocupe todo o espaço do container */
    width: 100%;
    height: auto;
    /* Mantém a proporção da imagem */
    object-fit: cover;
    /* Centraliza a imagem */
    display: block;
}

/* Efeito hover suave */
.featured-image-container:hover {
    /* Leve aumento de escala ao passar o mouse */
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
    .featured-image-container {
        margin: 1.5rem auto;
        /* Remove sombra em dispositivos móveis para performance */
        box-shadow: none;
    }
}