        /* =======================
            FONTES PERSONALIZADAS
           ======================= */ 
        
        
        @font-face {
        	font-family: 'GaramondRegular';
        	src: url('https://www.vozdivina.online/wp-content/font/GaramondRegular.ttf') format('truetype');
        	font-weight: 400;
        }
         
         @font-face {           
            font-family: 'GaramondItalic';
        	src: url('https://www.vozdivina.online/wp-content/font/GARNARI.TTF') format('truetype');
        	font-weight: 400;
        }
                    
        @font-face {
        	font-family: 'GaramondBold';
        	src: url('https://www.vozdivina.online/wp-content/font/GARMNDB.ttf') format('truetype');
        	font-weight: 700;
        }
                    
        @font-face {
        	font-family: 'DidotBold';
        	src: url('https://www.vozdivina.online/wp-content/font/DidotBold.otf') format('opentype');
        	font-weight: 700;
        }
                    
        @font-face {
        	font-family: 'DidotTitle';
        	src: url('https://www.vozdivina.online/wp-content/font/DidotTitle.otf') format('opentype');
        	font-weight: 400;
        }
        
        @font-face {
        	font-family: 'DidotItalic';
        	src: url('https://www.vozdivina.online/wp-content/font/DidotItalic.otf') format('opentype');
            font-weight: 400;
        }
        
        @font-face {
        	font-family: 'PlayfairDisplay-Regular';
        	src: url('https://www.vozdivina.online/wp-content/font/PlayfairDisplay-Regular.ttf') format('opentype');
            font-weight: 400;
        }
        
        @font-face {
        	font-family: 'PlayfairDisplay-Italic';
        	src: url('https://www.vozdivina.online/wp-content/font/PlayfairDisplay-Italic.ttf') format('opentype');
            font-weight: 400;
        }
        
        @font-face {
        	font-family: 'PlayfairDisplay-Medium';
        	src: url('https://www.vozdivina.online/wp-content/font/PlayfairDisplay-Medium.ttf') format('opentype');
            font-weight: 500;
        }
        
        @font-face {
        	font-family: 'PlayfairDisplay-Bold';
        	src: url('https://www.vozdivina.online/wp-content/font/PlayfairDisplay-Bold.ttf') format('opentype');
            font-weight: 700;
        }
        
        @font-face {
        	font-family: 'PlayfairDisplay-BoldItalic';
        	src: url('https://www.vozdivina.online/wp-content/font/PlayfairDisplay-BoldItalic.ttf') format('opentype');
            font-weight: 700;
        }
        
        @font-face {
        	font-family: 'PlayfairDisplay-ExtraBold';
        	src: url('https://www.vozdivina.online/wp-content/font/PlayfairDisplay-ExtraBold.ttf') format('opentype');
            font-weight: 800;
        }
        
        @font-face {
        	font-family: 'CrimsonText-Italic';
        	src: url('https://www.vozdivina.online/wp-content/font/CrimsonText-Italic.ttf') format('opentype');
            font-weight: 400;
        }
        
        @font-face {
        	font-family: 'DancingScript';
        	src: url('https://www.vozdivina.online/wp-content/font/DancingScript.ttf') format('opentype');
            font-weight: 400 700;
        }
        
        @font-face {
        	font-family: 'Inter';
        	src: url('https://www.vozdivina.online/wp-content/font/Inter.ttf') format('opentype');
            font-weight: 100 900;
        }

        @font-face {
        	font-family: 'FrederickatheGreat-Regular';
        	src: url('https://www.vozdivina.online/wp-content/font/FrederickatheGreat-Regular.ttf') format('opentype');
            font-weight: 400;
        }
        
        /* =======================
            ELEMENTOS GERAIS
           ======================= */ 

        #canvas-template {
            display: block;
            margin: 0 auto;
        }
        
        h1 {
        	font-family: 'DidotBold', serif; /* Usa a fonte carregada */
        	font-size: 2.5rem; /* Ajusta o tamanho */
        	color: #4a4a4a; /* Define a cor */
        	text-align: center; /* Centraliza o texto */
        	margin-bottom: 20px; /* Espaçamento inferior */
        	max-height: 45px;
        }
                
        h2 {
        	font-family: 'DidotBold', serif; /* Usa a fonte carregada */
        	font-size: 1.5rem; /* Ajusta o tamanho */
        	color: #4a4a4a; /* Define a cor */
        	text-align: left;
        	margin-bottom: 20px; /* Espaçamento inferior */
        }

         /* Estilo para as labels */
        label {
        	font-family: 'DidotBold', serif; /* Fonte Didot */
        	font-size: 20px; /* Tamanho do texto */
        	font-weight: bold; /* Negrito para destaque */
        	color: #333; /* Cor escura suave */
        	margin-top: 12px;
        	/*margin-bottom: 34px; /* Espaço abaixo */
        	display: inline-block; /* Garante alinhamento consistente */
        }
        
        .heading-container{
            height:40px;
            margin-top: -50px;
            padding-bottom: 70px;
        }
        
        /* =======================
             QUESTION MARK
           ======================= */ 

        .help-container {
            position: relative;
            display: inline-flex;
            justify-content: flex-end;
            width: 100%;
            padding-inline: 8px;
            padding-bottom: 8px;
        }
        
        #help-button {
          background-color: #FEF8E7;
          color: #2E3192;
          border: 1px solid #c8b590;
          border-radius: 50%;
          width: 36px;
          height: 36px;
          font-size: 20px;
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
          cursor: pointer;
          transition: background-color 0.3s, box-shadow 0.3s;
        }
        
        
        
        
        #help-tooltip {
          position: absolute;
          top: calc(100% + 5px);
          right: 50px;
          width: 260px;
          background: linear-gradient(to bottom, #ffffff, #f1f1f1);
          border: 1px solid #ccc;
          border-radius: 6px;
          padding: 14px 16px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          font-family: Arial, sans-serif;
          font-size: 14px;
          line-height: 1.4;
          text-align: left;
          z-index: 1000;
        }
        
        #help-tooltip p {
          margin: 0 0 8px 0;
        }
        
        #help-tooltip p:last-child {
          margin-bottom: 0;
        }
        
        
        /* =======================
        #help-tooltip p,
        #help-tooltip a {
          color: #222;
        }
        ======================= */
        
        
        #help-tooltip::after {
          content: '';
          position: absolute;
          top: -10px;
          right: 12px;
          border-width: 0 10px 10px 10px;
          border-style: solid;
          border-color: transparent transparent #ffffff transparent;
          
        }
        

        
        /* ocultação específica */
        #help-tooltip.hidden-tooltip {
          display: none !important;
        }

        .btn-whats{
            background-color: #fdf6e3;
        	color: #5a4636; /* Darker text for readability */
        	/*border: 1px solid #c8b590; /* Subtle border to match buttons */
        	border-radius: 25px; /* Rounded edges for a soft look */
        	height: 36px;
        	width: 36px;
        	padding: 8px 12px; /* Space inside the drop-down */
        	font-size: 16px; /* Readable font size */
        	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        	cursor: pointer; /* Indicates interactiveness */
        	transition: background-color 0.3s, box-shadow 0.3s;
        }
        
        #whats-button {
          
          background-image: url('https://www.vozdivina.online/wp-content/uploads/verse/whats/whats.png');
        background-size: cover;
        background-position: center;
        color: transparent;
        font-size: 0;
        line-height: 0;
        margin-left: 12px;
        }

        
        /* =======================
             THUMBNAILS CONTÊINERS
           ======================= */ 
        
        .custom-form-wrapper {
            position: relative;
            overflow: hidden;
            max-width: 600px;
            white-space: nowrap;
            height: 200px; /* Aumenta a altura para evitar corte */
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto; /* Centraliza o wrapper */
            gap: 7px;
            padding-left: 5px;
            padding-right: 5px;
        }
        
       .custom-form {
            display: flex;
            align-items: center;
            height: 100%;
            overflow-x: auto;
            scroll-behavior: smooth;
            white-space: nowrap;
            justify-content: left;
            padding: 0px;
            padding-top: 10px;
            min-height: 80px;
        }
        
        .custom-form::-webkit-scrollbar {
            display: none;
        }
        
        
        
        /* =======================
               THUMBNAILS
           ======================= */ 
        
        .thumb-form {
            flex: 0 0 auto;
            width: 70%;
            height: 70%;
            text-align: center;
            transition: transform 0.2s ease-in-out;
        }
        
        .thumb-form img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
            border: 3px solid transparent;
        }
        
        .thumb-form img:hover {
            transform: scale(1.1);
        }
        
        .thumb-form input[type="radio"] {
            display: none;
        }
        .thumb-form input[type="radio"]:checked + img {
            border: 3px solid #593c97;
        }
        
        
        
        /* =======================
            CONTÊINER DE 4 BOTÕES
           ======================= */ 
        
            .button-container {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                width: 100%;
                margin: 0px auto;
                margin-bottom: 20px;
            }

            .btn-thumbnail {
                background-color: #f5e9d7; /* Bege mais quente */
                border-radius: 50px; /* Arredondamento */
                width: 40px; /* Largura */
                height: 40px; /* Altura */
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra mais intensa */
                border: 2px solid #fff; /* Borda branca mais fina */

                transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
            }
            
            /* Botões que serão usados apenas com imagem como thumb */
            #btn-font,
            #btn-verses,
            #btn-align,
            #btn-border {
              color: transparent;
              font-size: 0;
              line-height: 0;
            }
            
            /* Exemplo: O botão de alinhamento inicia com uma thumbnail */
            #btn-verses {
              background-image: url('https://www.vozdivina.online/wp-content/uploads/verse/vernumber/1v.png');
              background-size: cover;
              background-position: center;
            }
            
            #btn-font {
              background-image: url('https://www.vozdivina.online/wp-content/uploads/verse/font/font.png');
              background-size: cover;
              background-position: center;
            }

            #btn-align {
              background-image: url('https://www.vozdivina.online/wp-content/uploads/verse/align/center.png');
              background-size: cover;
              background-position: center;
            }
            
            #btn-border {
              background-image: url('https://www.vozdivina.online/wp-content/uploads/verse/frame/noframe.png');
              background-size: cover;
              background-position: center;
            }
        
        /* =======================
            BOTÕES DE NAVEGAÇÃO
           ======================= */ 

        .arrow-left,
        .arrow-right {
            background-color: #e6d3a7; /* Tom de pergaminho suave */
            color: #000000; /* Marrom escuro para o texto */
            border: 1px solid #c8b590; /* Borda sutil */
            border-radius: 50%; /* Forma arredondada */
            width: 32px; /* Largura fixa */
            height: 32px; /* Altura fixa */
            margin: 2px 0; /* Espaçamento vertical */
            flex-shrink: 0; /* Evita que o botão diminua */
            flex-grow: 0; /* Evita que o botão cresça */
            font-size: 18px; /* Ícones ou texto legíveis */
            opacity: 0.9; /* Inicialmente translúcido */
            cursor: pointer; /* Indica interatividade */
            display: inline-flex; /* Centraliza conteúdo */
            align-items: center; /* Alinha o conteúdo verticalmente */
            justify-content: center; /* Centraliza o conteúdo horizontalmente */
            transition: opacity 0.3s ease, transform 0.3s ease; /* Animações suaves */
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Sombra sutil */
        }
        
        .arrow-left:hover,
        .arrow-right:hover {
            opacity: 1; /* Totalmente visível ao passar o mouse */
            transform: scale(1.1); /* Leve aumento para dar feedback visual */
            box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2); /* Sombra mais destacada */
            background-color: #d5bf91; /* Cor levemente mais escura */
        }
        
        .arrow-left i,
        .arrow-right i {
            display: block;
            width: 100%;
            text-align: center;
            line-height: 32px; /* igual ao height do botão */
        }

        
        .arrow-left {
            left: 0;
            display: block;
        }
        
        .arrow-right {
            right: 0;
            display: block;
        }
        
        .arrow-left.disabled,
        .arrow-right.disabled {
            opacity: 0.3;
            pointer-events: none;
        }
        
        

        /* =======================
            PHOTO UPLOAD ELEMENTS
           ======================= */ 
        

       /* Contêiner */
        .upload-bg-container {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #f5e9d7; /* Bege mais quente */
            border-radius: 50px; /* Arredondamento */
            padding: 25px 25px 25px 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra mais intensa */
            border: 1px solid #fff; /* Borda branca mais fina */
            max-width: 400px; /* Largura */
            max-height: 70px; /* Altura */
            margin: auto; /* Centralizar horizontalmente */
            transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        

        /* Efeito hover no contêiner */
        .upload-bg-container:hover {
            background-color: #f3e2c7; /* Bege mais claro ao passar o mouse */
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Sombra ainda mais intensa */
            transform: scale(1.05); /* Cresce levemente */
        }
        

        .upload-bg-wrapper {
            max-width: 500px;
            text-align: center;
            display: flex;
            justify-content: center;
            /*flex-direction: column;*/
            align-items: center; /* Centraliza horizontalmente */
            margin: 0 auto; /* Centraliza o wrapper */
            
        }
        
        #custom-bg-upload {
            display: inline-block;
            background-color: none;
            /*border: 1px solid #c8b590;*/
            /*border-radius: 5px;*/
            border:none;
            color: #593c97;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        #custom-bg-upload:hover {
            background-color: #f0e6d6;
        }

        input[type=file]::file-selector-button {
            background-color: #e6d3a7; /* Muted parchment tone */
        	color: #5a4636; /* Darker brown for text */
        	border:none;
        	/*border: 1px solid #c8b590; /* Slightly darker border */
        	/*border-radius: 8px; /* Smooth, rounded corners */
        	padding: 8px 16px; /* Comfortable padding */
        	font-family: 'GaramondRegular', 'Georgia', serif; /* Primary: Garamond */
        	font-size: 16px; /* Readable size */
        	cursor: pointer; /* Pointer cursor */
        	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Gentle shadow */
        	transition: background-color 0.3s, box-shadow 0.3s; /* Smooth hover effect */
        }
        
        input[type=file]::file-selector-button:hover {
            background-color: #d5bf91; /* Slightly darker parchment tone */
        	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
        }
        

        /* =======================
            BOTÃO DE DOWNLOAD
           ======================= */ 
        
        .download-bt-container{
            margin-top: 15px;
        }
        .download-button {
        	background-color: #e6d3a7; /* Muted parchment tone */
        	color: #5a4636; /* Darker brown for text */
        	border: 1px solid #c8b590; /* Slightly darker border */
        	border-radius: 8px; /* Smooth, rounded corners */
        	padding: 8px 16px; /* Comfortable padding */
        	margin-top:20px;
        	font-family: 'GaramondRegular', 'Georgia', serif; /* Primary: Garamond */
        	font-size: 16px; /* Readable size */
        	cursor: pointer; /* Pointer cursor */
        	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Gentle shadow */
        	transition: background-color 0.3s, box-shadow 0.3s; /* Smooth hover effect */
        }
                
        /* Hover Effect */
        .download-button:hover {
        	background-color: #d5bf91; /* Slightly darker parchment tone */
        	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
        }
                
        /* Focus Effect */
        .download-button:focus {
        	outline: 2px solid #c8b590; /* Focus ring for accessibility */
        	outline-offset: 2px;
        }
                
        /* Disabled Button */
        .download-button:disabled {
        	background-color: #f0e4cc; /* Lighter parchment tone */
        	color: #a89776; /* Muted text color */
        	cursor: not-allowed; /* Disabled cursor */
        	box-shadow: none; /* No shadow for disabled state */
        }
        
        
        
        /* =======================
            COLOR ELEMENTS
           ======================= */ 
        
        
         /* Color Picker */
        .text-color-picker {
            margin-top: 20px;
            text-align: center;
        }
        
        #colorPicker {
            background: url('https://www.vozdivina.online/wp-content/uploads/verse/picker/color-picker-thumb.png') center/cover no-repeat;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
            padding: 3px;
            
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        
        /* Chrome, Edge e Safari */
        #colorPicker::-webkit-color-swatch-wrapper {
            padding: 3px;
        }
        
        /* Ajustando a aparência da cor dentro do botão */
        #colorPicker::-webkit-color-swatch {
            border: none;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }
        
        /* Firefox */
        #colorPicker::-moz-color-swatch {
            border: none;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }
        
        /* Efeito de hover */
        #colorPicker:hover {
            transform: scale(1.1);
        }
        
        /* Quando o input está focado */
        input[type="color"]:focus {
            outline: 2px solid #593c97;
        }

        /* Quando uma cor é selecionada, remove a thumbnail */
        #colorPicker.has-color {
            background: none !important;
        }

        
        #colorPicker-txbg {
            background: url('https://www.vozdivina.online/wp-content/uploads/verse/picker/color-picker-thumb.png') center/cover no-repeat;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
            padding: 3px;
            
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        
        /* Chrome, Edge e Safari */
        #colorPicker-txbg::-webkit-color-swatch-wrapper {
            padding: 3px;
        }
        
        /* Ajustando a aparência da cor dentro do botão */
        #colorPicker-txbg::-webkit-color-swatch {
            border: none;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }
        
        /* Firefox */
        #colorPicker-txbg::-moz-color-swatch {
            border: none;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }
        
        /* Efeito de hover */
        #colorPicker-txbg:hover {
            transform: scale(1.1);
        }

        /* Quando uma cor é selecionada, remove a thumbnail */
        #colorPicker-txbg.has-color {
            background: none !important;
        }

        
        .color-btn-txbg,
        .color-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #ccc;
            margin: 0 5px;
            padding: 0;             /* Garante que não haja preenchimento interno */
            box-sizing: content-box; /* Para evitar compressão do border-radius */
            display: inline-block;   /* Mantém o formato em linha */
        }

        .color-btn-txbg:hover,
        .color-btn:hover {
            transform: scale(1.2);
        }

        
        /* Estilizando o contêiner */
        .color-picker-container-txbg,
        .color-picker-container {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #f5e9d7; /* Bege mais quente */
            border-radius: 50px; /* Arredondamento */
            padding: 25px 25px 25px 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra mais intensa */
            border: 1px solid #fff; /* Borda branca mais fina */
            max-width: 400px; /* Largura */
            max-height: 70px; /* Altura */
            margin: auto; /* Centralizar horizontalmente */
            
            
            transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        /* Efeito hover no contêiner */
        .color-picker-container-txbg:hover,
        .color-picker-container:hover {
            background-color: #f3e2c7; /* Bege mais claro ao passar o mouse */
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Sombra ainda mais intensa */
            transform: scale(1.05); /* Cresce levemente */
        }
    
        
        /* Color Scrolling Frame */
        .color-picker-wrapper-txbg,
        .color-picker-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin: 10px 0;
            
        }
        
        .color-picker-scroll {
            display: flex;
            overflow-x: auto;
            height: 80px;
            scroll-behavior: smooth;
            white-space: nowrap;
            align-items: center;
            gap: 3px;
            max-width: 250px; /* Defina o tamanho máximo visível */
        }
        
        .color-picker-scroll-txbg{
            display: flex;
            overflow-x: auto;
            height: 80px;
            scroll-behavior: smooth;
            white-space: nowrap;
            align-items: center;
            gap: 3px;
            max-width: 210px; /* Defina o tamanho máximo visível */
        }
        
        
        .color-picker-scroll-txbg::-webkit-scrollbar,
        .color-picker-scroll::-webkit-scrollbar {
            display: none; /* Oculta a barra de rolagem */
        }

        
        .color-btn-txbg,
        .color-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #ccc;
            box-sizing: content-box;
            display: inline-block;
            flex-shrink: 0; /* Evita que o botão diminua no scroll */
            cursor: pointer;
        }
        
        .arrow-left-color-txbg,
        .arrow-right-color-txbg,
        .arrow-left-color,
        .arrow-right-color {
            cursor: pointer;
            font-size: 20px;
            user-select: none;
        }
        
        .color-opacity-btn-txbg{
            width: 30px;
            height: 30px;
            border-radius: 50%;
            aspect-ratio: 1 / 1;
        }



        /* =======================
            CONTÊINER DE VERSÍCULO
           ======================= */ 
        
        .verse-section{
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .verse-container {
            padding: 15px;
            border: 1px solid #c8b590; /* Bordas sutis */
            border-radius: 8px;
            background-color: #fdf6e3; /* Cor leve de papel */
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
            max-width: 600px;
        }
        .verse-container {
            margin: 10px 0;
        }

        
        .verse-text {
            font-style: italic;
            font-size: 1.2em;
            color: #4a382b;
        }

        
        /* =======================
                RESPONSIVOS
           ======================= */ 
           
        /* Celulares (375px a 768px) */
    @media screen and (min-width: 375px) and (max-width: 768px) {
        
        #canvas-template {
            width: 100%;
            height: auto;
        }
    
        .verse-container {
            width: 95%;
            padding: 10px;
        }
    
        .verse-text {
            font-size: 1.1em;
            line-height: 1.4;
        }
    
        .custom-form-wrapper {
            max-width: 100%;
            height: 125px;
        }
    
        .custom-form {
            display: flex;
            flex-direction: row;
            gap: 10px;
            overflow-x: auto;
            scroll-behavior: smooth;
            white-space: nowrap;
        }
    
    
        .thumb-form {
            /*flex: 0 0 auto;*/
            /*width: 80px;*/
            /*height: 80px;*/
            width: 80px;
            height: 100%; /*Só assim ficou centralizado verticalmente*/
        }
    
        /*
        .thumb-form {
            flex: 0 0 30%;  3 itens visíveis por vez no celular 
        }
        */
    
        .thumb-form img {
            width: 80px;
            height: 80px;
        }
        
        .upload-bg-container,
        .color-picker-container-txbg,
        .color-picker-container{
            margin: 10px;
        }
        
        .color-picker-scroll {
            max-width: 210px; /* Defina o tamanho máximo visível */
        }
        
        .color-picker-scroll-txbg {
            max-width: 150px; /* Defina o tamanho máximo visível */
        }
        .color-opacity-btn-txbg {
            width: 30px;
            height: 30px;
        }
        
    }
    
    /* Tablets (768px a 1024px) */
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        #canvas-template {
            width: 80%;
            height: auto;
        }
    
        .verse-container {
            width: 80%;
            padding: 15px;
        }
    
        .verse-text {
            font-size: 1.3em;
            line-height: 1.5;
        }
        
        .custom-form-wrapper {
                max-width: 90%;
        }
    
        .custom-form {
            justify-content: center;
            gap: 15px;
        }
    
        .thumb-form {
            flex: 0 0 23%; /* 4 itens visíveis por vez no tablet */
        }
    
        .thumb-form img {
            width: 90px;
            height: 90px;
        }
        
        .color-picker-container{
            margin: 20px;
        }
    }
    
    /* Desktop (a partir de 1024px) */
    @media (min-width: 1024px) {
        #canvas-template {
            width: 600px;
            height: 600px;
        }
    
        .verse-container {
            max-width: 600px;
        }
    
        .verse-text {
            font-size: 1.5em;
            line-height: 1.6;
        }
    
        .custom-form-wrapper {
            max-width: 800px;
        }
            
        /*.thumb-form {*/
            /*width: calc(20% - 10px); /* 4-5 por linha */
        /*}*/
    
        .thumb-form {
            flex: 0 0 18%; /* 5 itens visíveis por vez no desktop */
        }
        
        .thumb-form img {
            width: 100px;
            height: 100px;
        }
        
    }