@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansThin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansLight.woff.ttf') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansRegular.woff.ttf') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansMedium.woff.ttf') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansBold.woff.ttf') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'MotivaSans';
    src: url('../font/MotivaSansBlack.woff.ttf') format('woff');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'MotivaSans', sans-serif;
}

.input-azul-escuro {
    border: 2px solid #fff;
    background-color: #17284a;
    color: #fff;
}

.input-azul-escuro::placeholder {
    color: #ffffffb3;
}

.input-azul-escuro:focus, .input-azul-escuro:hover {
    border: 2px solid #ff7e00;
    box-shadow: 0 0 0 0;
    outline: 0;
    background-color: #17284a;
    color: #fff;
}

.azul-escuro {
    color: #17284a;
}

.bg-azul-escuro {
    background-color: #17284a;
}

.azul {
    color: #003d61;
}

.bg-azul {
    background-color: #003d61;
}

.btn-azul {
    background-color: #003d61;
    color: #ffffff;
}

.btn-azul:hover, .btn-azul:focus, .btn-azul:active {
    background-color: #002b3d !important;
    color: #ffffff !important;
}

.laranja {
    color: #ff7e00;
}

.bg-laranja {
    background-color: #ff7e00;
}

.btn-laranja {
    background-color: #ff7e00;
    color: #ffffff;
}

.btn-laranja:hover, .btn-laranja:focus, .btn-laranja:active {
    background-color: #cc6600 !important;
    color: #ffffff !important;
}

.btn-laranja-azul-escuro {
    background-color: #ff7e00;
    color: #17284a;
}

.btn-laranja-azul-escuro:hover, .btn-laranja-azul-escuro:focus, .btn-laranja-azul-escuro:active {
    background-color: #cc6600 !important;
    color: #17284a !important;
}

.bg {
    background: url('../img/imagens/bg.png') no-repeat center center fixed;
    background-size: cover;
}

.bg-translucido-azul-transparente {
    background: linear-gradient(to right, #003d61 20%, #003d6167 40%, #003d6100 50%);
}

/* dots da pagintation do splide */
.splide__pagination__page {
    background-color: #003d61;
    width: 12px;
    height: 12px;
    box-shadow: none;
    border: none;
    opacity: 0.5;
}

.splide__pagination__page.is-active {
    background-color: #ff7e00;
    width: 12px;
    height: 12px;
    box-shadow: none;
    border: none;
    opacity: 1;
}

/* ===============================
   ENERGY SHOWCASE
================================ */

.energy-showcase {
    padding: 40px;
    background: #fff;
}

.energy-wrapper {
    display: flex;
    gap: 16px;
    height: 420px;
}

/* CARD BASE (TODOS FECHADOS) */
.energy-card {
    flex: 0.6;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    overflow: clip;
    transition: flex .45s ease;
}

/* OVERLAY PADRÃO (SEMPRE ATIVO) */
.energy-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background .45s ease;
    z-index: 1;
}

/* OVERLAY MAIS ESCURO NO ABERTO */
.energy-card.open::after {
    background: rgba(0, 0, 0, 0.6);
}

/* ===============================
   TEXTO + ÍCONE
================================ */

.energy-label {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-90deg);
    transform-origin: center;
    transition:
        transform .45s ease,
        bottom .45s ease,
        left .45s ease;
}

/* TEXTO */
.energy-label span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

/* ÍCONE + */
.icon-plus {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

/* ===============================
   ESTADO ABERTO
================================ */

.energy-card.open {
    flex: 6;
}

.energy-card.open .energy-label {
    bottom: 24px;
    left: 24px;
    transform: rotate(0);
}




.titulo-depoimentos {
    font-weight: 800;
    line-height: 1.1;
}

.titulo-depoimentos small {
    font-size: 28px;
    font-weight: 400;
}

/* palavra com risco */
.titulo-depoimentos .destaque {
    position: relative;
    display: inline-block;
    padding-right: 120px;
    /* espaço pro risco */
}

/* risco laranja */
.titulo-depoimentos .destaque::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 70%;
    bottom: 12px;
    /* altura do risco */
    width: 100px;
    height: 4px;
    background-color: #ff7a00;
    /* ou usa sua .laranja */
}





@media (max-width: 992px) {
    .bg-translucido-azul-transparente {
        background: linear-gradient(to right, #003d61a8 100%, #003d6100);
    }

    .energy-wrapper {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    /* CARD BASE */
    .energy-card {
        flex: none;
        min-height: 110px;
        /* fechado */
        transition: min-height .35s ease;
    }

    /* CARD ABERTO */
    .energy-card.open {
        min-height: 260px;
        /* aberto */
    }

    /* LABEL → SEMPRE CENTRALIZADO */
    .energy-label {
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        padding: 12px 16px;
        /* 👈 padding pedido */
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    .energy-label span {
        font-size: 15px;
        line-height: 1.3;
        white-space: normal;
        /* quebra linha */
    }
}