/* Fontes Adicionadas */
@font-face {
    font-family: 'AutoTechno';
    src: url("../fonts/Auto-techno.ttf") format('truetype');
	font-display: swap;
}

@font-face {
    font-family: 'Automatic';
    src: url("../fonts/Automatic.otf") format('opentype');
	font-display: swap;
}
/* Ajustes */
.font-adjust {
	font-size: 1rem;
}

/* Spinner Start */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/* Spinner End */

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/* Button Start */
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
	font-size: 1.5rem;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/* Topbar Start */

/* Video Start */
.video-bg {
	width: 100%;
    height: 100%;
    object-fit: cover;
	display: block;
}

/* Navbar */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .navbar.navbar-expand-lg {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: var(--bs-white) !important;
        box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .08);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 10px;
        border-top: 1px solid rgba(0, 0, 0, .08);
        background: var(--bs-white);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
        width: auto;
    }

    .carousel-header,
    .bg-breadcrumb,
    .hero-header {
        margin-top: 85px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/* Carousel Hero Header Start */
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: none; /* Liga=flex / Desliga=none as Setas */
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex; 
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/* Carousel Hero Header End */

/* Single Page Hero Header Start */
.bg-breadcrumb {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--bs-dark);
    padding: 0;
    margin: 0;
}

.bg-breadcrumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.breadcrumb-center img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Oculta breadcrumb */
@media (max-width: 769px) {
    .bg-breadcrumb {
        display: none !important;
    }
}
@media (max-width: 769px) {
    .breadcrumb-center {
        display: none !important;
    }
}

/* Single Page Hero Header End */

/* About Start */
#sobre-devsprog {
	padding-top: 4rem;
}

.about .about-img {
    position: relative;
    margin-top: 30px;
    margin-left: 30px;
    padding-bottom: 30px;
    overflow: visible;
}

.about .about-img::before {
    content: "";
    position: absolute;
    top: -30px;
    right: 0;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: 30px;
    width: 10px;
    height: 100%;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 3.5;
    object-fit: cover;
    border-radius: 10px;
}

/* Tag superior */
.about .about-img .about-exp,
.about .about-img .about-miss {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -30px;
    margin-left: -30px;
    padding: 18px 22px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bs-white);
    border-radius: 10px;
    z-index: 2;
}

.about .about-img .about-exp {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.about .about-img .about-miss {
    background: var(--bs-dark);
    border: 1px solid var(--bs-dark);
}

.about .about-img.about-miss-theme::before,
.about .about-img.about-miss-theme::after {
    background: var(--bs-dark);
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-top: 20px;
        margin-left: 20px;
        padding-bottom: 20px;
    }

    .about .about-img::before {
        top: -20px;
    }

    .about .about-img::after {
        left: -20px;
        bottom: 20px;
    }

    .about .about-img .about-exp,
    .about .about-img .about-miss {
        margin-top: -20px;
        margin-left: -20px;
        padding: 14px 18px;
        font-size: 22px;
        max-width: calc(100% - 10px);
        word-break: break-word;
    }

    .about .about-img img {
        aspect-ratio: 4 / 5;
    }
}

/* About text retrátil/expansível */
.about-expandable {
    position: relative;
    outline: none;
}

.about-expandable .about-text-wrap {
    position: relative;
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.about-expandable .about-text-content {
    position: relative;
    z-index: 1;
}

.about-expandable .about-text-content p {
    margin-bottom: 0;
    line-height: 1.8;
}

.about-expandable .about-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.96) 75%, rgba(255,255,255,1) 100%);
    transition: opacity 0.3s ease;
}

.about-toggle-btn {
    margin-top: 18px;
    border: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-toggle-btn:hover {
    background: var(--bs-secondary);
}

/* Expansão automática ao hover, foco ou classe ativa */
.about-expandable:hover .about-text-wrap,
.about-expandable:focus-within .about-text-wrap,
.about-expandable.is-expanded .about-text-wrap {
    max-height: 2550px;
}

.about-expandable:hover .about-fade,
.about-expandable:focus-within .about-fade,
.about-expandable.is-expanded .about-fade {
    opacity: 0;
}

/* Troca visual do botão */
.about-expandable:hover .about-toggle-btn,
.about-expandable:focus-within .about-toggle-btn,
.about-expandable.is-expanded .about-toggle-btn {
    background: var(--bs-secondary);
}

/* Tablet */
@media (max-width: 1199.98px) {
    .about-expandable .about-text-wrap {
        max-height: 300px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .about-expandable .about-text-wrap {
        max-height: 240px;
    }

    .about-expandable .about-text-content p {
        line-height: 1.7;
        font-size: 1rem;
    }

    .about-toggle-btn {
        width: 100%;
        max-width: 220px;
    }
}
/* About End */

/* Service Start */
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(190deg, #071b2f 0%, #0d2945 55%, #12385c 100%);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item .service-content a {
    color: var(--bs-dark);
}

.service-item .service-content p {
    color: var(--bs-body-color);
}

.service-item:hover .service-content a,
.service-item:hover .service-content p {
    color: var(--bs-white);
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/* Service End */

/* ===== DEVSPROG-SERVICES ===== */

.devsprog-services .service-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.devsprog-services .service-img {
    overflow: hidden;
}

.devsprog-services .service-img img {
    transition: 0.5s;
}

.devsprog-services .service-item:hover .service-img img {
    transform: scale(1.1);
}

.devsprog-services .service-title {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.devsprog-services .service-title-name {
    position: relative;
    z-index: 2;
}

.devsprog-services .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(100%);
    transition: 0.5s;
}

.devsprog-services .service-item:hover .service-content {
    transform: translateY(0);
}
/* ===== FIM DEVSPROG-SERVICES ===== */

/* =========================================================
   FOGUETE - BASE
   ========================================================= */
.hero-rocket-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: auto;
}

.hero-rocket-scene {
    /* tamanhos-base; os breakpoints abaixo substituem */
    --scene-width: 500px;
    --rocket-width: 430px;
    --launch-distance: -100vh;

    position: relative;
    width: min(100%, var(--scene-width));
    aspect-ratio: 0.76;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    isolation: isolate;
}

.hero-rocket-scene::before,
.hero-rocket-scene::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 0;
    transition: opacity .35s ease;
}

/* glow inferior */
.hero-rocket-scene::before {
    bottom: 2%;
    width: 88%;
    height: 34%;
    background: radial-gradient(
        circle,
        rgba(149, 223, 255, .40) 0%,
        rgba(89, 132, 255, .22) 42%,
        rgba(0, 0, 0, 0) 76%
    );
    filter: blur(30px);
    opacity: 1;
}

/* glow superior */
.hero-rocket-scene::after {
    top: 5%;
    width: 58%;
    height: 58%;
    background: radial-gradient(
        circle,
        rgba(120, 214, 255, .24) 0%,
        rgba(86, 130, 255, .10) 46%,
        rgba(0, 0, 0, 0) 78%
    );
    filter: blur(16px);
    opacity: 1;
}

/* -------------------------
   ESTADO INICIAL
   ------------------------- */
.hero-rocket-float {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: rocket-idle-float 4.2s ease-in-out infinite;
}

.hero-rocket-orbit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: rocket-idle-tilt 5.8s ease-in-out infinite;
}

.hero-rocket {
    position: relative;
    z-index: 3;
    width: var(--rocket-width);
    max-width: 100%;
    height: auto;
    transform-origin: 50% 82%;
    filter:
        drop-shadow(0 0 1.3rem rgba(93, 227, 255, .62))
        drop-shadow(0 0 3.2rem rgba(255, 255, 255, .22));
    animation: rocket-idle-vibrate .16s linear infinite;
}

/* chama */
.rocket-flame {
    position: absolute;
    left: 50%;
    bottom: clamp(1.2rem, 3vw, 1.8rem);
    transform: translateX(-50%);
    width: clamp(82px, 10vw, 120px);
    height: clamp(150px, 18vw, 215px);
    z-index: 2;
    border-radius: 0 0 50% 50%;
    background: radial-gradient(
        circle at 50% 8%,
        rgba(255, 255, 255, .98) 0 12%,
        rgba(174, 242, 255, .94) 18%,
        rgba(86, 196, 255, .84) 42%,
        rgba(70, 116, 255, .24) 72%,
        rgba(0, 0, 0, 0) 100%
    );
    filter: blur(8px);
    clip-path: polygon(50% 0%, 68% 16%, 82% 46%, 100% 100%, 0 100%, 18% 46%, 32% 16%);
    opacity: .96;
    animation: flame-idle .42s ease-in-out infinite alternate;
}

/* -------------------------
   PARTÍCULAS
   ------------------------- */
.rocket-particles {
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    z-index: 1;
    overflow: visible;
}

.rocket-particle,
.rocket-spark {
    position: absolute;
    left: 50%;
    bottom: clamp(2.8rem, 6vw, 4rem);
    border-radius: 999px;
    pointer-events: none;
    will-change: transform, opacity;
}

.rocket-particle {
    width: var(--size, 22px);
    height: var(--size, 22px);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, .95) 0 18%,
        rgba(167, 235, 255, .78) 36%,
        rgba(103, 170, 255, .42) 58%,
        rgba(80, 112, 255, 0) 100%
    );
    filter: blur(var(--blur, 3px));
    opacity: 0;
    animation: rocket-smoke var(--duration, 1.8s) ease-out forwards;
}

.rocket-spark {
    width: var(--spark-size, 4px);
    height: var(--spark-size, 4px);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 1) 0 25%,
        rgba(149, 248, 255, .95) 44%,
        rgba(52, 165, 255, .22) 78%,
        rgba(0, 0, 0, 0) 100%
    );
    box-shadow: 0 0 14px rgba(128, 229, 255, .55);
    animation: rocket-spark var(--spark-duration, .85s) linear forwards;
}

/* -------------------------
   ESTADO DE DECOLAGEM
   ------------------------- */
.hero-rocket-scene.is-launching .hero-rocket-float,
.hero-rocket-scene.is-launching .hero-rocket {
    animation: none !important;
}

.hero-rocket-scene.is-launching .hero-rocket-orbit {
    animation: rocket-launch-up 1.9s cubic-bezier(.18, .72, .14, 1) forwards !important;
}

.hero-rocket-scene.is-launching .hero-rocket {
    filter:
        drop-shadow(0 0 1.6rem rgba(93, 227, 255, .75))
        drop-shadow(0 0 3.8rem rgba(255, 255, 255, .30));
}

.hero-rocket-scene.is-launching .rocket-flame {
    animation: flame-launch .18s ease-in-out 8 alternate !important;
    opacity: 1;
}

/* -------------------------
   ESTADO DE RETORNO
   - volta sem tremor
   - volta sem glow
   - volta sem fumaça
   - apenas fade
   ------------------------- */
.hero-rocket-scene.is-returning::before,
.hero-rocket-scene.is-returning::after,
.hero-rocket-scene.is-settled::before,
.hero-rocket-scene.is-settled::after {
    opacity: 0;
}

.hero-rocket-scene.is-returning .rocket-flame,
.hero-rocket-scene.is-returning .rocket-particles,
.hero-rocket-scene.is-settled .rocket-flame,
.hero-rocket-scene.is-settled .rocket-particles {
    opacity: 0;
    visibility: hidden;
}

.hero-rocket-scene.is-returning .hero-rocket-float,
.hero-rocket-scene.is-returning .hero-rocket-orbit,
.hero-rocket-scene.is-returning .hero-rocket,
.hero-rocket-scene.is-settled .hero-rocket-float,
.hero-rocket-scene.is-settled .hero-rocket-orbit,
.hero-rocket-scene.is-settled .hero-rocket {
    animation: none !important;
    transform: none !important;
}

.hero-rocket-scene.is-returning .hero-rocket {
    filter: none !important;
}

.hero-rocket-scene.is-returning .hero-rocket-orbit {
    opacity: 0;
    animation: rocket-return-fade 1.35s ease forwards !important;
}

.hero-rocket-scene.is-settled .hero-rocket {
    filter: none !important;
}

/* -------------------------
   ANIMAÇÕES
   ------------------------- */
@keyframes rocket-idle-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
}

@keyframes rocket-idle-tilt {
    0%, 100% { transform: rotate(-1.2deg); }
    50% { transform: rotate(1.2deg); }
}

@keyframes rocket-idle-vibrate {
    0% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(.9px, .7px, 0); }
    50% { transform: translate3d(-.9px, -.7px, 0); }
    75% { transform: translate3d(.8px, -.6px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes flame-idle {
    0% {
        transform: translateX(-50%) scaleY(.94) scaleX(.94);
        opacity: .80;
    }
    100% {
        transform: translateX(-50%) scaleY(1.10) scaleX(1.07);
        opacity: 1;
    }
}

@keyframes rocket-smoke {
    0% {
        opacity: 1;
        transform: translate3d(-50%, 0, 0) scale(.38);
    }
    65% {
        opacity: .62;
    }
    100% {
        opacity: 0;
        transform: translate3d(
            calc(-50% + var(--drift, 0px)),
            var(--travel, -160px),
            0
        ) scale(1.95);
    }
}

@keyframes rocket-spark {
    0% {
        opacity: 1;
        transform: translate3d(-50%, 0, 0) scale(.82);
    }
    100% {
        opacity: 0;
        transform: translate3d(
            calc(-50% + var(--drift, 0px)),
            var(--travel, -120px),
            0
        ) scale(1.35);
    }
}

@keyframes rocket-launch-up {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
    14% {
        transform: translate3d(0, -22px, 0) scale(1.02);
        opacity: 1;
    }
    48% {
        transform: translate3d(0, calc(var(--launch-distance) * .38), 0) scale(.96);
        opacity: 1;
    }
    78% {
        transform: translate3d(0, calc(var(--launch-distance) * .72), 0) scale(.88);
        opacity: .98;
    }
    100% {
        transform: translate3d(0, var(--launch-distance), 0) scale(.78);
        opacity: 0;
    }
}

@keyframes flame-launch {
    0% {
        transform: translateX(-50%) scaleY(.95) scaleX(.92);
        filter: blur(7px);
    }
    100% {
        transform: translateX(-50%) scaleY(1.24) scaleX(1.14);
        filter: blur(10px);
    }
}

@keyframes rocket-return-fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* -------------------------
   BREAKPOINTS
   controle total do tamanho
   ------------------------- */
/* ultrawide */
@media (min-width: 1400px) {
    .hero-rocket-scene {
        --scene-width: 560px;
        --rocket-width: 500px;
    }
}

/* desktop grande */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-rocket-scene {
        --scene-width: 520px;
        --rocket-width: 460px;
    }
}

/* notebook / desktop normal */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-rocket-scene {
        --scene-width: 480px;
        --rocket-width: 420px;
    }
}

/* tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-rocket-scene {
        --scene-width: 400px;
        --rocket-width: 360px;
    }

    .rocket-flame {
        height: 175px;
    }
}

/* mobile grande */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-rocket-scene {
        --scene-width: 340px;
        --rocket-width: 300px;
    }

    .rocket-flame {
        width: 96px;
        height: 150px;
    }
}

/* mobile pequeno */
@media (max-width: 575.98px) {
    .hero-rocket-scene {
        --scene-width: 300px;
        --rocket-width: 260px;
    }

    .rocket-flame {
        width: 86px;
        height: 138px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-rocket-float,
    .hero-rocket-orbit,
    .hero-rocket,
    .rocket-flame,
    .rocket-particle,
    .rocket-spark {
        animation: none !important;
    }

    .hero-rocket,
    .hero-rocket-scene::before,
    .hero-rocket-scene::after {
        filter: none !important;
    }
}
/* =========================================================
   FOGUETE - FIM
   ========================================================= */

/* Products Start */
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}
/* Products End */

/* Blog Start */
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(135, 206, 235, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/* Blog End */

/* Footer Start */
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/* Footer End */

/* copyright Start */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

.text-footer {
	font-size: 13px;
}
/* copyright end */

/* DEVSPROG service section extracted from index.html and service.html */
.devsprog-spinner-size {
    width: 3rem;
    height: 3rem;
}

.devsprog-carousel-caption-width {
    max-width: 900px;
}

.devsprog-max-980 {
    max-width: 980px;
}

.devsprog-letter-spacing-3 {
    letter-spacing: 3px;
}

.devsprog-font-autotechno {
    font-family: 'AutoTechno';
}

.devsprog-anim-delay-1 {
    animation-delay: 1s;
}

.devsprog-anim-delay-13 {
    animation-delay: 1.3s;
}

.devsprog-anim-delay-15 {
    animation-delay: 1.5s;
}

.devsprog-anim-delay-17 {
    animation-delay: 1.7s;
}

.devsprog-service-note {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(13, 202, 240, 0.06));
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 1.5rem;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.08);
}

.devsprog-service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.12);
    box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.08);
    color: var(--bs-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.devsprog-service-layout {
    max-width: 1320px;
    margin: 0 auto;
    align-items: stretch;
    row-gap: 1.25rem;
}

.devsprog-service-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.devsprog-service-side .service-item {
    flex: 1 1 0;
    min-height: 0;
    margin-bottom: 0 !important;
    padding: 1.35rem 1.25rem !important;
    border-radius: 1.45rem !important;
    box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.06);
}

.devsprog-service-side .d-flex {
    height: 100%;
    align-items: center;
    gap: 1rem;
}

.devsprog-service-side .ps-4,
.devsprog-service-side .pe-4 {
    flex: 0 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.devsprog-service-side .service-btn {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
}

.devsprog-service-side .service-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.devsprog-service-side .service-content a {
    display: block;
    width: 100%;
    line-height: 1.16;
    text-wrap: balance;
}

.devsprog-service-side .service-content p {
    margin-bottom: 0;
    line-height: 1.62;
}

.devsprog-service-core {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    overflow: hidden;
    padding: 2rem 2rem 1.8rem;
    border-radius: 2rem;
    background: linear-gradient(160deg, #071b2f 0%, #0d2945 55%, #12385c 100%);
    box-shadow: 0 1.75rem 4rem rgba(5, 23, 42, 0.28);
}

.devsprog-service-core::before {
    content: "";
    position: absolute;
    inset: auto -20% -38% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.28), rgba(13, 202, 240, 0));
}

.devsprog-service-core h2 {
    max-width: 560px;
    text-wrap: balance;
}

.devsprog-service-core .hero-rocket-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    margin: 0.45rem 0 0.85rem;
}

.devsprog-service-core .hero-rocket-scene {
    width: min(100%, 460px);
    min-height: 0;
    margin-inline: auto;
}

.devsprog-service-core .hero-rocket-orbit,
.devsprog-service-core .hero-rocket-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.devsprog-service-core .hero-rocket {
    width: min(100%, 390px);
    max-width: 390px;
    max-height: none;
}

.devsprog-service-list {
    margin: 0.1rem 0 0;
    padding-left: 0;
    list-style: none;
}

.devsprog-service-list li {
    position: relative;
    margin-bottom: 0.85rem;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.devsprog-service-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--bs-primary);
    box-shadow: 0 0 0 0.35rem rgba(13, 110, 253, 0.16);
}

.devsprog-service-mini {
    height: 100%;
    padding: 1.45rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.12);
    box-shadow: 0 1rem 2.4rem rgba(15, 23, 42, 0.08);
}

.devsprog-service-mini .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgba(13, 110, 253, 0.12);
    color: var(--bs-primary);
    font-size: 1.35rem;
}

.devsprog-service-mini p {
    margin-bottom: 0;
    color: #5b6473;
}

.devsprog-service-bottom {
    max-width: 1180px;
    margin: 0.75rem auto 0;
}

.devsprog-service-cta {
    padding: 1.6rem 1.8rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
    border: 1px solid rgba(13, 110, 253, 0.12);
    box-shadow: 0 1.15rem 2.8rem rgba(15, 23, 42, 0.08);
}

@media (min-width: 1200px) {
    .devsprog-service-layout > .devsprog-service-side-col {
        flex: 0 0 28%;
        width: 28%;
    }

    .devsprog-service-layout > .devsprog-service-core-col {
        flex: 0 0 44%;
        width: 44%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .devsprog-service-layout {
        max-width: 100%;
        margin: 0 auto;
        align-items: flex-start;
        row-gap: 1rem;
    }

    .devsprog-service-layout > .devsprog-service-side-col {
        flex: 0 0 28% !important;
        width: 28% !important;
        max-width: 28% !important;
        min-width: 0;
    }

    .devsprog-service-layout > .devsprog-service-core-col {
        flex: 0 0 44% !important;
        width: 44% !important;
        max-width: 44% !important;
        min-width: 0;
    }

    .devsprog-service-side {
        gap: 0.9rem;
        height: auto;
    }

    .devsprog-service-side .service-item {
        flex: 0 0 auto;
        height: auto !important;
        min-height: 165px !important;
        padding: 1rem 0.95rem !important;
    }

    .devsprog-service-side .d-flex {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .devsprog-service-side .service-content,
    .devsprog-service-side .service-content.text-end {
        width: 100%;
        min-width: 0;
        text-align: left !important;
        justify-content: flex-start;
    }

    .devsprog-service-side .service-content a {
        margin-bottom: 0.35rem !important;
        font-size: 0.96rem !important;
        line-height: 1.08 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
        text-wrap: balance;
    }

    .devsprog-service-side .service-content p {
        margin-bottom: 0 !important;
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }

    .devsprog-service-side .service-btn {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin-top: 0.1rem;
    }

    .devsprog-service-side .service-btn i {
        font-size: 1rem !important;
    }

    .devsprog-service-core {
        padding: 1.55rem 1.35rem 1.35rem;
    }

    .devsprog-service-core h2 {
        max-width: 100%;
        font-size: 2rem !important;
        line-height: 1.08 !important;
    }

    .devsprog-service-core p,
    .devsprog-service-core li {
        font-size: 0.93rem !important;
        line-height: 1.5 !important;
    }

    .devsprog-service-core .hero-rocket-wrap {
        margin: 0.35rem 0 0.65rem;
    }

    .devsprog-service-core .hero-rocket-scene {
        width: min(100%, 350px);
    }

    .devsprog-service-core .hero-rocket {
        width: min(100%, 295px);
        max-width: 295px;
    }

    .devsprog-service-core .btn {
        padding: 0.78rem 0.95rem !important;
        font-size: 0.88rem !important;
    }
}


@media (max-width: 991.98px) {
    .devsprog-service-layout {
        gap: 1rem 0;
    }

    .devsprog-service-layout > .devsprog-service-side-col {
        flex: 0 0 100%;
        width: 100%;
    }

    .devsprog-service-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        height: auto;
    }

    .devsprog-service-side .service-item {
        flex: 0 0 auto;
    }

    .devsprog-service-core {
        padding: 1.75rem 1.6rem;
    }

    .devsprog-service-core .hero-rocket-scene {
        width: min(100%, 360px);
    }

    .devsprog-service-core .hero-rocket {
        width: min(100%, 320px);
        max-width: 320px;
    }
}

@media (max-width: 767.98px) {
    .devsprog-service-note,
    .devsprog-service-cta {
        padding: 1.2rem 1rem;
    }

    .devsprog-service-side {
        grid-template-columns: 1fr;
    }
	
	.devsprog-service-side .service-content p {
		display: none;
	}

    .devsprog-service-side .service-item {
        padding: 1.15rem 1rem !important;
    }

    .devsprog-service-side .service-btn {
        width: 68px;
        height: 68px;
    }

    .devsprog-service-core {
        padding: 1.35rem 1.1rem;
    }

    .devsprog-service-core h2 {
        font-size: 2rem;
    }

    .devsprog-service-core .hero-rocket-scene {
        width: min(100%, 280px);
    }

    .devsprog-service-core .hero-rocket {
        width: min(100%, 250px);
        max-width: 250px;
    }
}

@media (max-width: 575.98px) {
    .devsprog-service-side .d-flex {
        gap: 0.85rem;
    }

    .devsprog-service-core h2 {
        font-size: 1.9rem;
    }

    .devsprog-service-core .hero-rocket-scene {
        width: min(100%, 245px);
    }

    .devsprog-service-core .hero-rocket {
        width: min(100%, 218px);
        max-width: 218px;
    }
}

