/* Home */
.home-banner {
    min-height: 960px;
    display: flex;
    justify-content: center;
    position: relative;
}

.home-banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.home-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-banner .home-banner-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    margin-top: 580px;
}

.home-banner h1 {
    font-size: 50px;
    font-weight: 400;
    line-height: 68px;
    text-align: center;
    color: #fff;
    max-width: 993px;
    margin: 0 auto;
}

.home-banner h1 strong {
    font-weight: 700;
}

.home-banner-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 24px;
}

.home-banner-logo {
    position: absolute;
    left: 14%;
    bottom: -124px;
    z-index: 3;
}

/* We are CEABS */
.we-are-ceabs {
    min-height: 1100px;
    background-image: 
    linear-gradient(rgba(238, 238, 239, 1), rgba(238, 238, 239, 0.4)), url("/assets/images/we-are-ceabs-bg.gif");
    background-size: cover;
    background-position: center;
     background-color: rgba(238, 238, 239, 0.75);
    background-blend-mode: color-dodge;
}

.we-are-ceabs h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: var(--color-primary);
    padding-top: 300px;
    margin-bottom: 16px;
    transform: translate(80px, -80px);
}

.we-are-ceabs img {
    transform: translate(80px, -80px);
}

.we-are-ceabs p {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #000000;
    margin-top: 40px;
    max-width: 445px;
    transform: translate(80px, 40px);
    transition-delay: 0.2s;
}

.we-are-ceabs h2,
.we-are-ceabs img,
.we-are-ceabs p {
    opacity: 0;
    transition: 
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.we-are-ceabs.is-visible h2,
.we-are-ceabs.is-visible img,
.we-are-ceabs.is-visible p {
    opacity: 1;
    transform: translate(0, 0);
}

/* Discover */
.discover-wrapper {
    position: relative;
    margin-top: -135px;
    overflow: visible;
}

.discover {
    position: relative;
    min-height: 1482px;
    margin-top: -135px;
    background: radial-gradient(circle at center, #004FD0, #002B72);
    overflow: hidden;
    clip-path: polygon(0 0, 675px 0, 810px 120px, 100% 120px, 100% 100%, 810px 100%, 675px 1360px, 0 1360px);
}

.discover::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/soluctions-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.discover > * {
    position: relative;
    z-index: 1;
}

.discover-item {
    --entry-delay: 0s;
    width: 100%;
    max-width: 408px;
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 37px;
    margin-bottom: 24px;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 1.2s ease var(--entry-delay),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--entry-delay),
        background-color 0.25s ease 0s,
        border-color 0.25s ease 0s;
    z-index: 2;
}

.discover-item:first-child {
    margin-top: 346px;
}

.discover-item p,
.discover-item img {
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease;
}

.discover-item:hover {
    background-color: #0030811A;
    border-color: #345ea4;
}

.discover-item:hover p {
    transform: translateX(12px);
}

.discover-item:hover img {
    transform: translateX(-12px);
}

.discover-item p {
    font-size: 22px;
    line-height: 32px;
    color: #ffffff;
    max-width: 220px;
}

.discover-chart {
    position: absolute;
    top: 8%;
    right: -12%;
    opacity: 0;
    transform: translateY(-70px);
    transition:
        opacity 1.4s ease,
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-vehicles {
    position: absolute;
    top: 22.8%;
    right: -22%;
    opacity: 0;
    transform: translateX(140px);
    transition:
        opacity 1.4s ease,
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-cta {
    text-align: center;
    margin-top: 152px;
}

.discover-cta p {
    font-size: 22px;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 40px;
}

.discover-cta .discover-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    gap: 24px;
    z-index: 5;
}

.discover.is-visible .discover-item {
    opacity: 1;
    transform: translateY(0);
}

.discover.is-visible .discover-item:nth-child(1) {
    --entry-delay: 0.1s;
}

.discover.is-visible .discover-item:nth-child(2) {
    --entry-delay: 0.45s;
}

.discover.is-visible .discover-item:nth-child(3) {
    --entry-delay: 0.8s;
}

.discover.is-visible .discover-chart {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.discover.is-visible .discover-vehicles {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.65s;
}

.discover-logo {
    position: absolute;
    left: 12%;
    bottom: 25px;
    z-index: 3;
    pointer-events: none;
}

.discover-logo-loop {
    position: absolute;
    right: 18%;
    bottom: 20%;
    z-index: 1;
}

/* Impact Section */
.impact {
    padding: 273px 0 353px 0;
}

.impact-content-title h2,
.areas-content-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    background: linear-gradient(90deg, #0047BB 0%, #0061FF 70%, #0061FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 40px;
}

.impact-content-title,
.areas-content-title {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.impact-headline {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #000000;
    text-align: center;
    max-width: 797px;
    margin: 0 auto 120px auto;
}

.impact-headline strong {
    font-size: 50px;
    font-weight: 700;
}

.vertical-scroll-mobile-list {
    display: none;
}

/* Clients */
.clients {
    padding-top: 320px;
    padding-bottom: 320px;
    background-image: url('/assets/images/clients-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.clients-logo-loop {
    position: absolute;
    top: 9%;
    right: 10%;
}

.clients h2 {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.clients strong {
    font-size: 50px;
    font-weight: 700;
}

.clients-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 24px;
    margin-bottom: 110px;
}

.clients-content {
    max-width: 920px;
    padding: 52px 50px;
    margin: 0 auto 110px auto;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.clients-content h3 {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #ffffff;
    text-align: center;
}

.clients-content strong {
    font-size: 50px;
    font-weight: 700;
}

.clients-logos {
    overflow: hidden;
    height: 54px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

.clients-logos-carrosel {
    display: flex;
    width: max-content;
    animation: scroll 16s linear infinite;
}

.clients-logos-carrosel img {
    height: 60px;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    display: block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.clients-logo {
    position: absolute;
    right: 14%;
    bottom: -105px;
}

/* Solutions */
.solutions {
    position: relative;
    height: var(--solutions-height, 2500px);
    padding: 0;
    overflow: visible;
}

.solutions-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.solutions .solutions-headline {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #000000;
    text-align: center;
    margin-bottom: 120px;
}

.solutions .solutions-headline strong {
    font-size: 50px;
    font-weight: 700;
}

.solutions .solutions-scroll {
    width: 100%;
    overflow: hidden;
}

.solutions .solutions-content {
    display: flex;
    gap: 32px;
    width: max-content;
    will-change: transform;
    padding: 0 32px;
}

.solutions-content-item {
    height: 502px;
    width: 996px;
    min-width: 996px;
    max-width: 996px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 36px;
    background-color: #00000008;
    border: 1.5px solid #0000001A;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.solutions-content-item-image {
    width: 100%;
    max-width: 409px;
}

.solutions-content-item-body {
    width: 100%;
    max-width: calc(100% - 409px);
}

.solutions-content-item-body {
    max-width: 445px;
}

.solutions-content-item-body h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 64px;
    background: linear-gradient(90deg, #0047BB 0%, #0061FF 70%, #0061FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 24px;
}

.solutions-content-item-body p {
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 68px;
}

/* Response */
.response {
    padding-top: 200px;
    background: linear-gradient(#FFFFFF 0%, #EEEFF0 5%, #0F1E37 55%);
}

.response .container {
    position: relative;
}

.response .response-logo-loop {
    position: absolute;
    right: 0;
    top: -55px;
}

.response h2 {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 134px;
}

.response h2 strong {
    font-size: 50px;
    font-weight: 700;
}

.response .response-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 470px;
}

.response .response-content-image {
    height: 525px;
    width: 100%;
    max-width: 642px;
    position: relative;
}

.response .response-content-image .response-content-image-bigger {
    position: absolute;
    top: 0;
    left: 0;
}

.response .response-content-image .response-content-image-smaller {
    position: absolute;
    bottom: 0;
    right: 155px;
}

.response .response-content-image .response-content-image-helicopter {
    position: absolute;
    bottom: 64px;
    right: 0;
}

.response .response-content-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 408px;
    gap: 16px;
}

.response .response-content-list-item {
    --entry-delay: 0s;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 37px;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(55px);
    transition:
        opacity 1.2s ease var(--entry-delay),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--entry-delay),
        background-color 0.25s ease 0s,
        border-color 0.25s ease 0s;
}

.response .response-content-list-item p,
.response .response-content-list-item img {
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease;
}

.response .response-content-list-item:hover {
    background-color: #57606e33;
}

.response .response-content-list-item:hover p {
    transform: translateX(12px);
}

.response .response-content-list-item:hover img {
    transform: translateX(-12px);
}

.response .response-content-list-item p {
    font-size: 22px;
    line-height: 32px;
    color: #ffffff;
}

.response .response-content-image-bigger,
.response .response-content-image-smaller,
.response .response-content-image-helicopter,
.response .response-content-list-item {
    opacity: 0;
    transition:
        opacity 1.3s ease,
        transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.response .response-content-image-bigger {
    transform: translate(70px, 70px);
}

.response .response-content-image-smaller {
    transform: translate(-70px, -70px);
}

.response .response-content-image-helicopter {
    transform: translateX(-160px);
}

.response .response-content.is-visible .response-content-image-bigger,
.response .response-content.is-visible .response-content-image-smaller,
.response .response-content.is-visible .response-content-image-helicopter,
.response .response-content.is-visible .response-content-list-item {
    opacity: 1;
    transform: translate(0, 0);
}

.response .response-content.is-visible .response-content-image-bigger {
    --entry-delay: 0.1s;
}

.response .response-content.is-visible .response-content-image-smaller {
    --entry-delay: 0.1s;
}

.response .response-content.is-visible .response-content-list-item:nth-child(1) {
    --entry-delay: 0.25s;
}

.response .response-content.is-visible .response-content-list-item:nth-child(2) {
    --entry-delay: 0.4s;
}

.response .response-content.is-visible .response-content-list-item:nth-child(3) {
    --entry-delay: 0.55s;
}

.response .response-content.is-visible .response-content-list-item:nth-child(4) {
    --entry-delay: 0.7s;
}

.response .response-content.is-visible .response-content-list-item:nth-child(5) {
    --entry-delay: 0.85s;
}

.response .response-content.is-visible .response-content-image-helicopter {
    --entry-delay: 0.8s;
}

.response-logo {
    position: absolute;
    left: 7%;
    transform: translateY(-400px);
}

.response-chart {
    width: 100%;
    padding: 60px 20px 82px 20px;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    border-radius: 16px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 1.1s ease,
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.response-chart.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.response-chart h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.response-chart-data h3 {
    font-size: 100px;
    font-weight: 800;
    line-height: 110px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.response-chart-data p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.response-chart-container {
    --max: 700;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    height: 179px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid #bbb;
}

.response-chart-bar {
    position: relative;
    width: 95px;
    height: calc((var(--value) / var(--max)) * 100%);
    background: linear-gradient(#FFFFFF 0%, transparent 100%);
    /* animation: grow 1s ease-out forwards; */
    /* transform-origin: bottom; */
}

/* @keyframes grow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
} */

.response-chart-container .value {
    position: absolute;
    top: -45px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #FFFFFF;
}

.response-chart-container .label {
    position: absolute;
    bottom: -44px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
}

.response-chart-cta {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 160px;  
}

.response-chart-cta p {
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.response-chart-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Platform */
.platform {
    padding-top: 160px;
    background-color: #0F1E37;
    margin-top: -1px;
    position: relative;
}

.platform:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 145px;
    width: 58%;
    z-index: 2;
    background-color: #FFFFFF;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.platform::after {
    content: '';
    height: 268px;
    width: 279px;
    position: absolute;
    bottom: -170px;
    left: 130px;
    z-index: 3;
    background-image: url(/assets/images/home-aspas-dark.png);
}

.platform-mock {
    position: relative;
    display: flex;
    justify-content: center;
    transition-delay: 0.1s;
    z-index: 2;
}

.platform-mock,
.platform-headline {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 1.1s ease,
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-smartphone {
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 2;
}

.platform-video {
    position: absolute;
    max-width: 70%;
    top: 7%;
    height: 492px;
}

.platform-logo {
    position: absolute;
    top: 160px;
    right: 12%;
}

.platform-headline {
    transition-delay: 0.3s;
}

.platform.is-visible .platform-mock,
.platform.is-visible .platform-headline {
    opacity: 1;
    transform: translateY(0);
}

.platform-headline h2 {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.platform-headline h2 strong {
    font-size: 50px;
    font-weight: 700;
}

.platform-buttons {
    display: flex;
    gap: 33px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 115px;
}

.platform .platform-bg {
    min-height: 1190px;
    width: 100%;
    background-image:
        linear-gradient(
            to bottom,
            #0F1E37 0%,
            rgba(15, 30, 55, 0.85) 8%,
            rgba(15, 30, 55, 0) 22%
        ),
        url('/assets/images/platform-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.platform .platform-bg-logo {
    position: absolute;
    right: 15%;
    bottom: 2%;
}

.platform .platform-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 408px;
    gap: 16px;
}

.platform .platform-list-item {
    --entry-delay: 0s;
    min-height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 37px;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition:
        opacity 1.2s ease var(--entry-delay),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--entry-delay),
        background-color 0.25s ease 0s,
        border-color 0.25s ease 0s;
}

.platform .platform-list-item p,
.platform .platform-list-item img {
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease;
}

.platform .platform-list-item:hover {
    background-color: #57606e33;
}

.platform .platform-list-item:hover p {
    transform: translateX(12px);
}

.platform .platform-list-item:hover img {
    transform: translateX(-12px);
}

.platform .platform-list-item p {
    font-size: 22px;
    line-height: 32px;
    color: #ffffff;
    max-width: 210px;
}

.platform .platform-list-item:first-of-type p {
    max-width: 235px;
}

/* Areas */
.areas {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding-top: 178px;
    padding-bottom: 176px;
    overflow: hidden;
}

.areas-logo {
    position: absolute;
    top: 70px;
    left: 130px;
}

.areas .areas-headline {
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #000000;
    text-align: center;
    margin-bottom: 188px;
    position: relative;
}

.areas .areas-headline strong {
    font-size: 50px;
    font-weight: 700;
}

/* Intelligence */
.intelligence {
    min-height: 720px;
    width: 100%;
    padding-top: 137px;
    padding-bottom: 68px;
    position: relative;
    background-color: #0047BB;
    background-image: url('/assets/images/intelligence-bg.svg');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    clip-path: polygon(0% 10%, 8% 10%, 15% 0, 85% 0, 92% 10%, 100% 10%, 100% 100%, 0 100%);
    overflow: hidden;
}

.intelligence .container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.intelligence h2 {
    width: 100%;
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    color: #ffffff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.intelligence .intelligence-content {
    width: 100%;
    max-width: 818px;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 33px 44px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.intelligence .intelligence-content h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
}

.intelligence .intelligence-breathe {
    position: absolute;
    bottom: -20px;
    z-index: 1;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Contact */
.contact {
    display: flex;
    min-height: 797px;
    background-image: url('/assets/images/contato-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form {
    width: 100%;
    max-width: 490px;
    padding: 24px 34px;
    margin-left: auto;
    background-color: #FFFFFF66;
    border: 1px solid #FFFFFF66;
    border-radius: 12px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2;
    position: relative;
}

.contact-form p {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.contact-form form {
    text-align: right;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    height: 50px;
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #F8F8F8;
    border: 1px solid #E3E3E4;
    border-radius: 4px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #45484C;
}

.contact-form input[type="submit"] {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    width: 130px;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin-bottom: 0;
    color: #ffffff;
}

.contact-form input[type="submit"]:hover {
    background-color: var(--color-primary-hover);
}

.contact-form textarea {
    min-height: 150px;
}

/* Vertical Scroll Slider */
.vertical-scroll-slider {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.vertical-scroll-sticky {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 80px 34% 60%;
    align-items: center;
    gap: 40px;
}

.vertical-scroll-order {
    height: 84svh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.vertical-scroll-order p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1;
}

.vertical-scroll-order-zero {
    display: inline-block;
}

.vertical-scroll-order-number-wrap {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 34px;
    overflow: hidden;
    vertical-align: middle;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 28%,
        #000 72%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 28%,
        #000 72%,
        transparent 100%
    );
}

.vertical-scroll-order-number {
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-block;
    transform: translateY(-50%);
}

.vertical-scroll-order-line {
    height: 100%;
    width: 1px;
    border-right: 1px dashed var(--color-primary);
}

.vertical-scroll-texts {
    position: relative;
    height: 420px;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
}

.vertical-scroll-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(260px);
    pointer-events: none;
}

.vertical-scroll-images {
    position: relative;
    width: 100%;
    height: 84vh;
    height: 84svh;
    max-height: 840px;
    min-height: 580px;
    border-radius: 12px;
    overflow: hidden;
}

.vertical-scroll-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    pointer-events: none;
}

@media (max-width: 1380px) {
    .home-banner-logo,
    .response-logo {
        width: 120px;
        left: 2%;
        bottom: -55px;
    }

    .discover-logo {
        width: 15%;
        left: 2%;
        bottom: 50px;
    }
    
    .clients-logo {
        width: 15%;
        right: 2%;
        bottom: -30px;
    }

    .discover-logo-loop {
        right: 2%;
    }

}

@media (max-width: 1060px) {
    .response .response-content {
        flex-direction: column;
        margin-bottom: 100px;
    }

    .discover-logo-loop {
        bottom: 8%;
    }

    .platform-video {
        height: auto;
        max-width: 76%;
        top: 12%;
    }
}

@media (max-width: 768px) {
    .home-banner .home-banner-content {
        margin-top: 500px;
    }

    .discover {
        clip-path: polygon(0 0, 32% 0, 70% 120px, 100% 120px, 100% 100%, 70% 100%, 32% 1360px, 0 1360px);
    }

    .we-are-ceabs {
        min-height: 800px;
    }

    .we-are-ceabs h2 {
        font-size: 54px;
        font-weight: 700;
        line-height: 62px;
        padding-top: 160px;
    }

    .discover-item {
        max-width: 100%;
    }

    .discover .discover-chart,
    .discover .discover-vehicles {
        position: inherit;
        top: auto;
        right: auto;
    }

    .discover-item:first-child {
        margin-top: 230px;
    }

    .discover-cta {
        margin-top: 50px;
    }

    .discover-logo {
        bottom: 80px;
    }

    .discover-logo-loop {
        bottom: 4%;
    }

    .clients-logo-loop {
        right: 0;
    }

    .response .response-logo-loop {
        display: none;
    }

    .solutions .solutions-content {
        flex-direction: column;
        gap: 64px;
        width: 100%;
        padding: 0;
    }

    .solutions {
        height: auto;
        padding: 80px 20px;
    }

    .solutions .solutions-headline {
        margin-bottom: 60px;
    }

    .solutions-sticky {
        position: inherit;
    }

    .solutions-content-item {
        height: auto;
        width: 100%;
        min-width: 100%;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .solutions-content-item-body {
        text-align: center;
    }

    .solutions-content-item-body h3 {
        font-size: 35px;
        line-height: 54px;
    }

    .vertical-scroll-sticky {
        display: none;
    }

    .vertical-scroll-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .vertical-scroll-mobile-item {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .vertical-scroll-mobile-item img {
        width: 100%;
        height: 400px;
        display: block;
        border-radius: 12px;
        object-fit: cover;
    }

    .vertical-scroll-mobile-item .impact-content-title,
    .vertical-scroll-mobile-item .areas-content-title {
        max-width: 100%;
        align-items: center;
    }

    .vertical-scroll-mobile-item .impact-content-title h2,
    .vertical-scroll-mobile-item .areas-content-title h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
        text-align: center;
    }

    .impact {
        padding: 100px 0;
    }

    .impact-headline {
        margin-bottom: 64px;
    }

    .impact-headline,
    .clients h2,
    .clients-content h3,
    .solutions .solutions-headline,
    .response h2,
    .platform-headline h2,
    .intelligence h2,
    .areas .areas-headline {
        font-size: 38px;
        line-height: 46px;
    }

    .impact-headline strong,
    .clients h2 strong,
    .clients-content h3 strong,
    .solutions .solutions-headline strong,
    .response h2 strong,
    .platform-headline h2 strong,
    .intelligence h2 strong,
    .areas .areas-headline strong {
        font-size: 36px;
    }

    .areas .areas-headline,
    .response h2 {
        margin-bottom: 80px;
    }

    .response-chart-data h3 {
        font-size: 80px;
        line-height: 90px;
    }

    .response-chart-container {
        gap: 20px;
    }

    .areas {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .intelligence {
        clip-path: polygon(0% 10%, 4% 10%, 18% 0, 80% 0, 96% 10%, 100% 10%, 100% 100%, 0 100%);
    }

    .impact-content-title, .areas-content-title {
        max-width: 100%;
    }

    .platform:before {
        clip-path: polygon(0% 0%, 60% 0%, 100% 100%, 0% 100%);
    }

    .platform-smartphone {
        max-width: 140px;
    }

    .platform::after {
        height: 160px;
        width: 160px;
        left: 30px;
        bottom: -60px;
        background-size: 160px;
        background-repeat: no-repeat;
    }
}

@media (max-width: 650px) {
    .home-banner {
        min-height: 660px;
    }

    .home-banner .home-banner-content {
        margin-top: 200px;
    }

    .response .response-content-image .response-content-image-smaller {
        right: 0;
    }

    .platform .platform-list {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .we-are-ceabs .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .response .response-content-image {
        height: 450px;
    }

    .response .response-content.is-visible .response-content-image-bigger {
        width: 60%;
    }

    .response .response-content.is-visible .response-content-image-smaller {
        width: 50%;
    }

    .response-chart-container .value {
        top: -25px;
        font-size: 16px;
    }

    .clients {
        padding-bottom: 200px;
    }

    .clients-buttons,
    .clients-content {
        margin-bottom: 60px;
    }

    .clients-logos-carrosel {
        animation: scroll 20s linear infinite;
    }

    .clients-logos-carrosel img {
        height: auto;
    }

    .platform-smartphone {
        max-width: 80px;
    }

    .discover-logo,
    .discover-logo-loop,
    .clients-logo-loop,
    .platform .platform-bg-logo,
    .clients-logo {
        display: none;
    }

    .platform .platform-bg {
        padding-bottom: 200px;
    }

    .platform:before {
        width: 70%;
        clip-path: polygon(0% 0%, 45% 0%, 100% 100%, 0% 100%);
    }
}

@media (max-width: 480px) {
    .home-banner h1 {
        font-size: 40px;
        line-height: 58px;
    }

    .discover-logo {
        bottom: 95px;
    }

    .platform::after {
        content: none;
    }
}

@media (max-width: 420px) {
    .home-banner .home-banner-content {
        margin-top: 100px;
    }

    .we-are-ceabs h2 {
        padding-top: 100px;
    }

    .we-are-ceabs img {
        margin-top: 15px;
    }

    .response .response-content-image {
        height: 350px;
    }
}