.elementor-kit-21{--e-global-color-primary:#50C850;--e-global-color-secondary:#4ED2E3;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-21 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Remove o texto original (Warnings) */
.wau-header-title h4 {
    visibility: hidden;
    position: relative;
    font-size: 0; /* Garante que o espaço do texto antigo suma */
}

/* Insere o novo texto (Avisos) */
.wau-header-title h4::before {
    content: "Avisos"; /* Sua tradução aqui */
    visibility: visible;
    position: relative;
    font-size: 1.25rem; /* Ajuste o tamanho da fonte conforme seu tema */
    font-weight: bold;
    color: #d9534f; /* Cor opcional para chamar atenção (ex: vermelho de alerta) */
}

/* Opcional: Estilização do cabeçalho de avisos */
.wau-header-title {
    background-color: #fff3cd; /* Fundo amarelinho de alerta */
    border-left: 5px solid #ffecb5;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.ast-scroll-top{
    display: none;
}

/* Container Principal */
.wau_upload_wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: sans-serif;
    max-width: 650px;
}

/* Título Principal */
.wau_upload_wrapper > p:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: block;
    border-left: 4px solid #25d366;
    padding-left: 10px;
}

/* Estilização Individual dos Campos de Upload */
.wau-auto-width.wau-files {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    padding: 8px;
    background: #f8fafc;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Criando Labels via CSS (Foto 01, Foto 02...) */
/* Como o seu HTML não tem os labels, usamos o seletor antes de cada input */

input[name="wau_file_addon[0]"]::before { content: "FOTO 01: "; font-weight: bold; margin-right: 5px; color: #555; }
input[name="wau_file_addon[1]"]::before { content: "FOTO 02: "; font-weight: bold; margin-right: 5px; color: #555; }
input[name="wau_file_addon[2]"]::before { content: "FOTO 03: "; font-weight: bold; margin-right: 5px; color: #555; }
input[name="wau_file_addon[3]"]::before { content: "FOTO 04: "; font-weight: bold; margin-right: 5px; color: #555; }
input[name="wau_file_addon[4]"]::before { content: "FOTO 05: "; font-weight: bold; margin-right: 5px; color: #555; }

/* Ajuste para Desktop: 2 colunas para economizar espaço */
@media (min-width: 600px) {
    .wau_upload_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }
    /* O título e as observações ocupam as duas colunas */
    .wau_upload_wrapper > p:first-child, 
    .wau_upload_wrapper .mb-4 {
        grid-column: span 2;
    }
}

/* Área de Observações */
.wau_upload_wrapper .mb-4 {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wau-mb-2 p {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

#wau_textarea_content {
    width: 100%;
    height: 60px !important;
    min-height: 50px;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background: #ffffff;
    font-size: 13px;
    box-sizing: border-box;
    margin-bottom: 0px;
    margin-top: 21px;
}

#wau_textarea_content:focus {
    border-color: #25d366;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1);
}

/* 1. Tradução e Espaçamento do Label de Observações */
.wau_upload_wrapper .wau-mb-2 p {
    visibility: hidden;
    position: relative;
    font-size: 0;
    margin: 15px 0 10px 0 !important; /* Espaço entre o label e o campo */
}

.wau_upload_wrapper .wau-mb-2 p::after {
    content: "Observações ou instruções especiais (opcional):";
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

/* 2. Textarea Reduzido */
#wau_textarea_content {
    width: 100%;
    height: 60px !important; /* Altura reduzida conforme solicitado */
    min-height: 50px;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background: #ffffff;
    font-size: 13px;
    box-sizing: border-box;
    margin-bottom: 5px; /* Garante que não fique colado no label */
}

#wau_textarea_content:focus {
    outline: none;
    border-color: #25d366; /* Cor verde para manter a identidade */
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}


/* Estilização da Mensagem de Pedido Recebido */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background-color: #f0fff4; /* Verde bem clarinho de sucesso */
    border: 2px solid #25d366; /* Verde da sua identidade/WhatsApp */
    color: #1a512e; /* Verde escuro para leitura */
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    position: relative;
    display: block;
}

/* Adicionando um ícone de "Check" antes do texto */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    content: '✓';
    display: block;
    background: #25d366;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 20px;
}

/* Efeito de animação suave ao carregar */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    animation: fadeInSlide 0.5s ease-out;
}/* End custom CSS */