/* .home .full-screen {
    min-height: 86vh;
    padding: 50px 0;
} */

.home {
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 125, 79, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.home .texto-home {
    visibility: hidden;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.home .texto-home,
.home .img-home {
    visibility: hidden;
    flex: 0 0 50%;
    max-width: 70%;
    padding: 0 15px;
}

.home .img-home .img-box {
    max-width: 700px;
    margin: auto;
}

.home .img-home .img-box img {
    /* width: 100%; */
    /* height: 70vh; */
    filter: drop-shadow(5px 5px 300px #bd9243);
    /* border-radius: 40%; */
}

.home .texto-home p {
    font-family: var(--fonte-secundaria);
    font-size: var(--fonte-grande);
    margin-bottom: 10px;
}

.home .texto-home h1 {
    font-family: var(--fonte-secundaria);
    font-size: var(--fonte-gigante);
    font-weight: 700;
}

.home .texto-home span {
    font-size: var(--fonte-gigante);
    font-weight: 700;
    font-family: var(--fonte-primaria);
    color: var(--cor-secundaria);
}

.home .texto-home h2 {
    font-family: var(--fonte-secundaria);
    font-size: var(--fonte-grande);
    letter-spacing: 2px;
    margin-bottom: 30px;
    min-height: 40px;
}

.home .typing-animation {
    display: inline-block;
    border-right: 3px solid var(--cor-secundaria);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--cor-secundaria); }
    50% { border-color: transparent; }
}

.home .texto-home span {
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 1280px) {
    .home .texto-home,
    .home .img-home {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: var(--mobile-padding);
    }
}


p {
    font-weight: 400;
}

.d-none {
    display: none;
}