:root {
    --primary-color: #1323FD;
    --primary-medium-color: #2E82FF;
    --primary-light-color: #eff5ff;
    --secondary-color: #F61AC6;
    --secondary-medium-color: #f848d1;
    --secondary-light-color: #fee8f9;
    --title-text-color: #2E2E48;
    --body-text-color: #3D3D64;
    --contrast-color: #fff;
    --bg-light-theme: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all ease-in-out .2s;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
}
a {
    text-decoration: none;
    color: var(--primary-color);
}
p {
    line-height: 1.6rem;
    color: var(--body-title-color);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
input[type=text], textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--body-text-color);
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
}
input::placeholder,
textarea::placeholder {
    color: #999;
}
textarea {
    resize:none;
}
input:focus,
textarea:focus {
    outline-color: var(--title-text-color);
}
.box-input-text {
    position: relative;
}
label {
    display: flex;
    position: absolute;
    top: 9px;
    left: 9px;
    padding: 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    color: #999;
    background-color: var(--bg-light-theme);
    cursor: text;
}
input[type=text]:focus~label,
textarea:focus~label {
    color: var(--title-text-color);
}
input[type=text]:focus~label,
input[type=text]:not(:placeholder-shown)~label,
textarea:focus~label,
textarea:not(:placeholder-shown)~label {
    transform: translate(-8px, -80%) scale(.8);
}
button {
    font-family: 'Poppins', sans-serif;
    border: 0;
    cursor: pointer;
    background-color: transparent;
}
::-webkit-scrollbar {
    width: 16px;
}
::-webkit-scrollbar-track {
    background: #edf2f7; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 12px;
    border: 3px solid #edf2f7;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.button {
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    color: var(--contrast-color);
    letter-spacing: .02em;
    padding: 16px 32px;
    background: var(--secondary-color);
    border-radius: 14px;
    box-shadow: 0px 5px 18px 0px rgba(246, 26, 198, 0.70);
}
.button.secondary {
    color: var(--title-text-color);
    background: var(--primary-light-color);
    box-shadow: 0px 10px 22px var(--primary-light-color);
}
.button:hover {
    box-shadow: 0px 6px 22px 0px rgba(247, 26, 198, 0.7);
}
.button:active {
    transform: scale(0.95);
}

.btn-link {
   font-size: 1rem;
   line-height: 1.2em;
   display: flex;
   align-items: center;
   gap: 6px;
   position: relative;
}
.btn-link svg {
    width: 1rem;
    fill: currentColor;
    position: relative;
    top: -1px;
}
.btn-link:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    bottom: -5px;
    transition: .4s ease-in-out all;
}
.btn-link:hover:after {
    width: 100%;
}

.faded-text{
    font-size: .875rem;
    color: var(--body-text-color);
}

.slide-up {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-top {
	-webkit-animation: slide-in-top 2.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite;
    animation: slide-in-top 2.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite;
}
@-webkit-keyframes slide-in-top {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slide-in-top {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.delay-1 {
    animation-delay: 0.25s;
}
.delay-2 {
    animation-delay: 0.5s;
}
.delay-3 {
    animation-delay: 0.75s;
}
.delay-10 {
    animation-delay: 2s;
}
.delay-11 {
    animation-delay: 2.75s;
}
.delay-12 {
    animation-delay: 3.5s;
}

.gradient {
	width: 100vw;
	height: 100vh;
	background: linear-gradient(334deg, #3365b1, #a2c5ff, #ff8fe6);
	background-size: 180% 180%;
    display: flex;
    align-items: center;
    justify-content: center;
	animation: gradient-animation 6s ease infinite;
}
@keyframes gradient-animation {
	0% {
		background-position: 0% 80%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 80%;
	}
}


.main-section {
    width: 60vw;
    height: 80vh;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0px 5px 11px 0px rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    border-radius: 44px;
    border: 8px solid var(--bg-light-theme);
    padding: 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    position: relative;
}

.header-section {
    background: var(--bg-light-theme);
    padding: 12px 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-section .title {
    font-size: 1.25rem;
}
.header-section .icon-image {
    width: 32px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-medium-color);
}

.container-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 24px;
}
.developing-icon {
    margin: 0 auto -4px;
    width: 140px;
    position: relative;
    z-index: 1;
}
.developing-icon img {
    z-index: 1;
    position: relative;
    animation: floating-animation 3s linear infinite;
}
@keyframes floating-animation {
	50% {
		transform: translateY(-4px);
	}
}
.sombra-leptop {
    display: block;
    width: 67px;
    height: 33px;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    bottom: 0;
    left: 20px;
    transform: skew(-60deg, 26deg);
    filter: blur(14px);
    animation: expand 3s linear infinite;
}
@keyframes expand {
    50% {
        transform: scale(1.2);
    }
}
.action-line {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title {
    display: flex;
}
.section-title > * {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: -20px;
    color: var(--title-text-color);
}

.container-bottom {
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px 20px;
}
.container-bottom .faded-text{
    grid-column: 1 / 3;
}

@media only screen and (max-width: 1366px) {
    .main-section {
        width: 70vw;
        height: 85vh;
    }
    .header-section {
        padding: 8px 28px;
        gap: 10px;
    }
    .header-section .icon-image {
        width: 28px;
    }
    .header-section .title {
        font-size: 1rem;
    }
    .developing-icon {
        transform: scale(0.9);
    }
    .section-title > * {
        font-size: 2.25rem;
    }
    p {
        font-size: .875rem;
        line-height: 1.5em;
    }
    .button {
        font-size: .875rem;
        padding-top: 12px;
        padding-bottom: 12px;
        
    }
    .faded-text {
        font-size: .750rem;
    }
    .btn-link {
        font-size: .875rem;
        line-height: 1em;
    }
}


@media only screen and (max-width: 500px) {
    .main-section {
        width: 90vw;
        height: 95vh;
        padding: 74px 24px;
        justify-content: space-between;
    }
    
    .header-section {
        position: absolute;
        top: 0;
        padding: 8px 22px 12px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    
    .section-title > * {
        font-size: 1.7rem;
        text-wrap: nowrap;
        margin-bottom: -8px;
    }
    p br {
        display: none;
    }
    
    .developing-icon {
        transform: scale(0.8);
    }
    
    .container-main {
        gap: 16px;
        margin-top: 13vh;
    }
    
    .btn-link {
        text-align: left;
        gap: 12px;
    }
}

@media only screen and (max-width: 380px) {
    .container-main {
        margin-top: 10vh;
    }
    .section-title > * {
        font-size: 1.5rem;
    }
    p {
        font-size: .750rem;
    }
}