/*
Theme Name: L'idée Agência de Marketing
Theme URI: https://lidee.com.br
Author: Jordana Leite
Author URI: https://www.linkedin.com/in/jordanaleite/
Description: Site para L'idée Agência de Marketing.
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: lidee
Tags: lidee, marketing
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* scrollbar */

::-webkit-scrollbar {
    width: 5px;
    display: none;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

@media only screen and (max-width: 500px) {
    ::-webkit-scrollbar {
    display: none;
    }
}

/* smooth */

html {
    overflow-y: visible;
    scroll-behavior: smooth;
}

/* jojo loader & animations */

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes parceiros-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform:translateX(0)
    }
    to {
        -webkit-transform: translateX(-33.33%);
        transform: translateX(-33.33%)
    }
}

@keyframes parceiros-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform:translateX(0)
    } to {
        -webkit-transform: translateX(-33.33%);
        transform:translateX(-33.33%)
    }
}

.img.block {
    transition-duration: 3s;
}

.img.block:hover {
    transform: scale(1.1);
}

/* main */

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    position: relative;
    background: #000;
    color: #fff;
    width: 100vw;
    overflow-x: hidden;

    animation: 4s ease-out 0s 1 fadein;
}

home,
image,
footer,
header,
main,
menu,
nav {
  display: block;
}

/* FONTS */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

strong, .bold, b, .b {
    font-weight: 700;
}

p, .p {
    margin-bottom: 1.5rem;
    line-height: 24px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

@media only screen and (max-width: 500px) {
    
    h1, h2, .h1, .h2, h3, .h3 {
        -webkit-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
        hyphens: none; 
    }

}


/* colors */

.preto {
    color: #000;
}

.branco {
    color: #FFF;
}

.cinza {
    color: #d6d6d6;
}

/* alinhamentos */

.display-none {
    display: none!important;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 500px) {
    .desktop {
        display: none;
    }
    
    .mobile {
        display: block;
    }
}


/* BOTÕES */

.btn-collapse {
    display: inline-flex;
    position: relative;
    padding: 0;
    color: #fff;
}

.btn-collapse span::after, .accordion-button span::after {
    display: block;
    position: relative;
    color: #fff;
    height: 20px;
    width: 20px;
}

.btn-collapse[aria-expanded="false"] span::after, .accordion-button[aria-expanded="false"] span::after {
    content: '＋';
}

.btn-collapse[aria-expanded="true"] span::after, .accordion-button[aria-expanded="true"] span::after {
    content: '－';
}

.accordion-item, .accordion-header {
    background-color: transparent;
    border: none;
}

.accordion-button, .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #fff;
    padding: 20px 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after, .accordion-button:not(.collapsed)::after {
    background-image: none;
}

/* MENU */

#menu {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            
}


.navbar-brand img {
    max-width: 150px;
}

/* ERROR */

#error {
    padding-top: 130px;
}

/* MAIN */

#main {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    overflow-x: hidden;
}

#content {
    position: relative;
    height: auto;
    transition: 2s ease;
}

.box-content {
    min-height: 100vh;
}

/* ZAP */

#zap {
    z-index: 5;
}

.zap-box {
    bottom: 20px;
    right: 20px;
}

.zap-box img {
    width: 40px;
    height: 40px;
}

#zap .toast-container {
    bottom: 20px;
    right: 80px;
}

#zap .toast {
    background-color: #fff;
    color: #000;
    border: none;
    visibility: hidden;
}

@media only screen and (max-width: 575px) {
    #zap .toast-container {
        right: 20px;
        bottom: 80px;
    }
    
    #zap .toast {
        width: auto;
    }
    
    #zap .toast-body {
        padding: .5rem;
    }
}

/* HERO */

#hero .img-box {
    width: 50%;
    height: 100%;
    right: 0;
}

#hero .img {
    position: absolute;
}

#hero .hero-top {
    right: -40%;
    top: 0;
    transform: scale(.7)
}

#hero .hero-right {
    right: -55%;
    top: 20%;
    transform: scale(.7)
}

#hero .hero-medium {
    right: 5%;
    top: 42%;
    transform: scale(.8)
}

#hero .hero-bottom {
    right: 30%;
    top: 60%;
    transform: scale(.8)
}

#hero .hero-text {
    width: 100%;
    height: 100%;
    display: flex;
}

@media only screen and (max-width: 1199px) {
    #hero .hero-top {
        right: -60%;
    }
    
    #hero .hero-right {
        right: -80%;
    }
    
    #hero .hero-medium {
        right: 0%;
    }
    
    #hero .hero-bottom {
    }
}

@media only screen and (max-width: 991px) {
    #hero .hero-top {
        right: -90%;
        transform: scale(.5)
    }
    
    #hero .hero-right {
        right: -105%;
        transform: scale(.5)
    }
    
    #hero .hero-medium {
        right: -25%;
        top: 40%;
        transform: scale(.6)
    }
    
    #hero .hero-bottom {
        top: 55%;
        right: 10%;
        transform: scale(.6)
    }
}

@media only screen and (max-width: 575px) {
    #hero {
        margin-bottom: 200px;
    }
    
    #hero h1.display-6 {
        background-color: #000;
        padding: .5rem 0;
    }
    
    #hero .img-box {
        width: 100%;
    }
    
    #hero .hero-top {
        top: -30%;
        right: -110%;
    }
    
    #hero .hero-right {
        top: 5%;
        right: -135%;
    }
    
    #hero .hero-medium {
        right: -35%;
        top: 50%;
    }
    
    #hero .hero-bottom {
        top: 65%;
        right: 5%;
    }
}

/* DESTAQUE */

#destaque {
    
}

#destaque img {
    width: 100%;
    display: block;
}

#destaque .img {
    position: relative;
}

#destaque .img-box::after {
    content: ' ';
    display: table;
    clear: both;
}

.destaque-1 {
    float: left;
    width: 66%;
    z-index: 1;
    top: 80px;
}

.destaque-2 {
    width: 65%;
    float: right;
    right: 30px;
    top: -220px;
}

.destaque-3 {
    height: 122px;
    width: 120px;
    bottom: 20px;;
    z-index: 3;
    left: -50px;
}

#destaque .destaque-3 img {
    width: 120px;
    height: auto;
}

.destaque-4 {
    float: left;
    width: 45%;
    top: -160px;
    left: -60px;
}

@media only screen and (max-width: 575px) {
    #destaque .col-12, #destaque .img-box {
        max-height: 550px;
    }
    
    #destaque .img-box {
        margin: 100px 0;
    }
    
    .destaque-1 {
        right: -5%;
        width: 80%
    }
    
    .destaque-2 {
        top: -250px;
        right: 5%;
    }
    
    .destaque-3 {
        bottom: 100px;
        left: 10px;
    }
    
    #destaque .destaque-3 img {
        width: 80px;
    }
    
    .destaque-4 {
        bottom: 35px;
        left: 5%;
    }
}

/* HELEN */

.img-helen {
    width: 100%;
    max-width: 300px;
    height: auto;
}

@media only screen and (max-width: 575px) {
    .img-helen {
        max-width: 250px;
        margin-bottom: 100px;
    }
}

/* PLANEJAMENTO ESTRATEGICO */

#plan .img {
    position: relative;
}

#plan img {
    width: 100%;
    display: block;
}

#plan .img-box::after {
    content: ' ';
    display: table;
    clear: both;
}

.plan-1 {
    float: right;
    width: 50%;
    z-index: 1;
    top: 0;
    right: 120px;
}

.plan-2 {
    width: 100px;
    height: 150px;;
    float: right;
    z-index: 2;
    top: 80px;
    right: -40px;
}

#plan .plan-2 img {
    height: 100px;
    width: auto;
}

.plan-3 {
    bottom: -350px;
    z-index: 3;
    left: 0;
    width: 100px;
    height: 90px;
}

#plan .plan-3 img {
    width: 100px;
    height: auto;
}

.plan-4 {
    width: 50%;
    right: -60px;
    bottom: -0;
}

@media only screen and (max-width: 575px) {
    #plan {
        margin: 100px 0;
    }
    
    .plan-1 {
        width: 80%;
        right: 5%;
        top: 100px;
    }
    
    .plan-2 {
        right: 20%;
        top: -100px;
    }
    
    .plan-3 {
        left: 0;
        bottom: 0;
    }
    
    .plan-4 {
        bottom: 100px;
        width: 55%;
        left: 5%;
    }
}

/* EXPERIENCIA */

#experiencia img {
    width: 100%;
    display: block;
}

#experiencia .img {
    position: relative;
}

#experiencia .img-box {
    max-height: 100vh;
    position: relative;
}

#experiencia .img-box::after {
    content: ' ';
    display: table;
    clear: both;
}

.exp-1 {
    float: left;
    width: 50%;
    z-index: 2;
    top: 100px;
}

.exp-2 {
    width: 50%;
    float: right;
    top: 20px;
    right: 100px;
}

/*
.exp-3 {
    transform: scale(.5);
    top: -350px;
    left: -130px;
} */

.exp-4 {
    width: 40%;
    top: -200px;
    right: -140px;
    height: 125px;
}

#experiencia .img.exp-5 {
    width: 80px;
    height: 100px;
    top: -330px;
    right: -70px;
}

#experiencia .exp-5 img {
    height: 100px;
    width: auto;
}

@media only screen and (max-width: 575px) {
    #experiencia .col-12 {
        max-height: 550px;
    }
    
    #experiencia .img-box {
        margin: 100px 0;
    }
    
    .exp-1 {
        width: 80%;
        top: 150px;
    }
    
    .exp-2 {
        width: 80%;
        top: -250px;
        right: 0;
    }
    
    /*
    .exp-3 {
        left: -80px;
    } */
    
    .exp-4 {
        display: flex;
        height: auto;
        width: 65%;
        top: -400px;
        right: -70px;
    }
    
    #experiencia .img.exp-5 {
        top: -300px;
        right: -20px;
    }
    
    #experiencia .exp-5 img {
        height: 80px;
    }
}

/* PARCEIROS */

#parceiros .carousel-item img {
    width: 300px;
    height: auto;
    padding: 0px 50px;
}

.slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* METODOLOGIA */

#metodo {
    min-height: 70vh;
    padding-bottom: 20%;
}

#metodo .img, #metodo img {
    position: absolute;
}

.metodo-up {
    right: -28%;
    top: -30%;
    transform: scale(.4);
}

.metodo-down {
    left: -30%;
    bottom: -40%;
    transform: scale(.4);
}

@media only screen and (max-width: 575px) {
    #metodo {
        min-height: 100vh;
    }
    
    .metodo-up {
        right: -385px;
        top: -200px;
        transform: scale(.3);
    }
    
    .metodo-down {
        left: -385px;
        bottom: -200px;
        transform: scale(.3);
    }
}

/* L'IDÉE  */

#l-idee .video {
    height: 100vh;
}

#l-idee video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#l-idee .video-shadown {
    height: 20%;
    width: 100%;
    display: block;
    content: '';
    background: rgba(0,0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    top: 0;
}

#l-idee .img-text {
    bottom: 0;
    display: block;
    background: rgba(0,0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

@media only screen and (max-width: 575px){
    #l-idee .video-shadown {
        top: -0.75px
    }
}


/* CONTATO */

#contato {
    min-height: 70vh;
}

.logo-footer {
    width: 120px;
}

@media only screen and (max-width: 575px){
    #contato {
        min-height: 50vh;
    }
}

/* FOOTER */

#footer {
    color: #a2a2a2;
}

#footer img {
    width: 25px;
    height: auto;
}