@import './components/reset.css';
@import './components/colors.css';
@import './components/typography.css';
@import './components/navbar.css';
@import './components/buttons.css';

body {
    background: var(--color-neutral-n900);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    height: 900px;
    background: #2f0357;
    background-image: radial-gradient(at 79.9% 19.9%, hsl(269, 84%, 42%) 0px, transparent 50%), radial-gradient(at 101.3% 94.6%, hsl(278, 90%, 20%) 0px, transparent 50%), radial-gradient(at -42.7% 86.7%, hsl(207, 90%, 54%) 0px, transparent 50%);
    background-repeat: no-repeat;
}



.hero_content {
    background-color: #14121688;
    height: 900px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 104px;
    padding-top: 72px;
}

.pie-chart {
    display: block;
    position: absolute;
    margin-top: -4em;
    margin-left: 54em;
}

.hero_action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 3;
}

.hero_action h1 {
    text-align: center;
    font-weight: 700;
    line-height: 64px;
    position: relative;
    /* 133.333% */
}

.hero_btn_group {
    display: flex;
    gap: 16px;
}

.hero_prototype {
    z-index: 2;
}

#lottie-animation {
    z-index: 1;
    margin-top: -40em;
}

/* ===== Seção - CTA ===== */

.section-cta-start {
    display: flex;
    flex-direction: column;
    padding: 268px 24px 72px 24px;
    background: var(--cor-primaria);
    font-family: Inter;
    width: 100%;
    max-width: 1440px;
}

.container {
    display: flex;
    height: 72px;
    justify-content: space-between;
}

/* === Widgets de Seção === */

.section-container{
    display: flex;
    justify-content: space-between;
    gap: 32px;
}


.section-features{
    display: flex;
    flex-direction: row;
    padding: 72px 24px 72px 24px;
    max-width: 1440px;
    
    
}

.card-feature {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--color-neutral-n700);
    border-radius: 12px;
    background: var(--color-neutral-n800);
}

.card-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-neutral-n700);
}

.card-header-group{
    display: flex;
    flex-direction: row;
    vertical-align: center;
    gap: 20px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
}

.card-content-image img {
    width: 100%;
}

.card-content-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-content-group h6 {
    color: var(--color-primary-p500);
}

.card-content-group p {
    color: var(--color-neutral-n300);
}