/*
Theme Name: Aurora
Theme URI: 
Author: Caio Cesar
Author URI: https://github.com/caiocesaar
Description: 
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurora
Tags: 
*/


/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* font-family: "Dela Gothic One", sans-serif; */
/* font-family: "Raleway", sans-serif; */

/* Setup */
@import url('css/bootstrap.min.css');
@import url('css/fontawesome.min.css');


@font-face {
  font-family: "Halu";
  src:  url("css/fonts/Halu.otf") format("opentype"),
        url("css/fonts/Halu.ttf") format("truetype");
}


:root {
    --primary-color: #ED2976;    
    --secondary-color: #FDE986;
    --thirdy-color: #6E0030;
    --fourth-color: #F59121;
    --gradient-default: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    --gradient: linear-gradient(90deg, rgba(237, 41, 118, 1) 0%, rgba(250, 170, 62, 1) 80%, rgba(237, 41, 118, 1) 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dela Gothic One', sans-serif;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: #FCEFDF;
    color: #414042;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {text-decoration: none !important;}

#content { padding-top: 100px; min-height: 80vh; }

#bars {
    width: 32px;
	height: auto;
    cursor: pointer;
    display: none;
    position: absolute;
    z-index: 12;
    top: 22px;
    right: 0;
    margin-right: 15px;
}

#bars span {
    background: #FFF;
	width: 100%;
	height: 4px;	
	display: block;
	margin-bottom: 5px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	opacity: 1;
    border-radius: 2px;
}

#bars.active span {
	opacity: 0;
}

#bars.active span:first-child,
#bars.active span:last-child {
	opacity: 1;
}

#bars.active span:first-child {
	transform: rotate(-45deg);
    margin-top: 10px;
}

#bars.active span:last-child {
	transform: rotate(45deg);
	margin-top: -17px;
}


.logo-site {
    opacity: 0;
    transition: .3s;
    -webkit-transition: .3s;   
    -moz-transition: .3s;
}

.logo-site:hover {
    transform: scale(1.1);
}

#nav {
    font-family: 'Dela Gothic One', sans-serif;
    padding: 20px 0;
    background: var(--gradient-default);
    position: fixed;
    width: 100%;
    z-index: 2;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}

#nav.fixed {
    background: var(--gradient);
}

#nav.fixed .logo-site {
    opacity: 1;
}

.nav-container,
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-container  {
    height: 90vh;
    padding: 0 20px;
}

.hero-container img {
    max-width: 80%;
    margin: 0 auto;
}

#nav ul {
    display: flex;
    list-style: none;
    justify-content: end;
    margin-top: 10px;
    padding-left: 0;
}

#nav ul li {
    margin-left: 30px;
}

#nav ul li a {
    color: #FFF;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}

#nav ul li a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

#hero {
    height: 90vh;
    background: url('img/hero.jpg') no-repeat center;
    background-size: cover;
}

#hero-scroll {
    background-color: var(--primary-color);
    width: 154px;
    height: 154px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 50px;
    margin-left: -77px;
    margin-top: -77px;
    outline: none;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: block;
}

#hero-scroll:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50px;
    width: 50px;
    height: 15px;
    background-image: url(img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

#leadership {
    padding-bottom: 80px;
    position: relative;
    min-height: 55vh;
}

#leadership::after {
    width: 50%;
    height: 50vh;
    content: "";
    display: block;
    position: absolute;
    background: url('img/leadership.png') no-repeat center right;
    background-size: contain;
    top: 0;
    right: 0;
}

#leadership .site-title {
    margin-bottom: 40px;
    font-size: 48px;
}

.site-title {
    color: var(--primary-color);
}

.site-title span {
    color: var(--fourth-color);
    font-family: "Halu", sans-serif;
}

article span,
article strong {
    color: var(--primary-color);
}

#behind {
    padding: 80px 0;
    border-top: 2px solid #FBB03B;
    display: block;
}

#behind .site-title {
    margin-bottom: 40px;
}

#behind span, 
#behind strong.bolder {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 18px;
    color: var(--thirdy-color);
}

#services-home {
    background-color: var(--fourth-color);
    padding: 80px 0;
    color: #FFF;
}

.service-home-item {
    padding: 20px;
}

.service-home-item-thumbnail {    
    margin: 30px 0;
    position: relative;
}

.service-home-item-thumbnail img {
    overflow: hidden;
    border-radius: 30px;
    max-width: 80%;
}

.service-home-item-thumbnail-icon {
    position: absolute;
    top: 30px;
    right: 0;
    width: 160px;
    height: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(img/mentoria-lider.svg);
}

.service-home-item-link {
    color: var(--thirdy-color);
    background-color: #FCE887;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 16px;
    margin-top: 10px;
    display: table;
    float: right;
    font-family: "Dela Gothic One", sans-serif;
    transition: .3s;
}

.service-home-item-link::after {
    display: block;
    content: "";
    clear: both;
}

.service-home-item-link:hover {
    color: #FCE887;
    background-color: var(--thirdy-color);
}

.service-home-title {
    font-size: 48px;
    text-align: center;
    color: #FFF;
}

.service-home-title.site-title span {
    font-size: 60px;
    color: #FCE887;
}

.service-home-item-title {
    color: var(--thirdy-color)
}

.swiper-button-prev { background-image: url('img/arrow-left.svg') !important; }
.swiper-button-next { background-image: url('img/arrow-right.svg') !important; }


.slide-wrapper {
    position: relative;
}

.slide-wrapper-button-prev,
.slide-wrapper-button-next {
    background: url('img/arrow-left.svg') no-repeat center;
    background-size: contain;
    width: 15px;
    height: 50px;
    position: absolute;
    top: 50%;
    cursor: pointer;
}

.slide-wrapper-button-prev {
    left: -30px;
}

.slide-wrapper-button-next {
    background: url('img/arrow-right.svg') no-repeat center;
    right: -30px;
}



.swiper-button-next,
.swiper-button-prev {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    width: 15px;
    height: 50px;
    color: rgba(255,255,255,0);
    top: var(--swiper-navigation-top-offset, 43%);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0)
}

#customers-talking {
    color: #FFF;
    padding: 80px 0;
    background-color: var(--primary-color);
}

.customers-talking-title {
    max-width: 300px;
}

.customers-talking-title span {
    color: #FBDC86;
}

.customers-talking-carousel {
    background-color: #FCF0DE;
    padding: 30px;
    width: 100%;
    border-radius: 50px;
    color: #414042;
    min-height: 350px;
}

.customers-talking-carousel-item-title {
    font-size: 28px;
    color: var(--primary-color)
}

.customers-talking-carousel-item-subtitle { 
    margin-bottom: 40px;
}

.customers-talking-carousel-item-subtitle,
.customers-talking-carousel-item-subtitle strong {
    color: var(--thirdy-color);
}

.customers-talking-carousel-item-subtitle p { margin-bottom: 0; }

.customers-talking-carousel-item-thumb {
    border-radius: 30px;
    overflow: hidden;
}


.customers-talking-carousel .slide-wrapper-button-prev,
.customers-talking-carousel .slide-wrapper-button-next {
    width: 8px;
    top: var(--swiper-navigation-top-offset, 45%);
}

#contact {
    overflow: hidden;
    color: var(--primary-color);
}

#contact img {
    max-width: 50px;
    margin-right: 10px;
}

.contact-title {
    margin-top: 80px;
    margin-bottom: 30px;
}

.contact-link { color: var(--primary-color) !important; }

#contact-form {
    display: block;
    padding: 80px 0;
    padding-left: 40px;
    background-color: var(--secondary-color);
    position: relative;
}

#contact-form::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    background-color: var(--secondary-color);
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="number"],
#contact-form textarea {
    width: 100%;
    background-color: white;
    outline: none;
    border: 0;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

#contact-form textarea {
    height: 150px;
}

#contact-form .form-check {
    color: var(--thirdy-color);
}

#contact-form-submit {
    color: #FFF;
    background-color: var(--primary-color);
    border-radius: 30px;
    outline: none;
    border: 0;
    padding: 10px 50px;
    float: right;
    font-weight: 700;
    cursor: pointer;
}

#contact-form-submit::after {
    content: "";
    display: block;
    clear: both;
}

#footer-site {
    color: #FFF;
    background: var(--gradient);
    padding: 40px 0;
}

.copyright {
   font-size: 14px; 
   margin-top: 20px;
}

#nav-footer {
    text-align: right;
}

#nav-footer ul {
    padding-left: 0;
    list-style: none;
}

#nav-footer ul li {
    display: inline;
    margin-left: 10px;
}

#nav-footer ul li a {
    font-weight: 700;
    color: white !important
}

.single-content {
    padding: 40px 0;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6,
.single-post-title {
    font-weight: bold;
    color: var(--primary-color);
}

.single-post-thumbnail {
    margin-bottom: 20px;
}

.blog-post-item-date,
.single-post-date {
    color: var(--thirdy-color);
    font-weight: 700;
    margin-bottom: 40px;
}

.single-post-content {
    font-size: 18px;
}

header#single-post {
    padding: 80px 0;
    background: url(img/blog-header.jpg) no-repeat center;
    background-size: cover;
    height: 300px;
    position: relative;
}

header#single-post.blog-page {
    height: 550px;
}

header#single-post .blog-icon {
    margin-top: 14%;
}

.blog-post-item {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--primary-color);
    display: block;
}

.blog-post-item .blog-post-item-image {
    margin-bottom: 40px;
}

.blog-post-item-title {
    color: var(--primary-color)
}

.blog-post-item-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;  
    -ms-transition: 0.3s;
}

.blog-post-item-link:hover {
    color: var(--thirdy-color);
}

.widget {
    margin: 20px 0
}

.widget ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.widget ul {
    padding: 15px 40px;
    border-radius: 10px;
    background-color: var(--fourth-color);
}

.widget ul li {
    list-style: url(img/list-style.svg);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
}

.widget ul li:hover {
    transform: translateX(10px);
}

.widget ul li {
    margin-bottom: 20px;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul li a {
    color: white;
    font-weight: 700;
}

.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6 {
    color: var(--fourth-color);
    font-size: 20px;
}

.wp-block-search {
    background-color: var(--primary-color);
    padding: 20px;
    border: 0;
    border-radius: 10px;
}

.wp-block-search input[type="search"] {
    border: 0;
    outline: none;
    border-radius: 10px;
    padding: 10px;
}

.wp-block-search .wp-block-search__button {
    outline: none;
    border: 0;
    background: none;
    color: #FFF;
    padding: 10px;
    cursor: pointer;
    content-visibility: hidden;
    background: url(img/search.svg) no-repeat center top;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-top: 5px;
}

.wp-block-search__label {
    display: none;
}

.blog-sidebar aside:first-child .wp-block-heading {
    color: var(--primary-color);
}

.page-navigation {
    margin-bottom: 40px;
}

.page-numbers {
    color: var(--primary-color);
}

.page-numbers:hover {
    color: var(--thirdy-color);
}

#service-content {
    min-height: 90vh;
}

#service-content-header .container {
    height: 550px;
}

#service-content-header {
    
    background-color: gray;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#service-content-title {
    color: #FFF;
    font-size: 48px;
    max-width: 600px;
}   

#service-content-header-content,
#service-content-header-wrapper {
    width: 100%;
}

#service-content-header-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-content.single-service-content h3,
.single-content.single-service-content h4,
.single-content.single-service-content h5,
.single-content.single-service-content h6 {
    color: var(--fourth-color);
}

.single-content.single-service-content ul {
    color: var(--thirdy-color);
    font-weight: 700;
    line-height: 2.0;
}

#service-related {
    background-color: var(--fourth-color);
    color: #FFF;
    padding: 80px 0;
}

@media only screen and (max-width: 990px) {

    .hero-container {
        height: 40vh;
    }

    #behind {
        text-align: center;
    }

    #behind .linkedin {
        text-align: center;
    }

    #behind .linkedin img {
        max-width: inherit;
    }

    #contact-form::after {
        display: none;
    }

    #contact-form {
        padding: 40px;
        margin: 20px 0;
        border-radius: 50px;
    }

    .logo-footer {
        margin: 0 auto;
        display: table;
    }

    .copyright,
    #nav-footer {
        text-align: center;
    }

    .service-home-item {
        text-align: center;
    }

    .customers-talking-title {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .customers-talking-carousel-item {
        text-align: center;
    }

    .customers-talking-carousel-item-thumb {
        margin-bottom: 30px;
    }

    .service-home-item-link {
        float: none;
        margin: 10px auto;
    }

    #contact-form-submit {
        float: none;
        margin-top: 20px;
    }

    #nav-footer ul li:first-child {
        display: block;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 769px) { 

    .logo-site,
    #nav.fixed .logo-site  {
        opacity: 1;
    }

    #bars {display: block}

    #nav ul {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 55px;
        left: 0;
        transform: translateX(100%);
        opacity: 0;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
    }

    #nav ul.active {
        transform: translateX(0);
        opacity: 1;
    }

    #nav ul li {
        margin-left: 0;
        outline: none;
        border: 0;
    }

    #nav ul li a {
        display: block;
        padding: 20px;
        background: var(--gradient);
    }

    #hero { height: 100vh; }

    .site-title,
    #leadership .site-title,
    .service-home-title {
        font-size: 36px;
    }

    #leadership::after {
        position: relative;
        width: 100%;
        height: 400px;
    }

    
    .service-home-item-thumbnail-icon {
        top: -30px;    
        width: 80px;
    }

    .slide-wrapper-button-prev { left: 0 }
    .slide-wrapper-button-next { right: 0 }

}

@media only screen and (max-width: 543px) {
    .logo-site {
        max-width: 140px;        
    }
}
