/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "montserrat", sans-serif;
}

section.hero {
	padding-top: 100px;
    padding-bottom: 100px;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #0C1111;
}

.hero video, .hero img {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* animação de trasição */
.slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 1s ease;
    transition-property: clip-path;
}

.hero::before {
    content: '';
    z-index: 222;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: RGBA(12, 21, 15, 0.8);
    background: linear-gradient(90deg, rgba(12, 21, 15, 0.8), rgba(12, 21, 15, 0));
}

.hero .content-box {
    z-index: 333;
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero .content {
    display: none;
    width: 700px;
    /* margin-top: ; */
}

.hero .content.active {
    display: block;
}

.hero .content.first {
	width: 375px;
}

.hero .content.first h1 {
	width: 320px;
}


.hero .content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero .content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.hero .content a {
    font-weight: 600;
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
    background-color: #17E3A9;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 6px;
    transition-duration: 0.5s;
}

.hero .content a:hover {
    background-color: #81E2AA;
}

/* botões de navegação */
.slider-nav {
    z-index: 333;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-nav .nav-btn {
    width: 16px;
    height: 16px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3);
    transition: 0.3s ease;
}

.slider-nav .nav-btn:not(:last-child) {
    margin-right: 8px;
}

.slider-nav .nav-btn:hover {
    scale: 1.1;
}

.slider-nav .nav-btn.active {
    background: rgba(255, 255, 255, 1);
}

@media (max-width: 1040px) {
    section {
        padding: 100px 25px;
    }

    .hero .content {
        width: 90%;
    }

	.hero .content.first {
		width: auto;
	}

	.hero .content.first h1 {
		width: auto;
	}
	.hero .content h1 {
		font-size: 32px;
	}
	.hero .content p {
		font-size: 15px;
		margin-bottom: 48px;
	}
	.hero .content a {
    	font-size: 20px;
	}
}