
/* global style start */
:root {
    /* font */
    --primary_font: 'Syne', sans-serif;
    --secondary_font: 'Sora', sans-serif;
    /* color */
    --primary_color: #00d4ff;
    --secondary_color: #16213e;
    --default_color: #FFFFFF;
    --primary_text_color: #F0F0F0;
    --secondary_text_color: rgba(15, 52, 96, 0.40);
    /* text shade */
    --primary_text_shade: #999999;
    --secondary_text_shade: rgba(240, 240, 240, 0.40);
    /* shade bg */
    --primary_bg: rgba(0, 212, 255, 0.04);
    /* border */
    --primary_radius: 8px;
    --secondary_radius: 4px;
}

html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
main {
    margin-top: 0;
    padding-top: 0;
}
section {
    padding: 100px 0px;
}
/* selection */
::selection {
    color: var(--default_color);
    background: var(--primary_color);
}
/* selection */
/* typography */
h1,h2,h3,h4,h5,h6 {
    color: var(--primary_text_color);
    font-family: var(--primary_font);
    font-weight: 600;
    text-transform: capitalize;
}
h2 {
    font-size: 42px;
    margin-bottom: 54px;
}
h2 span {
    color: var(--primary_color);
}
h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
h3 span {
    color: var(--primary_color);
}
.d2c_sub_title::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 3px solid var(--primary_color);
    background: transparent;
    border-radius: 50px;
    position: absolute;
    top: -14px;
    left: -6px;
}
h4 {
    color: var(--primary_color);
    font-size: 18px;
    font-weight: 700;
}
p {
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
    font-size: 15px;
    font-weight: 400;
}
a {
    text-decoration: none;
}
img {
    object-fit: cover;
}
/* button */
.btn {
    color: var(--secondary_color);
    font-family: var(--secondary_font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--primary_color);
    border-radius: var(--primary_radius);
    border: 1px solid var(--primary_color);
    padding: 11px 35px 10px;
    transition: 0.4s all;
}
.btn:hover {
    color: var(--primary_color);
    background: var(--secondary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
.btn.active {
    color: var(--primary_color);
    background: var(--secondary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}

/* global style end */

/* preloader start */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary_color);
    z-index: 9999;
    transition: opacity 2.5s ease;
    opacity: 1;
}
.preloader.hide {
    opacity: 0;
    pointer-events: none;
}
.preloader img {
    max-width: 120px;
    max-height: 50px;
}
/* preloader end */

/* Navbar Start */
.navbar-brand {
    max-width: 180px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.d2c_navbar.scrolled .navbar-brand {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.d2c_navbar {
    padding: 22px 0px;
    background: transparent !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(0px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}
.d2c_navbar .container {
    background: transparent !important;
}
.d2c_navbar .navbar {
    background: transparent !important;
}
.d2c_navbar .navbar-collapse {
    background: transparent !important;
}
.d2c_navbar .navbar-nav {
    background: transparent !important;
}
.d2c_navbar.scrolled {
    position: fixed !important;
    background: var(--secondary_color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
.d2c_navbar .navbar-nav .nav-item {
    margin: 5px 12px;
    display: flex;
    align-items: center;
}
.d2c_navbar .navbar-nav .nav-item:last-child {
    margin-right: 45px;
}
.d2c_navbar .navbar-nav .nav-link {
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    padding: 0;
    transition: .4s all ease;
}
.d2c_navbar .navbar-nav .nav-link:hover {
    color: var(--primary_color);
    transition: .4s all ease;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--primary_color) !important;
}
/* Nav Item Show from Side */
body .d2c_mobile_view {
    position: fixed;
    height: 100vh;
    inset: 0;
    opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
    width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
    margin-right: 0;
}
.d2c_mobile_view .show_width {
    max-width: 14.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px;
    top: 0;
    transition: 0.5s;
    padding: 20px 15px;
    background-color: var(--secondary_color);
    overflow: scroll;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.d2c_mobile_view.show .show_width {
    right: 0;
    transition: 0.5s;
}
.hide_width {
    max-width: 15.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px !important;
    top: 0;
    transition: 0.5s !important;
    padding: 20px 15px;
    background-color: var(--primary_bg);
    overflow: scroll;
    z-index: 9999;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    border: 1px solid var(--primary_shade);
    color: var(--primary_text_color);
    padding: 5px 10px;
    width: 44px;
    margin-left: 10px;
    transition: .4s all ease;
}
.navbar-toggler:hover {
    background: transparent;
    transition: .4s all ease;
}
.d2c_cross_btn {
    width: auto;
    border: none;
}
@media only screen and (min-width:991px) {
    body .d2c_mobile_view {
        opacity: 0;
        transition: .5s;
    }
}
/* Navbar End */

/* hero start */
.d2c_hero_bg {
    background: linear-gradient(180deg, rgba(18, 24, 32, 0.40) 0%, rgba(18, 24, 32, 0.79) 80.96%, #121820 100%), url(../images/hero_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}
.d2c_hero_wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}
.d2c_hero_wrapper h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
.d2c_hero_wrapper h1 span {
    font-weight: 700;
    color: var(--primary_color);
}
.d2c_hero_wrapper p {
    margin-bottom: 32px;
}
.d2c_hero_logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}
/* hero end */

/* about section start */
.d2c_about_wrapper {
    padding: 190px 0px 100px;
    background: var(--secondary_color);
}
/* about section end */

/* partner section start */
.d2c_partner_wrapper {
    background: var(--secondary_color);
    padding: 100px 0px;
    overflow-x: hidden;
}
/* partner section end */

.d2c_shade_bg_wrapper {
    background: var(--primary_bg);
    background-image: url(../images/shade_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

/* service section start */
.d2c_service_wrapper h3 {
    color: var(--secondary_color);
}
.d2c_service_wrapper h2 {
    color: var(--secondary_color);
}
.d2c_service_wrapper p {
    color: var(--secondary_text_color);
    margin-bottom: 20px;
}
.d2c_service_wrapper .d2c_card_wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.10);
    transition: 0.4s all;
}
.d2c_icon_wrapper {
    background: var(--primary_color);
    box-shadow: -7px 20px 16px 0px rgba(103, 76, 174, 0.20);
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.4s all;
}
.d2c_icon_wrapper i {
    font-size: 32px;
    color: var(--default_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper h3 {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper p {
    color: var(--primary_text_shade);
    transition: 0.4s all;
    margin-bottom: 0;
}
.d2c_service_wrapper .d2c_card_wrapper:hover {
    background: var(--primary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover .d2c_icon_wrapper {
    background: var(--primary_text_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover .d2c_icon_wrapper i {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover h3 {
    color: var(--secondary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover p {
    color: var(--primary_text_color);
    transition: 0.4s all;
}
/* service section end */

/* features section start */
.d2c_feature_wrapper {
    padding: 190px 0px 100px;
}
.d2c_feature_wrapper h3 {
    color: var(--default_color);
}
.d2c_feature_wrapper h2 {
    color: var(--secondary_color);
}
.d2c_feature_wrapper p {
    color: var(--secondary_text_color);
    margin-bottom: 20px;
}
/* features section end */

/* contact section start */
.d2c_contact_wrapper {
    background: var(--secondary_color);
}
.form-label {
    color: var(--primary_text_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-label span {
    color: var(--primary_color);
}
.form-control {
    background: rgba(0, 212, 255, 0.02);
    color: var(--primary_text_color) !important;
    font-family: var(--secondary_font);
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.40);
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
    margin-bottom: 20px;
}
.form-control:focus {
    background: rgba(0, 212, 255, 0.02);
    box-shadow: none;
    border: 1px solid rgba(0, 212, 255, 0.40);
    color: var(--primary_text_color);
}
textarea {
    margin-bottom: 25px !important;
}
/* contact section end */

/* footer section start */
.d2c_footer_wrapper {
    padding: 100px 0px 30px;
    background: linear-gradient(0deg, rgba(18, 24, 32, 0.80) 0%, rgba(18, 24, 32, 0.80) 100%), url(../images/footer_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_footer_logo {
    max-width: 300px;
}
.d2c_footer_wrapper p {
    margin-bottom: 32px;
}
.d2c_footer_wrapper ul {
    list-style-type: none;
}
.d2c_footer_wrapper ul li  {
    margin-right: 20px;
}

.d2c_footer_wrapper li a {
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
    font-size: 15px;
    font-weight: 400;
    transition: 0.4s all;
}
.d2c_footer_wrapper li a:hover {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_company_info a i {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: rgba(0, 212, 255, 0.40);
    border: 1px solid rgba(0, 212, 255, 0.40);
    background: rgba(0, 212, 255, 0.02);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: 0.4s all;
}
.d2c_company_info li a:hover i {
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
.d2c_footer_wrapper h3 {
    margin-bottom: 40px;
}

/* copy */
.d2c_copy_wrapper {
    padding: 60px 0px 0px;
    position: relative;
}
.d2c_copy_wrapper h4 {
    color: var(--primary_text_color);
    font-size: 18px;
    font-weight: 500;
}
.d2c_copy_wrapper h4 a {
    font-weight: 700;
    color: var(--primary_text_color);
    transition: 0.4s all;
}
.d2c_copy_wrapper h4 a:hover {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_copy_wrapper::before {
    content: '';
    width: 100%;
    border-top: 1px solid rgba(240, 240, 240, 0.10);
    position: absolute;
    top: 30px;
    left: 0;
}
/* footer section end */

/* Scroll Button Start */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#scrollBtn.show {
    display: block;
}
#scrollBtn a i {
    background: var(--primary_color);
    font-size: 20px;
    color: var(--secondary_color);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9999;
    bottom: 3%;
    right: 5%;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary_color);
}
#scrollBtn a i:hover {
    color: var(--primary_color);
    background: var(--secondary_color);
    border: 2px solid var(--primary_color);
    transition: all ease 0.4s;
}
/* Scroll Button End */

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes for staggered animations */
.animation-delay-100 {
    transition-delay: 0.1s;
}

.animation-delay-200 {
    transition-delay: 0.2s;
}

.animation-delay-300 {
    transition-delay: 0.3s;
}

.animation-delay-400 {
    transition-delay: 0.4s;
}

.animation-delay-500 {
    transition-delay: 0.5s;
}

.animation-delay-600 {
    transition-delay: 0.6s;
}

/* Timeline Styles for Objetivos */
.objetivos-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    height: auto;
    min-height: auto;
    overflow: visible;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    margin: 0 auto;
    visibility: visible;
    opacity: 1;
    max-width: 900px;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: rgba(0, 212, 255, 0.3);
    transform: translateX(-50%);
}

.timeline > li {
    position: relative;
    margin-bottom: 10px;
    min-height: 100px;
}

.timeline > li:after,
.timeline > li:before {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline-image {
    position: absolute;
    left: 54.5%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    z-index: 100;
    border: 3px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary_color), var(--secondary_color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    visibility: visible;
    opacity: 1;
    margin-left: -40px;
}

.timeline-number {
    color: var(--default_color);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    font-family: var(--primary_font);
}

.timeline > li .timeline-panel {
    width: calc(50% - 50px);
    float: left;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-right: 50px;
    visibility: visible;
    opacity: 1;
    display: block;
}

.timeline > li .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid rgba(0, 212, 255, 0.2);
    border-right: 0 solid rgba(0, 212, 255, 0.2);
    border-bottom: 15px solid transparent;
    content: " ";
}

.timeline > li .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid rgba(0, 212, 255, 0.1);
    border-right: 0 solid rgba(0, 212, 255, 0.1);
    border-bottom: 14px solid transparent;
    content: " ";
}

.timeline > li.timeline-inverted .timeline-panel {
    float: right;
    margin-left: 50px;
    margin-right: 0;
}

.timeline > li.timeline-inverted .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
    border-left-color: rgba(0, 212, 255, 0.2);
    border-right-color: rgba(0, 212, 255, 0.2);
}

.timeline > li.timeline-inverted .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
    border-left-color: rgba(0, 212, 255, 0.1);
    border-right-color: rgba(0, 212, 255, 0.1);
}

.timeline-body {
    margin: 0;
}

.timeline-body p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .objetivos-container {
        padding: 0 10px;
        max-width: 100%;
    }

    .timeline {
        max-width: 100%;
        padding: 0 5px;
    }

    .timeline:before {
        left: 35px;
        transform: none;
    }

    .timeline > li {
        margin-bottom: 40px;
        min-height: auto;
        padding-left: 0;
    }

    .timeline-image {
        width: 60px;
        height: 60px;
        left: 30px;
        transform: translateX(-50%);
        margin-left: 0;
        position: absolute;
        top: 0;
    }

    .timeline-number {
        font-size: 1.1rem;
    }

    .timeline > li .timeline-panel {
        width: calc(100% - 90px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        float: none !important;
        margin-top: 0;
        margin-bottom: 0;
        clear: both;
    }

    .timeline > li.timeline-inverted .timeline-panel {
        margin-left: 80px !important;
        margin-right: 0 !important;
        float: none !important;
        clear: both;
    }

    .timeline > li .timeline-panel:before,
    .timeline > li .timeline-panel:after {
        display: none;
    }

    .timeline-body p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .objetivos-container {
        padding: 0 5px;
    }

    .timeline {
        padding: 0 5px;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-image {
        width: 50px;
        height: 50px;
        left: 25px;
        transform: translateX(-50%);
    }

    .timeline-number {
        font-size: 1rem;
    }

    .timeline > li .timeline-panel {
        width: calc(100% - 80px);
        margin-left: 70px !important;
        padding: 15px;
        clear: both;
    }

    .timeline > li.timeline-inverted .timeline-panel {
        margin-left: 70px !important;
        clear: both;
    }

    .timeline-body p {
        font-size: 0.9rem;
    }
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}