/* =================================
    Global Typography & Layout
==================================== */
.mb-35 {
    margin-bottom: 35px;
}

.mb-45 {
    margin-bottom: 45px;
}

.pos-rel {
    position: relative;
}

/* =================================
    Widget Specific Styles
==================================== */
.lp-hero-style {
    overflow: hidden;
    position: relative;
}

.hero__height {
    min-height: 750px;
    display: flex;
    align-items: flex-end; /* Garante alinhamento na base em desktop */
}

.hero__content {
    padding: 20px 0; /* Adiciona respiro vertical */
}

.hero__content .title {
    font-family: "Lexend Deca", sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.125;
    color: #14133b;
}

.hero__content .title span {
    display: inline-block;
}

.hero__content p {
    font-family: "Lexend Deca", sans-serif;
    font-size: 18px;
    line-height: 1.667;
    color: #5d5d7c;
}

/* Button Styles */
.thm-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: transparent;
    font-family: "Lexend Deca", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 18px 45px;
    border-radius: 5px;
    transition: all 0.3s linear;
    text-decoration: none;
}

.thm-btn--gradient {
    background-image: linear-gradient(90deg, #835efb 0%, #4666ff 100%);
}
.thm-btn--gradient:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(70, 102, 255, 0.3);
}

.btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px; /* Controla o espaço horizontal e vertical entre os botões */
}

.thm-btn--outline {
    border: 2px solid #4666ff;
    color: #4666ff;
    padding-left: 30px;
    padding-right: 30px;
}
.thm-btn--outline:hover {
    background-color: #4666ff;
    color: #fff;
}

.thm-btn--outline i {
    margin-right: 10px;
    background-image: linear-gradient(90deg, #835efb 0%, #4666ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.thm-btn--outline:hover i {
    background-image: none;
    -webkit-text-fill-color: #fff;
}


/* Image and Shapes Styles */
.hero__img {
    position: relative;
    z-index: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img--shape {
    margin-left: -50px;
}


.hero__img-shape .shape {
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(131, 94, 251, 0.1);
    border-radius: 10px;
    padding: 0.9375em 1.5625em;
    display: flex;
    align-items: center;
    font-family: "Lexend Deca", sans-serif;
    color: #14133b;
}

.hero__img-shape .shape img {
    margin-right: 15px;
    width: auto;
}

.hero__layer-shape .shape {
    position: absolute;
}

.hero__layer-shape .shape--1 { left: -10%; top: 20%; animation: zoom-fade 5s linear infinite; }
.hero__layer-shape .shape--2 { left: 20%; bottom: 10%; animation: zoom-fade 4s linear infinite; }
.hero__layer-shape .shape--3 { right: 0; top: 25%; animation: zoom-fade 3s linear infinite; }
.hero__layer-shape .shape--4 { right: 20%; bottom: 15%; animation: zoom-fade 6s linear infinite; }

.hero__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.hero__shape-icon {
    position: absolute;
    right: 5%;
    bottom: 10%;
    animation: up-down 5s linear infinite;
    z-index: -1;
}

/* Animations */
.wow {
    visibility: hidden;
}

@keyframes zoom-fade {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.8; }
}

@keyframes up-down {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* =================================
    Responsive Styles
==================================== */

@media (max-width: 1199px) {
    .hero__height {
        min-height: 650px;
    }
    .hero__content .title {
        font-size: 60px;
    }
    .hero__img--shape {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .hero__height {
        min-height: auto;
        /* ALTERAÇÃO: Padding inferior removido (era 80px) */
        padding: 120px 0 0;
    }

    .hero__img {
        text-align: center;
    }
    .hero__img img {
        max-width: 100%;
        height: auto;
    }
    .hero__img--shape {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .hero__height {
        /* ALTERAÇÃO: Padding inferior removido (era 60px) */
        padding: 100px 0 0;
        flex-direction: column;
        align-items: center;
    }
    .hero__content {
        text-align: center;
        margin-bottom: 50px;
    }
    .hero__content .title {
        font-size: 42px;
    }
    .hero__content p {
        font-size: 16px;
    }
    .thm-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    .btns {
        flex-direction: column;
        justify-content: center;
    }
    .btns > * {
        margin: 10px 0;
    }
}