@font-face {
    font-family: "Rawline";
    src: url("assets/fonts/Rawline/rawline-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rawline";
    src: url("assets/fonts/Rawline/rawline-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rawline";
    src: url("assets/fonts/Rawline/rawline-800.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Raleway", serif;
    color: #fff;
    background-color: #f9fafd;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    padding: 20px 12px 36px;
}

h1 {
}

.logo {
    align-items: center;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.hidden {
    display: none !important;
}

.selected {
    background-color: #c3ff00 !important;
    cursor: pointer;
}

.prevent {
    overflow: hidden;
}

.showProducts {
    min-width: 30px;
    height: 30px;
    color: #9c78d3;
    font-weight: 900;
    border: solid 1px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.productsMenu {
    display: flex;
    justify-content: space-between;
}

#searchInput {
    width: 0; /* Inicialmente escondido */
    height: 28px; /* Ligeiramente menor que o container para um ajuste melhor */
    border: none;
    outline: none;
    padding: 0 5px;
    transition: width 0.3s ease; /* Efeito de transição */
    background-color: transparent;
    color: white;
}

#searchInput::placeholder {
    color: white;
    opacity: 0.8;
}

#searchIcon {
    margin-right: 5px;
}


.searchImg {
    display: flex;
    gap: 20px;
}

.menuContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    align-items: center;
    padding: 20px 4px 12px;
    justify-content: space-between;
    z-index: 98;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #f0edf5;
    transition: top 0.3s ease-in-out;
    backdrop-filter: none;
    position: sticky;
    top: 0;
    box-shadow: #00000000 0px 2px 3px;
}

.headerMenuButton,
.headerMenuSpacer {
    flex: 0 0 38px;
}

.headerMenuButton {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 7px;
    box-shadow: none;
    color: #3f3548;
    display: flex;
    height: 38px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 38px;
}

.headerMenuButton svg {
    height: 21px;
    stroke-width: 2;
    width: 21px;
}

.headerMenuButton:hover,
.headerMenuButton:focus {
    background: #f4f2f6;
    color: #2f2636;
}

.featureMenu {
    background: #ffffff;
    border: 1px solid #ede8f2;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgb(31 25 38 / 14%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 245px;
    padding: 8px;
    position: absolute;
    right: 4px;
    top: calc(100% + 6px);
    z-index: 120;
}

.featureMenuItem {
    align-items: center;
    background: transparent;
    border-radius: 6px;
    box-shadow: none;
    color: #3f3548;
    display: flex;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    justify-content: flex-start;
    margin: 0;
    padding: 10px 12px;
    text-align: left;
    width: 100%;
}

.featureMenuItem svg {
    color: #777081;
    height: 18px;
    stroke-width: 2;
    width: 18px;
}

.featureMenuItem:hover,
.featureMenuItem:focus,
.featureMenuItem.selected {
    background: #f5f5f6 !important;
    color: #2f2636;
}

.featureMenuItem:hover svg,
.featureMenuItem:focus svg,
.featureMenuItem.selected svg {
    color: #4f4658;
}

.version {
    color: #cfcfcf;
    position: fixed;
    bottom: 8px;
    z-index: -1;
}

.menuContainer.hidden1 {
    top: -100px; /* Move o menu para fora da tela */
}

.menuContainer.visible1 {
    top: 0; /* Retorna o menu à posição inicial */
}



.personalizeContainer {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    height: 100vh;
    background-color: blueviolet;
    padding: 20px;
}

.personalizeContainer.showMenu {
    transform: translateX(0); /* Quando ativo, move-o de volta para sua posição original */
}


.productsList {
    padding: 10px;
    margin: 5px 0;
    transition: background-color 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.products:hover {
    background-color: #f3f4f6;
}

.product {
    border: solid 1px #80808030;
    padding: 5px 20px;
    border-radius: 25px;
    color: black;
    box-shadow: #00000045 0px 1px 2px;
    background-color: #d1e7dd;
    cursor: pointer;
    font-weight: 500;
    font-family: "Raleway", serif;
}



.siteContainer {
    display: flex;
    width: min(calc(100vw - 24px), 500px);
    min-height: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0 22px 24px;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #f0edf5;
    border-radius: 14px;
    align-content: flex-start;
    gap: 24px;
}



#startButton {
    padding: 5px;
}

.fadeOut {
    transition: opacity 0.9s ease-in-out;
}

.downloadBtn{
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e3dde9;
    box-shadow: none;
    color: #4f4658;
    display: inline-flex;
    gap: 9px;
    font-weight: 500;
    justify-content: center;
    min-height: 44px;
    width: 100%;
}

.downloadBtn svg {
    color: #8b6fed;
    height: 18px;
    stroke-width: 2;
    width: 18px;
}
.hide {
    display: none;
}

.show {
    display:block;
}

.flex {
    display: flex;
    justify-content: space-around;
}

.displayflex {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.featurePanel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(100%, 500px);
    margin: 0 auto;
}

.appSkeleton {
    display: none;
    flex-direction: column;
    gap: 14px;
    width: min(100%, 420px);
    margin: 0 auto;
}

.app-loading [data-feature-panel] {
    display: none !important;
}

.app-loading .appSkeleton {
    display: flex;
}

.skeletonLine,
.skeletonMedia,
.skeletonButton {
    animation: skeletonPulse 1.35s ease-in-out infinite;
    background: linear-gradient(90deg, #f3f0f6 0%, #faf9fb 50%, #f3f0f6 100%);
    background-size: 220% 100%;
    border-radius: 7px;
}

.skeletonTitle {
    height: 20px;
    width: 42%;
}

.skeletonSubtitle {
    height: 14px;
    width: 72%;
}

.skeletonMedia {
    aspect-ratio: 4 / 5;
    width: 100%;
}

.skeletonButton {
    height: 44px;
    width: 100%;
}

@keyframes skeletonPulse {
    0% {
        background-position: 120% 0;
    }
    100% {
        background-position: -120% 0;
    }
}

.featureHeader {
    color: #3f3548;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0;
    width: min(100%, 420px);
    align-self: center;
}

.productResize .featureHeader {
    width: 100%;
}

.featureHeader h1 {
    color: #3f3548;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
}

.featureHeader p {
    color: #777081;
    font-size: 13.5px;
    line-height: 1.75;
    margin: 0;
}

/* Estilo básico para botões */
button {
    background-color: #f7f7f7;
    color: #737373;
    padding: 10px 20px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    margin: 1px 4px 5px;

  }
  
  /* Efeito de hover para o botão */
button:hover {
    background-color: #f1edf7; /* Cor de fundo mais clara quando passa o mouse */
    color: #3f3548;
  }

  .downloadBtn:hover {
    background-color: #faf8ff;
    border-color: #cfc2f7;
    color: #3f3548;
  }

  /* Efeito de active para o botão */
  button:active {
    background-color: #e2e0e0;
    color: #737373;
  }
  


.productCard {
    gap: 20px;
}

.productCard .downloadBtn {
    width: min(100%, 420px);
}

.productTitle {
    border-radius: 5px;
    padding: 12px;
    color: #9d8aa8;
    font-weight: 500;
}

.cardContainer {
    --card-ink: #ffffff;
    --card-blue: #002b3a;
    aspect-ratio: 4 / 5;
    background-image: url("backgrounds/Fundo Cards Defeso_v1.jpg");
    background-position: center;
    background-size: cover;
    border-radius: 0;
    color: var(--card-ink);
    container-type: inline-size;
    font-family: "Rawline", Arial, sans-serif;
    overflow: hidden;
    position: relative;
    width: min(100%, 420px);
    align-self: center;
}

.cardContent {
    bottom: 0;
    height: max-content;
    left: 10.7%;
    margin: auto 0;
    position: absolute;
    right: 11.8%;
    top: 0;
    transform: translateY(3.2%);
}

.cardBadge {
    align-items: center;
    background: #ffffff;
    border-radius: 1.12cqw;
    color: var(--card-blue);
    display: inline-flex;
    font-size: 4cqw;
    font-weight: 700;
    gap: 1.6cqw;
    line-height: 1;
    min-height: 6.65cqw;
    padding: 0 2.05cqw;
    transform: translateY(1.6cqw);
}

.cardBadgeIcon {
    color: var(--card-blue);
    flex: 0 0 auto;
    height: 3.65cqw;
    stroke-width: 2.4;
    width: 3.65cqw;
}

.cardIconButton {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0.55cqw;
    box-shadow: none;
    color: var(--card-blue);
    display: inline-flex;
    flex: 0 0 auto;
    height: 4.35cqw;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 4.35cqw;
}

.cardIconButton:hover,
.cardIconButton:focus {
    background: rgb(0 43 58 / 10%);
    color: var(--card-blue);
}

.cardIconButton:focus-visible {
    outline: 2px solid rgb(0 43 58 / 60%);
    outline-offset: 2px;
}

.cardTitleText {
    color: #ffffff;
    font-family: "Rawline", Arial, sans-serif;
    font-size: 5.95cqw;
    font-weight: 800;
    line-height: 1.2;
    margin: 4.75cqw 0 0;
    max-width: 100%;
}

.cardDivider {
    background: #ffffff;
    height: max(2px, 0.2cqw);
    margin: 4.35cqw 0 3.75cqw;
    width: 100%;
}

.cardFooterText {
    color: #ffffff;
    font-family: "Rawline", Arial, sans-serif;
    font-size: 4.05cqw;
    font-weight: 300;
    line-height: 1.3;
}

.cardAnatelLogo {
    display: block;
    margin-top: 7.2cqw;
    width: 24.2cqw;
}

.cardBadge [contenteditable],
.cardTitleText,
.cardFooterText {
    border-radius: 0.45cqw;
    outline: 0 solid transparent;
    transition: outline-color 0.2s ease, background-color 0.2s ease;
}

.cardBadge [contenteditable]:focus,
.cardTitleText:focus,
.cardFooterText:focus {
    background: rgb(255 255 255 / 10%);
    outline: 2px solid rgb(255 255 255 / 70%);
}

.iconModal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 200;
}

.iconModalBackdrop {
    background: rgb(5 0 24 / 61%);
    inset: 0;
    position: absolute;
}

.iconModalPanel {
    background: #ffffff;
    border-radius: 8px;
    color: #1f2933;
    max-height: min(720px, calc(100vh - 36px));
    max-width: 430px;
    overflow: hidden;
    padding: 18px;
    position: relative;
    width: min(100%, 430px);
}

.iconModalHeader {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.iconModalHeader h2 {
    color: #2c3640;
    font-family: "Rawline", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.iconModalClose {
    align-items: center;
    background: #f3f4f6;
    border-radius: 6px;
    box-shadow: none;
    color: #40505d;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 34px;
}

.iconModalClose:hover {
    background: #e7ebef;
    color: #1f2933;
}

.iconSearchWrap {
    margin-bottom: 12px;
    position: relative;
}

.iconSearch {
    border: 1px solid #d7dde4;
    border-radius: 7px;
    box-sizing: border-box;
    color: #1f2933;
    font-family: "Rawline", Arial, sans-serif;
    font-size: 15px;
    outline: none;
    padding: 11px 42px 11px 12px;
    width: 100%;
}

.iconSearch:focus {
    border-color: #006f8c;
    box-shadow: 0 0 0 3px rgb(0 111 140 / 16%);
}

.iconSearch::-webkit-search-cancel-button {
    appearance: none;
}

.iconSearchClear {
    align-items: center;
    background: transparent;
    border-radius: 6px;
    box-shadow: none;
    color: #6b7785;
    display: flex;
    height: 32px;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
}

.iconSearchClear:hover,
.iconSearchClear:focus {
    background: #eef2f6;
    color: #1f2933;
}

.iconSearchClear svg {
    height: 18px;
    stroke-width: 2.4;
    width: 18px;
}

.iconSearchResults {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iconSearchResults {
    max-height: 320px;
    overflow: auto;
    padding-right: 2px;
}

.iconChoice {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    box-shadow: none;
    color: #23313a;
    display: flex;
    flex-direction: column;
    font-family: "Rawline", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    height: 74px;
    justify-content: center;
    margin: 0;
    min-width: 0;
    padding: 8px;
    text-align: center;
}

.iconChoice:hover,
.iconChoice:focus {
    background: #e9f7fb;
    border-color: #70bfd1;
    color: #002b3a;
}

.iconChoice svg {
    height: 24px;
    stroke-width: 2.2;
    width: 24px;
}

.iconChoice span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes pulseRed {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #ff0505b0;
    }
    100% {
        background-color: transparent;
    }
  }

  .pulsingRed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: pulseRed 1s infinite;
    background-color: transparent;
    /* Adicione outros estilos conforme necessário */
  }

.productResize {
    width: 100%;
    gap: 20px;
}

.resizeControls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visuallyHidden {
    height: 1px;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.uploadButton {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e3dde9;
    border-radius: 7px;
    color: #4f4658;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.uploadButton svg {
    color: #8b6fed;
    height: 20px;
    stroke-width: 2;
    width: 20px;
}

.uploadButton:hover {
    background-color: #faf8ff;
    border-color: #cfc2f7;
    color: #3f3548;
}

.resizePresetGrid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resizePreset {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e3dde9;
    color: #6e6477;
    display: flex;
    flex-direction: column;
    font-family: "Raleway", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    gap: 7px;
    height: 68px;
    justify-content: center;
    margin: 0;
    min-width: 0;
    padding: 8px 6px;
    text-align: center;
}

.resizePreset svg {
    color: #8f8499;
    height: 22px;
    stroke-width: 2.1;
    width: 22px;
}

.resizePreset span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resizePreset.selected {
    background: #f4f0ff !important;
    border-color: #a080ff3b;
    color: #4f3f79;
}

.resizePreset.selected svg {
    color: #7f63dc;
}

.resizePreset:hover,
.resizePreset:focus {
    background: #faf8ff;
    border-color: #cfc2f7;
    color: #4f4658;
}

.customSizePanel {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customSizePanel label {
    color: #8a7798;
    display: flex;
    flex-direction: column;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

.customSizePanel input {
    border: 1px solid #e0d8ea;
    border-radius: 7px;
    color: #4f4658;
    font-size: 15px;
    outline: none;
    padding: 10px;
    width: 100%;
}

.customSizePanel input:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgb(167 139 250 / 16%);
}

.resizeCanvasContainer {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 48 / 25;
    background-color: transparent;
}

.resizeBgContainer {
    height: 100%;
    overflow: hidden;
    position: relative;
    background-image: url("backgrounds/anatel-sede.webp");
    background-size: cover;
    background-position: center;
    cursor: default;
}

.resizeBgContainer::before,
.resizeBgContainer::after {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.18s ease;
    z-index: 8;
}

.resizeBgContainer::before {
    background: linear-gradient(180deg, rgb(10 8 18 / 0%) 45%, rgb(10 8 18 / 34%) 100%);
    content: "";
    inset: 0;
}

.resizeBgContainer::after {
    align-items: center;
    background: rgb(255 255 255 / 88%);
    border: 1px solid rgb(255 255 255 / 52%);
    border-radius: 999px;
    color: #3f3548;
    content: "Reposicione";
    display: flex;
    font-size: 11.5px;
    font-weight: 600;
    left: 50%;
    line-height: 1;
    padding: 8px 12px;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.resizeBgContainer.isLocked::after {
    content: "Clique no cadeado para liberar o reposicionamento";
}

.resizeBgContainer:hover::before,
.resizeBgContainer:active::before {
    opacity: 1;
}

.resizeBgContainer.isLocked:hover::after,
.resizeBgContainer.isLocked:active::after,
.resizeBgContainer.isUnlocked.showRepositionHint:hover::after,
.resizeBgContainer.isUnlocked.showRepositionHint:active::after {
    opacity: 1;
}

.resizeBgContainer.isTransforming::after {
    opacity: 0 !important;
}

.resizeBg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: default !important;
}

.resizeBgContainer.isUnlocked .resizeBg {
    cursor: grab !important;
}

.resizeBgContainer.isUnlocked:active .resizeBg,
.resizeBgContainer.isUnlocked .resizeBg:active {
    cursor: grabbing !important;
}

.resizeMoveGuide {
    align-items: center;
    background: rgb(255 255 255 / 86%);
    border: 1px solid rgb(255 255 255 / 58%);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgb(28 20 36 / 16%);
    color: #4f4658;
    display: flex;
    height: 28px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: 28px;
    z-index: 9;
}

.resizeMoveGuide svg {
    height: 16px;
    stroke-width: 2.4;
    width: 16px;
}

.moveLeft {
    left: 10px;
    top: 50%;
    transform: translate(-4px, -50%);
}

.moveRight {
    right: 10px;
    top: 50%;
    transform: translate(4px, -50%);
}

.moveUp {
    left: 50%;
    top: 10px;
    transform: translate(-50%, -4px);
}

.moveDown {
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 4px);
}

.resizeBgContainer.isUnlocked.showRepositionHint.canMoveLeft .moveLeft,
.resizeBgContainer.isUnlocked.showRepositionHint.canMoveRight .moveRight,
.resizeBgContainer.isUnlocked.showRepositionHint.canMoveUp .moveUp,
.resizeBgContainer.isUnlocked.showRepositionHint.canMoveDown .moveDown,
.resizeBgContainer.isUnlocked.isTransforming.canMoveLeft .moveLeft,
.resizeBgContainer.isUnlocked.isTransforming.canMoveRight .moveRight,
.resizeBgContainer.isUnlocked.isTransforming.canMoveUp .moveUp,
.resizeBgContainer.isUnlocked.isTransforming.canMoveDown .moveDown {
    opacity: 1;
}

.resizeBgContainer.isUnlocked.showRepositionHint.canMoveLeft .moveLeft,
.resizeBgContainer.isUnlocked.showRepositionHint.canMoveRight .moveRight,
.resizeBgContainer.isUnlocked.isTransforming.canMoveLeft .moveLeft,
.resizeBgContainer.isUnlocked.isTransforming.canMoveRight .moveRight {
    transform: translate(0, -50%);
}

.resizeBgContainer.isUnlocked.showRepositionHint.canMoveUp .moveUp,
.resizeBgContainer.isUnlocked.showRepositionHint.canMoveDown .moveDown,
.resizeBgContainer.isUnlocked.isTransforming.canMoveUp .moveUp,
.resizeBgContainer.isUnlocked.isTransforming.canMoveDown .moveDown {
    transform: translate(-50%, 0);
}

.resizeTips {
    color: #6e6477;
    display: grid;
    gap: 9px;
    margin-top: -8px;
}

.resizeTipsTitle {
    color: #4f4658;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.5;
}

.resizeTip {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.35;
}

.resizeTip svg {
    color: #8b6fed;
    flex: 0 0 auto;
    height: 16px;
    margin-top: 1px;
    stroke-width: 2;
    width: 16px;
}

.tipMobile {
    display: none;
}

@media (hover: none), (pointer: coarse) {
    .resizeBgContainer::after {
        content: "Arraste | pinça zoom | toque duplo reset";
    }

    .resizeBgContainer.isLocked::after {
        content: "Desbloqueie para reposicionar";
    }

    .tipDesktop {
        display: none;
    }

    .tipMobile {
        display: inline;
    }
}
.beta {
    display: inline-block;
    display: inline-block;
    background-color: #e7ff85;
    border-radius: 9px;
    margin: -5px 5px;
    padding: 5px;
    font-weight: 400;
    color: #a099f1;
    scale: 0.85;
}


.downloadable {

}

.reseted {

}

/* Estilos adicionais para efeito dropdown */
.dropdown {
    max-height: 0; /* Inicialmente, o conteúdo não é mostrado */
    overflow: hidden; /* Garante que o conteúdo não vai vazar quando a altura for 0 */
    transition: max-height 0.2s ease-in-out, 
                opacity 1.5s ease-out;
    margin-top: 0;
    opacity: 0;
    cursor: pointer;
    gap: 20px;
    margin-top: 15px;
}

/* Classe para expandir o conteúdo dropdown */
.dropdown.show {
    max-height: 3000px; /* Máximo da altura que a div pode ter */
    display: flex;
    flex-direction: column;
    opacity: 1;
    cursor: auto;
    transition: max-height 1s ease-in-out, 
                opacity 1.5s ease-out;
}

.lock {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgb(28 20 36 / 18%);
    color: #dc2626;
    cursor: pointer;
    display: flex;
    font-size: 16.0642px;
    justify-content: center;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    padding: 7px;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.lock.isUnlocked {
    background: rgb(255 255 255 / 50%);
    color: #16a34a;
}

.lock.isLocked {
    background: #ffffff;
    color: #dc2626;
}

.lock:hover,
.lock:focus-visible {
    transform: scale(1.08);
}

.lock svg {
    display: block;
    height: 18px;
    stroke-width: 2.3;
    width: 18px;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pulse {
    animation: pulse 0.5s infinite;
  }
