/* =========================================================
   BASE / ESTRUTURA GERAL
========================================================= */

html {
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
}

body {
    padding-top: 108px;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
}

/* Na home o hero começa no topo, atrás do menu */
body.home,
body.front-page {
    padding-top: 0 !important;
}

#wrapper {
    overflow: visible;
    max-width: 100%;
}


@media (max-width: 782px) {
    body.admin-bar #site-header {
        top: 46px;
    }
}

/* =========================================================
   HEADER / MENU SOBRE O HERO
========================================================= */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    background: rgba(84, 79, 145, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    transition:
        background 0.28s ease,
        box-shadow 0.28s ease,
        min-height 0.28s ease,
        backdrop-filter 0.28s ease;
}

/* Na home, antes do scroll, o menu fica transparente sobre o hero */
body.home #site-header:not(.ciranda-scrolled):not(.header-bg):not(.clone):not(.sticky):not(.smaller):not(.scrolled),
body.front-page #site-header:not(.ciranda-scrolled):not(.header-bg):not(.clone):not(.sticky):not(.smaller):not(.scrolled) {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}





#site-header .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
}

#site-header .de-flex {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: min-height 0.28s ease;
}

#site-header .de-flex-col {
    display: flex;
    align-items: center;
}

/* =========================================================
   LOGO
========================================================= */

#logo {
    padding: 0;
    margin: 0;
    line-height: 1;
}

#logo a,
.logo-wrapper {
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 1;
    height: 108px;
    transition: height 0.28s ease;
}

#site-header .logo-main {
    display: block;
    width: auto;
    height: auto;
    max-height: 84px;
    max-width: 250px;
    padding: 4px 0;
    object-fit: contain;
    transition:
        max-height 0.28s ease,
        max-width 0.28s ease,
        padding 0.28s ease;
}

#site-header .logo-mobile {
    display: none;
}

/* =========================================================
   BOTÃO / MENU MOBILE
========================================================= */

#site-header .btn-main {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1;
    border-radius: 12px;
    transition:
        padding 0.28s ease,
        font-size 0.28s ease;
}

#menu-btn {
    margin-left: 10px;
}

/* =========================================================
   REDES SOCIAIS
========================================================= */

.ciranda-header-socials-wrap {
    display: flex;
    align-items: center;
}

.ciranda-header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
}

.ciranda-header-socials__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    text-decoration: none;
    transition: all 0.25s ease;
}

.ciranda-header-socials__link:hover,
.ciranda-header-socials__link:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #20d6d2 0%, #13b8d8 100%);
    transform: translateY(-1px);
}

.ciranda-header-socials__link i {
    font-size: 14px;
    line-height: 1;
}

.ciranda-header-socials__link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    z-index: 100002;
    transform: translateX(-50%);
    padding: 8px 10px;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
}

.ciranda-header-socials__link:hover::after,
.ciranda-header-socials__link:focus::after {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   MENU DESKTOP
========================================================= */

@media (min-width: 992px) {
    #site-header {
        --ciranda-header-side-space: 240px;
    }

    #site-header .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }

    #site-header .de-flex {
        display: grid;
        grid-template-columns: var(--ciranda-header-side-space) minmax(0, 1fr) var(--ciranda-header-side-space);
        align-items: center;
        column-gap: 28px;
        isolation: isolate;
    }

    #site-header .de-flex > .de-flex-col:first-child {
        grid-column: 1;
        width: var(--ciranda-header-side-space);
        min-width: var(--ciranda-header-side-space);
        justify-content: flex-start;
    }

    #site-header .de-flex > .de-flex-col:nth-child(2) {
        grid-column: 2;
        min-width: 0;
        justify-content: center;
        z-index: 5;
        overflow: visible;
    }

    #site-header .ciranda-header-socials-wrap {
        grid-column: 3;
        width: var(--ciranda-header-side-space);
        min-width: var(--ciranda-header-side-space);
        padding-right: 6px;
        justify-content: flex-end;
        z-index: 8;
        pointer-events: none;
        overflow: visible;
    }

    #site-header .de-flex-mobile {
        display: none !important;
    }

    #logo {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        padding-left: 6px;
    }

    #logo a,
    .logo-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    #mainmenu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 18px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        z-index: 10;
    }

    #mainmenu > li {
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
        z-index: 10;
    }

    #mainmenu > li > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 108px;
        padding: 0;
        color: #ffffff;
        font-size: 1.06rem;
        font-weight: 500;
        line-height: 1;
        white-space: nowrap;
        text-decoration: none;
        transition:
            color 0.22s ease,
            min-height 0.28s ease,
            font-size 0.28s ease;
    }

    #mainmenu > li:hover > a,
    #mainmenu > li:focus-within > a,
    #mainmenu > li.current-menu-item > a,
    #mainmenu > li.current-menu-ancestor > a,
    #mainmenu > li.current_page_item > a,
    #mainmenu > li.current_page_ancestor > a {
        color: #20d6d2;
    }

    #mainmenu > li:last-child {
        margin-right: 18px;
    }

    #mainmenu > li.menu-item-has-children::after,
    #mainmenu > li.has-child::after,
    #mainmenu > li.menu-item-has-children > a::before,
    #mainmenu > li.has-child > a::before,
    #mainmenu > li.menu-item-has-children > a > i,
    #mainmenu > li.has-child > a > i,
    #mainmenu > li.menu-item-has-children > a > svg,
    #mainmenu > li.has-child > a > svg,
    #mainmenu > li.menu-item-has-children > a > .menu-item-arrow,
    #mainmenu > li.has-child > a > .menu-item-arrow,
    #mainmenu > li.menu-item-has-children > a > .submenu-indicator,
    #mainmenu > li.has-child > a > .submenu-indicator,
    #mainmenu > li.menu-item-has-children > a > .sf-sub-indicator,
    #mainmenu > li.has-child > a > .sf-sub-indicator {
        display: none;
        content: none;
    }

    #mainmenu > li.menu-item-has-children > a,
    #mainmenu > li.has-child > a {
        gap: 6px;
    }

    #mainmenu > li.menu-item-has-children > a::after,
    #mainmenu > li.has-child > a::after {
        content: "\f107";
        font-family: "Font Awesome 6 Free", "FontAwesome";
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        top: -1px;
        margin-left: 2px;
        line-height: 1;
        font-size: 10px;
        transition:
            transform 0.22s ease,
            color 0.22s ease;
    }

    #mainmenu > li.menu-item-has-children:hover > a::after,
    #mainmenu > li.has-child:hover > a::after,
    #mainmenu > li.current-menu-ancestor > a::after,
    #mainmenu > li.current_page_ancestor > a::after {
        color: #20d6d2;
        transform: rotate(180deg);
    }

    #mainmenu > li.menu-item-has-children::before,
    #mainmenu > li.has-child::before {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 8px;
        z-index: 100001;
    }

    /* Submenu sempre acima do hero */
    #mainmenu .sub-menu {
        position: absolute;
        top: calc(100% - 18px);
        left: 0;
        z-index: 100002;
        min-width: 170px;
        margin: 0;
        padding: 0;
        list-style: none;
        background: #ffffff;
        border: 0;
        border-radius: 3px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(20, 25, 60, 0.16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(4px);
        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0.18s ease;
    }

    #mainmenu > li:hover > .sub-menu,
    #mainmenu > li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    #mainmenu .sub-menu li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #mainmenu .sub-menu li a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        padding: 10px 16px;
        margin: 0;
        color: #555a83;
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.15;
        white-space: nowrap;
        background: transparent;
        text-decoration: none;
        transition:
            background 0.2s ease,
            color 0.2s ease,
            padding-left 0.2s ease;
    }

    #mainmenu .sub-menu li a:hover,
    #mainmenu .sub-menu li a:focus,
    #mainmenu .sub-menu li.current-menu-item > a,
    #mainmenu .sub-menu li.current_page_item > a,
    #mainmenu .sub-menu li.current-menu-ancestor > a,
    #mainmenu .sub-menu li.current_page_ancestor > a {
        color: #ffffff;
        background: linear-gradient(135deg, #20d6d2 0%, #13b8d8 100%);
        padding-left: 20px;
    }

    .ciranda-header-socials {
        justify-content: flex-end;
        z-index: 20;
        pointer-events: auto;
    }

    .ciranda-header-socials__link {
        z-index: 21;
        pointer-events: auto;
    }
}

/* =========================================================
   DESKTOP MÉDIO
========================================================= */

@media (min-width: 992px) and (max-width: 1399px) {
    #site-header {
        --ciranda-header-side-space: 220px;
    }

    #mainmenu {
        gap: 14px;
    }

    #mainmenu > li > a {
        font-size: 0.98rem;
    }

    #site-header .logo-main {
        max-width: 220px;
        max-height: 74px;
    }

    #site-header .btn-main {
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* =========================================================
   DESKTOP MENOR
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {
    #site-header {
        --ciranda-header-side-space: 200px;
    }

    #site-header .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    #mainmenu {
        gap: 12px;
    }

    #mainmenu > li > a {
        font-size: 0.92rem;
    }

    #site-header .logo-main {
        max-width: 200px;
        max-height: 68px;
    }

    #site-header .btn-main {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* =========================================================
   ESTADO COM SCROLL
========================================================= */

#site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) {
    background: rgba(65, 60, 124, 0.98) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .de-flex {
    min-height: 88px;
}

#site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) #logo a,
#site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .logo-wrapper {
    height: 88px;
}

#site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .logo-main {
    max-height: 64px;
    max-width: 190px;
    padding: 3px 0;
}

#site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .btn-main {
    padding: 10px 16px;
    font-size: 13px;
}

@media (min-width: 992px) {
    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) #mainmenu {
        gap: 14px;
    }

    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) #mainmenu > li > a {
        min-height: 88px;
        font-size: 0.98rem;
    }

    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) #mainmenu .sub-menu {
        top: calc(100% - 12px);
    }
}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {
    body {
        padding-top: 84px;
    }

    body.home,
    body.front-page {
        padding-top: 0 !important;
    }

    #site-header .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    #site-header .de-flex {
        min-height: 84px;
        gap: 10px;
    }

    #logo a,
    .logo-wrapper {
        height: 84px;
    }

    #site-header .logo-main {
        max-height: 58px;
        max-width: 165px;
        padding: 3px 0;
    }

    #site-header .btn-main {
        padding: 10px 14px;
        font-size: 12px;
    }

    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .de-flex {
        min-height: 74px;
    }

    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) #logo a,
    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .logo-wrapper {
        height: 74px;
    }

    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .logo-main {
        max-height: 48px;
        max-width: 140px;
        padding: 2px 0;
    }

    #site-header:is(.ciranda-scrolled, .header-bg, .clone, .sticky, .smaller, .scrolled) .btn-main {
        padding: 8px 12px;
        font-size: 11px;
    }

    .ciranda-header-socials-wrap {
        display: none !important;
    }
}

/* =========================================================
   BREADCRUMB FIXO ABAIXO DO HEADER
========================================================= */

body:not(.home):not(.front-page) {
    padding-top: 144px;
}

.ciranda-page-hero-breadcrumb-strip {
    position: fixed;
    top: 108px;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 10px 0;
    background: linear-gradient(90deg, #00e4d0 0%, #0e9adf 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ciranda-breadcrumb-nav,
.ciranda-breadcrumb-nav p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    color: #111111;
}

.ciranda-breadcrumb-nav a,
.ciranda-breadcrumb-nav p a {
    color: #111111;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ciranda-breadcrumb-nav a:hover,
.ciranda-breadcrumb-nav p a:hover {
    opacity: 0.75;
}

.ciranda-breadcrumb-separator {
    opacity: 0.6;
}

.ciranda-breadcrumb-current {
    font-weight: 700;
    color: #111111;
}

#site-header.ciranda-scrolled + .ciranda-page-hero-breadcrumb-strip,
#site-header.header-bg + .ciranda-page-hero-breadcrumb-strip,
#site-header.clone + .ciranda-page-hero-breadcrumb-strip,
#site-header.sticky + .ciranda-page-hero-breadcrumb-strip,
#site-header.smaller + .ciranda-page-hero-breadcrumb-strip,
#site-header.scrolled + .ciranda-page-hero-breadcrumb-strip {
    top: 88px;
}

@media (max-width: 991px) {
    body:not(.home):not(.front-page) {
        padding-top: 122px;
    }

    .ciranda-page-hero-breadcrumb-strip {
        top: 84px;
        padding: 8px 0;
    }

    .ciranda-breadcrumb-nav,
    .ciranda-breadcrumb-nav p {
        font-size: 12px;
        gap: 5px;
    }

    #site-header.ciranda-scrolled + .ciranda-page-hero-breadcrumb-strip,
    #site-header.header-bg + .ciranda-page-hero-breadcrumb-strip,
    #site-header.clone + .ciranda-page-hero-breadcrumb-strip,
    #site-header.sticky + .ciranda-page-hero-breadcrumb-strip,
    #site-header.smaller + .ciranda-page-hero-breadcrumb-strip,
    #site-header.scrolled + .ciranda-page-hero-breadcrumb-strip {
        top: 74px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .ciranda-page-hero-breadcrumb-strip {
        top: 130px;
    }

    body.admin-bar #site-header.ciranda-scrolled + .ciranda-page-hero-breadcrumb-strip,
    body.admin-bar #site-header.header-bg + .ciranda-page-hero-breadcrumb-strip,
    body.admin-bar #site-header.clone + .ciranda-page-hero-breadcrumb-strip,
    body.admin-bar #site-header.sticky + .ciranda-page-hero-breadcrumb-strip,
    body.admin-bar #site-header.smaller + .ciranda-page-hero-breadcrumb-strip,
    body.admin-bar #site-header.scrolled + .ciranda-page-hero-breadcrumb-strip {
        top: 120px;
    }
}

/* =========================================================
   HERO / CARROSSEL HOME - FULLSCREEN ATRÁS DO MENU
========================================================= */

.ciranda-hero-clean {
    position: relative;
    z-index: 1;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0 !important;
    padding-top: 0 !important;
    overflow: hidden;
    background: linear-gradient(135deg, #1ebebe 0%, #185b9c 100%);
}

.ciranda-hero-clean__swiper,
.ciranda-hero-clean__swiper .swiper-wrapper,
.ciranda-hero-clean__swiper .swiper-slide {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
}

.ciranda-hero-clean__slide {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, #1ebebe 0%, #185b9c 100%);
}

.ciranda-hero-clean__slide > .container {
    width: 100%;
    max-width: 1280px;
}

/* Respiro interno para o texto não ficar escondido embaixo do menu */
.ciranda-hero-clean__grid {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 62%);
    align-items: center;
    gap: 48px;
    width: 100%;
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 64px;
    box-sizing: border-box;
}

.ciranda-hero-clean__content {
    position: relative;
    z-index: 2;
    max-width: 430px;
}

.ciranda-hero-clean__subtitle {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.ciranda-hero-clean__title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.65rem, 2.65vw, 2.85rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.ciranda-hero-clean__text {
    max-width: 380px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.86rem, 0.95vw, 0.98rem);
    font-weight: 400;
    line-height: 1.35;
}

.ciranda-hero-clean__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 10px;
    background: #ffffff;
    color: #185b9c;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.ciranda-hero-clean__button:hover {
    background: #161447;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(22, 20, 71, 0.22);
}

.ciranda-hero-clean__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    background: transparent !important;
}

.ciranda-hero-clean__image-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    min-height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    animation: none !important;
}

.ciranda-hero-clean__image-card::before {
    display: none !important;
    content: none !important;
}

.ciranda-hero-clean__image-card img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    background: transparent !important;
    box-shadow: none !important;
}

.ciranda-hero-clean__shape,
.ciranda-hero-clean__shape--one,
.ciranda-hero-clean__shape--two,
.ciranda-hero-clean__shape--three {
    display: none !important;
}

.ciranda-hero-clean__prev,
.ciranda-hero-clean__next {
    display: none !important;
}

.ciranda-hero-clean__pagination {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    bottom: 34px !important;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.ciranda-hero-clean__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.ciranda-hero-clean__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

/* Transição premium */
.ciranda-hero-clean__swiper .swiper-slide {
    opacity: 0 !important;
    transition-property: opacity;
}

.ciranda-hero-clean__swiper .swiper-slide-active {
    opacity: 1 !important;
}

.ciranda-hero-clean__content {
    opacity: 0;
    transform: translateX(-24px);
    filter: blur(4px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease,
        filter 0.75s ease;
}

.ciranda-hero-clean__visual {
    opacity: 0;
    transform: scale(0.96) translateX(28px);
    filter: blur(5px);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease,
        filter 0.85s ease;
}

.ciranda-hero-clean__swiper .swiper-slide-active .ciranda-hero-clean__content {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.ciranda-hero-clean__swiper .swiper-slide-active .ciranda-hero-clean__visual {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0);
    transition-delay: 0.12s;
}

.ciranda-hero-clean + section,
.ciranda-hero-clean + .section,
.ciranda-hero-clean + .de-section {
    margin-top: 0 !important;
}

/* =========================================================
   HERO RESPONSIVO
========================================================= */

@media (max-width: 991px) {
    .ciranda-hero-clean,
    .ciranda-hero-clean__swiper,
    .ciranda-hero-clean__swiper .swiper-wrapper,
    .ciranda-hero-clean__swiper .swiper-slide,
    .ciranda-hero-clean__slide {
        min-height: 100svh;
        height: 100svh;
    }

    .ciranda-hero-clean__slide {
        padding: 0;
    }

    .ciranda-hero-clean__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 100svh;
        padding-top: 92px;
        padding-bottom: 64px;
        text-align: center;
    }

    .ciranda-hero-clean__content {
        max-width: 620px;
        margin: 0 auto;
    }

    .ciranda-hero-clean__text {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .ciranda-hero-clean__visual {
        min-height: auto;
    }

    .ciranda-hero-clean__image-card {
        max-width: 620px;
    }

    .ciranda-hero-clean__image-card img {
        max-height: 42vh;
    }

    .ciranda-hero-clean__pagination {
        bottom: 24px !important;
    }
}

@media (max-width: 575px) {
    .ciranda-hero-clean__grid {
        gap: 28px;
        padding-top: 86px;
        padding-bottom: 58px;
    }

    .ciranda-hero-clean__subtitle {
        font-size: 0.66rem;
        letter-spacing: 0.22em;
    }

    .ciranda-hero-clean__title {
        font-size: 1.9rem;
        line-height: 0.95;
        letter-spacing: -0.04em;
    }

    .ciranda-hero-clean__text {
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .ciranda-hero-clean__button {
        min-height: 42px;
        padding: 0 22px;
        font-size: 0.78rem;
    }

    .ciranda-hero-clean__image-card img {
        max-height: 36vh;
    }

    .ciranda-hero-clean__pagination {
        bottom: 20px !important;
    }
}

/* =========================================================
   OUTROS AJUSTES EXISTENTES
========================================================= */

.transp-top-header,
.row.align-items-center.justify-content-between.mb-4 {
    align-items: flex-start;
}

.transp-top-title,
.ciranda-page-title {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    line-height: 1.05;
    word-break: normal;
    overflow-wrap: break-word;
}

@media (min-width: 992px) {
    .row.align-items-center.justify-content-between.mb-4 > .col-12.col-xl-4 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .row.align-items-center.justify-content-between.mb-4 > .col-12.col-xl-8 {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

@media (max-width: 991px) {
    .ciranda-page-title {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.08;
    }
}

.ciranda-honeypot {
    position: absolute !important;
    left: -99999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* =========================================================
   FORMULÁRIO DE CONTATO - AÇÕES FINAIS
========================================================= */

.ciranda-form-status.is-success {
    color: #257a4a;
    background: #e8f7ed;
    border: 1px solid #9fd8b3;
}

.ciranda-form-status.is-error {
    color: #b33a3a;
    background: #fdeeee;
    border: 1px solid #efb3b3;
}

.ciranda-form-status.is-warning {
    color: #8a6220;
    background: #fff6e6;
    border: 1px solid #f1d59a;
}

@media (max-width: 767px) {
    .ciranda-form-actions {
        grid-template-columns: 1fr;
    }

    .ciranda-btn-submit {
        width: 100%;
    }
}

.ciranda-btn-submit-final {
    width: 320px;
    max-width: 100%;
    height: 64px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #20d6d2 0%, #1399dc 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ciranda-form-status-final {
    width: 100%;
    min-height: 64px;
    padding: 0 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.35;
}

.ciranda-form-status-final.is-success {
    color: #257a4a;
    background: #e8f7ed;
    border: 1px solid #9fd8b3;
}

.ciranda-form-status-final.is-error {
    color: #b33a3a;
    background: #fdeeee;
    border: 1px solid #efb3b3;
}

@media (max-width: 767px) {
    .ciranda-btn-submit-final {
        width: 100%;
    }
}

/* =========================================================
   CORREÇÃO DEFINITIVA: HERO ENTRAR ATRÁS DO MENU
========================================================= */

/* Remove o espaço superior em qualquer página que tenha o hero */
body:has(.ciranda-hero-clean) {
    padding-top: 0 !important;
}

/* Garante que wrappers não empurrem o hero */
body:has(.ciranda-hero-clean) #wrapper,
body:has(.ciranda-hero-clean) #content,
body:has(.ciranda-hero-clean) #main,
body:has(.ciranda-hero-clean) main,
body:has(.ciranda-hero-clean) .site-content,
body:has(.ciranda-hero-clean) .page-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Header fixo por cima */
body:has(.ciranda-hero-clean) #site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999999 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Ao rolar, volta o fundo do menu */
body:has(.ciranda-hero-clean) #site-header.ciranda-scrolled,
body:has(.ciranda-hero-clean) #site-header.header-bg,
body:has(.ciranda-hero-clean) #site-header.sticky,
body:has(.ciranda-hero-clean) #site-header.smaller,
body:has(.ciranda-hero-clean) #site-header.scrolled {
    background: rgba(65, 60, 124, 0.98) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
}

/* Hero começa no topo real da tela */
body:has(.ciranda-hero-clean) .ciranda-hero-clean {
    position: relative;
    z-index: 1;
    top: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: translateY(0);
}

/* =========================================================
   CORREÇÃO FINAL: HERO 100VH COM MENU SOBREPOSTO
========================================================= */

/* Home sem reserva de altura do header */
body.home,
body.front-page {
    padding-top: 0 !important;
}

/* Header por cima do hero */
body.home #site-header,
body.front-page #site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999999 !important;
}

/* Header transparente no topo da home */
body.home #site-header:not(.ciranda-scrolled):not(.header-bg):not(.sticky):not(.smaller):not(.scrolled),
body.front-page #site-header:not(.ciranda-scrolled):not(.header-bg):not(.sticky):not(.smaller):not(.scrolled) {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Hero ocupando a tela inteira */
body.home .ciranda-hero-clean,
body.front-page .ciranda-hero-clean {
    position: relative;
    z-index: 1;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 !important;
    overflow: hidden;
    background: linear-gradient(135deg, #1ebebe 0%, #185b9c 100%);
}

/* Swiper e slides também precisam ter 100% da altura */
body.home .ciranda-hero-clean__swiper,
body.home .ciranda-hero-clean__swiper .swiper-wrapper,
body.home .ciranda-hero-clean__swiper .swiper-slide,
body.home .ciranda-hero-clean__slide,
body.front-page .ciranda-hero-clean__swiper,
body.front-page .ciranda-hero-clean__swiper .swiper-wrapper,
body.front-page .ciranda-hero-clean__swiper .swiper-slide,
body.front-page .ciranda-hero-clean__slide {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
}

/* Slide interno */
body.home .ciranda-hero-clean__slide,
body.front-page .ciranda-hero-clean__slide {
    display: flex;
    align-items: stretch;
    padding: 0 !important;
    background: transparent;
}

/* Container ocupando altura total */
body.home .ciranda-hero-clean__slide > .container,
body.front-page .ciranda-hero-clean__slide > .container {
    width: 100%;
    max-width: 1280px;
    height: 100%;
}

/* Grid com compensação interna do menu, sem reduzir o 100vh */
body.home .ciranda-hero-clean__grid,
body.front-page .ciranda-hero-clean__grid {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 62%);
    align-items: center;
    gap: 48px;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding-top: 108px !important;
    padding-bottom: 72px !important;
    box-sizing: border-box;
}

/* Imagem ajustada dentro do hero */
body.home .ciranda-hero-clean__visual,
body.front-page .ciranda-hero-clean__visual {
    min-height: 0 !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.home .ciranda-hero-clean__image-card,
body.front-page .ciranda-hero-clean__image-card {
    width: 100%;
    max-width: 760px;
}

body.home .ciranda-hero-clean__image-card img,
body.front-page .ciranda-hero-clean__image-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 190px);
    object-fit: contain;
}

/* Bolinhas no final do hero */
body.home .ciranda-hero-clean__pagination,
body.front-page .ciranda-hero-clean__pagination {
    bottom: 34px !important;
}

/* Próxima seção começa somente depois do 100vh */
body.home .ciranda-hero-clean + section,
body.home .ciranda-hero-clean + .section,
body.home .ciranda-hero-clean + .de-section,
body.front-page .ciranda-hero-clean + section,
body.front-page .ciranda-hero-clean + .section,
body.front-page .ciranda-hero-clean + .de-section {
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    body.home .ciranda-hero-clean__grid,
    body.front-page .ciranda-hero-clean__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
        padding-top: 92px !important;
        padding-bottom: 64px !important;
    }

    body.home .ciranda-hero-clean__content,
    body.front-page .ciranda-hero-clean__content {
        max-width: 620px;
        margin: 0 auto;
    }

    body.home .ciranda-hero-clean__image-card img,
    body.front-page .ciranda-hero-clean__image-card img {
        max-height: 42dvh;
    }
}

@media (max-width: 575px) {
    body.home .ciranda-hero-clean__grid,
    body.front-page .ciranda-hero-clean__grid {
        gap: 28px;
        padding-top: 86px !important;
        padding-bottom: 58px !important;
    }

    body.home .ciranda-hero-clean__image-card img,
    body.front-page .ciranda-hero-clean__image-card img {
        max-height: 36dvh;
    }
}