/*
	Theme Name: Hello Elementor Child
	Theme URI: https://elementor.com/hello-theme
	Description: Child theme from "Hello Elementor" for customizations.
	Author: Coragem
	Author URI: https://coragem.cc
	Version: 1.0.0
	Stable tag: 1.0.0
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	Text Domain: hello-elementor-child
	Template: hello-elementor
*/

/* Wrapper das decorações */
.decor-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none; 
}

/* Container centralizado com limite */
.decor-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

/* Lateral esquerda */
.decor-left {
    position: absolute;
    top: 1153px;
    left: 0;
    width: 100vw;
    height: 1612px;
    background-image: url('assets/images/decorative-obj-left.svg');
    background-repeat: no-repeat;
    background-position: top left;
}

/* Lateral direita */
.decor-right {
    position: absolute;
    top: 982px;
    right: 0;
    width: 100vw;
    height: 1180px;
    background-image: url('assets/images/decorative-obj-right.svg');
    background-repeat: no-repeat;
    background-position: right;
}

/* Esconde em tablet e mobile */
@media (max-width: 1024px) {
    .decor-wrapper {
        display: none !important;
    }
}
