/*
Theme Name: Hello Elementor Child
Theme URI: Verano
Template: hello-elementor
Author: Verano
Author URI: verano.com.br
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1756828685
Updated: 2025-09-02 12:58:05

*/

/* === ESTILOS PERSONALIZADOS === */
/* Melhorar o estilo das informações */
.acf-info-curso {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    margin: 12px 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.acf-info-curso p {
    margin: 8px 0;
    color: #495057;
    display: flex;
    align-items: flex-start;
}

.acf-info-curso p:last-child {
    margin-bottom: 0;
}

.acf-info-curso strong {
    color: #212529;
    font-weight: 600;
    margin-right: 8px;
    min-width: 110px;
    font-size: 13px;
}

/* Efeito hover no card do produto */
.woocommerce ul.products li.product:hover .acf-info-curso {
    background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #2196f3;
    transform: translateY(-1px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

/* Responsivo */
@media (max-width: 768px) {
    .acf-info-curso {
        font-size: 13px;
        padding: 12px;
        margin: 10px 0;
    }
    
    .acf-info-curso p {
        flex-direction: column;
        margin: 6px 0;
    }
    
    .acf-info-curso strong {
        min-width: auto;
        margin-bottom: 3px;
        margin-right: 0;
    }
}

.wc-block-components-checkout-place-order-button {
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative !important;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Forçar Poppins em todos os elementos */
* {
    font-family: 'Poppins', sans-serif !important;
}

body, h1, h2, h3, h4, h5, h6, p, span, div, .elementor-widget-heading, .elementor-widget-text-editor {
    font-family: 'Poppins', sans-serif !important;
}
}


/* Ícone de tooltip */
.acf-tooltip-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #0073aa;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    font-weight: bold;
    cursor: help;
    margin-left: 5px;
    position: relative;
}

.acf-tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 9999;
    font-weight: normal;
    min-width: 200px;
    white-space: normal;
    text-align: left;
}

.acf-tooltip-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9999;
}

.acf-tooltip-icon:hover::after,
.acf-tooltip-icon:hover::before {
    opacity: 1;
}

/* ============================================
   CARRINHO WOOCOMMERCE BLOCKS 
   ============================================ */

/* ===== VARIÁVEIS PERSONALIZADAS VERANO ===== */
:root {
    --verano-primary: #C74534;
    --verano-primary-dark: #a93829;
    --verano-primary-darker: #8b2e1f;
    --verano-green: #00d084;
    --verano-green-dark: #00b56f;
    --verano-gray: #6c757d;
    --verano-gray-dark: #545b62;
    --verano-red: #C74534;
    --verano-red-dark: #a93829;
}

/* ===== SOBRESCREVER VARIÁVEIS DO WOOCOMMERCE ===== */
:root {
    --wc-primary: var(--verano-primary) !important;
    --wc-primary-text: #ffffff !important;
}

/* ===== CONTAINER PRINCIPAL DO CARRINHO ===== */
.wp-block-woocommerce-cart {
    background: #f8f9fa;
    padding: 40px 20px;
}

.wc-block-cart {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TÍTULO DO CARRINHO ===== */
.wc-block-cart .wp-block-heading,
.entry-title {
    color: #333;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 30px;
    text-align: center;
}

/* ===== ITENS DO CARRINHO ===== */
.wc-block-cart__main {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Cada item do carrinho */
.wc-block-cart-items__row {
    padding: 20px 0 !important;
    border-bottom: 1px solid #e9ecef !important;
    transition: all 0.3s ease;
}

.wc-block-cart-items__row:hover {
    background-color: #f8f9fa;
}

/* Imagem do produto */
.wc-block-cart-item__image img {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease;
    max-width: 80px !important;
}

.wc-block-cart-item__image img:hover {
    border-color: var(--verano-primary);
    transform: scale(1.05);
}

/* Nome do produto */
.wc-block-cart-item__product-name {
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
}

.wc-block-cart-item__product-name:hover {
    color: var(--verano-primary) !important;
}

/* Preço */
.wc-block-cart-item__prices,
.wc-block-components-product-price {
    color: var(--verano-primary) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* Quantidade */
.wc-block-components-quantity-selector {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.wc-block-components-quantity-selector input {
    border: none !important;
    font-weight: 600 !important;
    color: #333 !important;
    width: 60px !important;
    text-align: center !important;
}

.wc-block-components-quantity-selector button {
    background: #f8f9fa !important;
    border: none !important;
    color: #333 !important;
    font-weight: bold !important;
    transition: all 0.2s ease;
}

.wc-block-components-quantity-selector button:hover {
    background: var(--verano-primary) !important;
    color: #fff !important;
}

/* ============================================
   BOTÃO REMOVER - SUPER REFORÇADO
   ============================================ */

/* Resetar tudo primeiro */
.wc-block-cart-item__remove-link,
.wc-block-cart-item__remove-link *,
.wc-block-cart-item__remove button,
.wc-block-cart-item__remove a,
.wc-block-components-product-remove-button,
button.wc-block-cart-item__remove-link,
a.wc-block-cart-item__remove-link {
    all: unset !important;
}

/* Aplicar estilos do botão */
.wc-block-cart-item__remove-link,
.wc-block-cart-item__remove button,
.wc-block-cart-item__remove a,
.wc-block-components-product-remove-button,
button.wc-block-cart-item__remove-link,
a.wc-block-cart-item__remove-link {
    /* Layout */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Tamanho */
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    
    /* Cor */
    background-color: #C74534 !important;
    background: #C74534 !important;
    
    /* Bordas */
    border: 2px solid #C74534 !important;
    border-radius: 50% !important;
    
    /* Texto */
    color: #ffffff !important;
    font-size: 0 !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    
    /* Comportamento */
    cursor: pointer !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    
    /* Transição */
    transition: all 0.3s ease !important;
    
    /* Box model */
    box-sizing: border-box !important;
}

/* CRIAR O X - Múltiplas abordagens */
.wc-block-cart-item__remove-link::before,
.wc-block-cart-item__remove-link::after,
.wc-block-cart-item__remove button::before,
.wc-block-cart-item__remove a::before,
.wc-block-components-product-remove-button::before,
button.wc-block-cart-item__remove-link::before,
a.wc-block-cart-item__remove-link::before {
    /* Conteúdo */
    content: "🗑" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 18px !important;
    line-height: 1 !important;
}
    
    /* Posicionamento */
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    
    /* Estilo */
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    
    /* Camada */
    z-index: 999 !important;
    
    /* Garantir visibilidade */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Se o botão estiver vazio */
.wc-block-cart-item__remove-link:empty::before,
.wc-block-cart-item__remove button:empty::before,
.wc-block-cart-item__remove a:empty::before {
    content: "×" !important;
}

/* ESCONDER tudo que não seja o X */
.wc-block-cart-item__remove-link svg,
.wc-block-cart-item__remove svg,
.wc-block-cart-item__remove img,
.wc-block-cart-item__remove-link img,
.wc-block-cart-item__remove span,
.wc-block-cart-item__remove-link span,
.wc-block-components-product-remove-button svg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    overflow: hidden !important;
}

/* ESCONDER texto */
.wc-block-cart-item__remove-link .wc-block-components-button__text,
.wc-block-cart-item__remove .wc-block-components-button__text {
    display: none !important;
    font-size: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hover */
.wc-block-cart-item__remove-link:hover,
.wc-block-cart-item__remove button:hover,
.wc-block-cart-item__remove a:hover,
button.wc-block-cart-item__remove-link:hover,
a.wc-block-cart-item__remove-link:hover {
    background: #a93829 !important;
    background-color: #a93829 !important;
    border-color: #8b2e1f !important;
    transform: scale(1.15) rotate(90deg) !important;
}

/* Active */
.wc-block-cart-item__remove-link:active {
    transform: scale(0.95) !important;
}

/* Focus */
.wc-block-cart-item__remove-link:focus {
    outline: 2px solid #C74534 !important;
    outline-offset: 2px !important;
}

/* Container */
.wc-block-cart-item__remove {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
}
/* ===== SIDEBAR - TOTAIS DO CARRINHO ===== */
.wc-block-cart__sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
}

/* Título dos totais */
.wc-block-cart__totals-title,
.wc-block-components-totals-wrapper > h2 {
    color: #333 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

/* Linhas de totais */
.wc-block-components-totals-item {
    padding: 12px 0 !important;
    border: none !important;
}

.wc-block-components-totals-item__label {
    color: #6c757d !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.wc-block-components-totals-item__value {
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

/* Total final */
.wc-block-components-totals-footer-item {
    border-top: 2px solid #e9ecef !important;
    margin-top: 15px !important;
    padding-top: 20px !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: var(--verano-primary) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

/* ===== CUPOM DE DESCONTO ===== */
.wc-block-components-totals-coupon {
    margin: 20px 0 !important;
    padding: 20px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
}

.wc-block-components-totals-coupon__input {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.wc-block-components-totals-coupon__input:focus {
    border-color: var(--verano-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(199, 69, 52, 0.1) !important;
}

.wc-block-components-totals-coupon__button {
    background: linear-gradient(135deg, var(--verano-green) 0%, var(--verano-green-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 208, 132, 0.3);
    width: 100% !important;
}

.wc-block-components-totals-coupon__button:hover {
    background: linear-gradient(135deg, var(--verano-green-dark) 0%, #009954 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 208, 132, 0.4);
}

/* ===== BOTÃO FINALIZAR COMPRA ===== */
.wc-block-cart__submit-container {
    margin-top: 25px;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-button {
    background: linear-gradient(135deg, var(--verano-primary) 0%, var(--verano-primary-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 18px 30px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(199, 69, 52, 0.4) !important;
    width: 100% !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-button:hover {
    background: linear-gradient(135deg, var(--verano-primary-dark) 0%, var(--verano-primary-darker) 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(199, 69, 52, 0.5) !important;
}

/* ===== BOTÕES GERAIS DO WOOCOMMERCE BLOCKS ===== */
.wc-block-components-button:not(.is-link) {
    background: linear-gradient(135deg, var(--verano-primary) 0%, var(--verano-primary-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.wc-block-components-button:not(.is-link):hover {
    background: linear-gradient(135deg, var(--verano-primary-dark) 0%, var(--verano-primary-darker) 100%) !important;
    transform: translateY(-2px);
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    background: linear-gradient(135deg, var(--verano-primary) 0%, var(--verano-primary-dark) 100%) !important;
    color: #ffffff !important;
    min-height: 48px !important;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
    background: linear-gradient(135deg, var(--verano-primary-dark) 0%, var(--verano-primary-darker) 100%) !important;
}

/* ===== MENSAGENS E NOTIFICAÇÕES ===== */
.wc-block-components-notice-banner {
    border-radius: 8px !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
}

.wc-block-components-notice-banner.is-success {
    background: #d4edda !important;
    border-left: 4px solid #28a745 !important;
    color: #155724 !important;
}

.wc-block-components-notice-banner.is-error {
    background: #f8d7da !important;
    border-left: 4px solid #dc3545 !important;
    color: #721c24 !important;
}

.wc-block-components-notice-banner.is-info {
    background: #d1ecf1 !important;
    border-left: 4px solid #17a2b8 !important;
    color: #0c5460 !important;
}

/* ===== CARRINHO VAZIO ===== */
.wc-block-cart__empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.wc-block-cart__empty-cart::before {
    content: "🛒";
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* ===== CROSS-SELL / PRODUTOS RELACIONADOS ===== */
.wc-block-cart__cross-sells {
    margin-top: 40px;
}

.wc-block-cart__cross-sells h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #333;
    margin-bottom: 20px;
}

/* ===== LOADING / SPINNER ===== */
.wc-block-components-spinner {
    border-color: var(--verano-primary) !important;
    border-top-color: transparent !important;
}

.wc-block-cart-item__remove-link.is-loading::before {
    content: "⟳" !important;
    animation: spin 0.8s linear infinite !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== TABELA DE ITENS ===== */
.wc-block-cart-items table {
    border: none !important;
}

.wc-block-cart-items thead {
    background: linear-gradient(135deg, var(--verano-primary) 0%, var(--verano-primary-dark) 100%);
}

.wc-block-cart-items thead th {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 15px !important;
    border: none !important;
}

/* ===== AJUSTES GERAIS ===== */
.wc-block-cart * {
    font-family: 'Poppins', sans-serif !important;
}

.wp-element-button {
    background-color: transparent !important;
}

.wc-block-cart a:not(.wc-block-components-button):not(.wc-block-cart-item__remove-link) {
    color: var(--verano-primary) !important;
}

.wc-block-cart a:not(.wc-block-components-button):not(.wc-block-cart-item__remove-link):hover {
    color: var(--verano-primary-dark) !important;
}

.elementor-widget-woocommerce-cart .wc-block-cart {
    background: transparent;
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-block-components-notice-banner {
    animation: slideDown 0.3s ease;
}

/* ===== RESPONSIVIDADE - TABLETS ===== */
@media (max-width: 992px) {
    .wc-block-cart__sidebar {
        margin-top: 30px;
    }
}

/* ===== RESPONSIVIDADE - MOBILE (768px) ===== */
@media (max-width: 768px) {
    
    /* Container principal */
    .wp-block-woocommerce-cart {
        padding: 20px 10px !important;
    }
    
    .wc-block-cart {
        padding: 0 !important;
    }
    
    /* Título */
    .wc-block-cart .wp-block-heading,
    .entry-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
        padding: 0 10px;
    }
    
    /* Área dos produtos */
    .wc-block-cart__main {
        padding: 15px !important;
        margin-bottom: 20px !important;
        border-radius: 8px !important;
    }
    
    /* Cada item */
    .wc-block-cart-items__row {
        display: flex !important;
        flex-direction: column !important;
        padding: 15px 10px !important;
        gap: 12px;
    }
    
    /* Container de imagem e info */
    .wc-block-cart-item__wrap {
        display: flex !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }
    
    /* Imagem */
    .wc-block-cart-item__image {
        flex-shrink: 0 !important;
        width: 70px !important;
    }
    
    .wc-block-cart-item__image img {
        max-width: 70px !important;
        height: auto !important;
        border-radius: 6px !important;
    }
    
    /* Info do produto */
    .wc-block-cart-item__product {
        flex: 1 !important;
    }
    
    .wc-block-cart-item__product-name {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
        display: block !important;
    }
    
    .wc-block-cart-item__prices {
        font-size: 16px !important;
        margin-top: 5px !important;
    }
    
    /* Quantidade e remover */
    .wc-block-cart-item__quantity {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 0 !important;
        border-top: 1px solid #e9ecef !important;
        gap: 10px !important;
    }
    
    /* Seletor de quantidade */
    .wc-block-components-quantity-selector {
        min-width: 120px !important;
        height: 44px !important;
        border-radius: 6px !important;
    }
    
    .wc-block-components-quantity-selector input {
        width: 50px !important;
        height: 44px !important;
        font-size: 16px !important;
        padding: 0 !important;
    }
    
    .wc-block-components-quantity-selector button {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
        min-width: 44px !important;
    }
    
    /* BOTÃO REMOVER - MOBILE */
    .wc-block-cart-item__remove-link,
    .wc-block-cart-item__remove button,
    .wc-block-cart-item__remove a,
    button.wc-block-cart-item__remove-link,
    a.wc-block-cart-item__remove-link {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        font-size: 24px !important;
        flex-shrink: 0 !important;
    }
    
    .wc-block-cart-item__remove-link::before,
    .wc-block-cart-item__remove button::before,
    .wc-block-cart-item__remove a::before,
    button.wc-block-cart-item__remove-link::before {
        font-size: 34px !important;
    }
    
    .wc-block-cart-item__remove {
        margin-left: 10px !important;
        width: 42px !important;
        height: 42px !important;
    }
    
    /* Sidebar - totais */
    .wc-block-cart__sidebar {
        padding: 20px 15px !important;
        margin-top: 20px !important;
        border-radius: 8px !important;
    }
    
    .wc-block-cart__totals-title,
    .wc-block-components-totals-wrapper > h2 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .wc-block-components-totals-item {
        padding: 10px 0 !important;
        font-size: 15px !important;
    }
    
    .wc-block-components-totals-item__label {
        font-size: 15px !important;
    }
    
    .wc-block-components-totals-item__value {
        font-size: 16px !important;
    }
    
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 20px !important;
    }
    
    /* Cupom */
    .wc-block-components-totals-coupon {
        padding: 15px !important;
        margin: 15px 0 !important;
    }
    
    .wc-block-components-totals-coupon__content {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .wc-block-components-totals-coupon__input {
        height: 48px !important;
        font-size: 16px !important;
        padding: 12px 15px !important;
        margin-bottom: 0 !important;
    }
    
    .wc-block-components-totals-coupon__button {
        height: 48px !important;
        font-size: 15px !important;
        padding: 12px 20px !important;
        min-height: 48px !important;
    }
    
    /* Botão finalizar */
    .wc-block-cart__submit-container {
        margin-top: 20px !important;
    }
    
    .wc-block-cart__submit-button,
    .wc-block-components-checkout-button {
        height: 56px !important;
        min-height: 56px !important;
        font-size: 16px !important;
        padding: 16px 24px !important;
        border-radius: 8px !important;
    }
    
    /* Botões gerais */
    .wc-block-components-button:not(.is-link) {
        min-height: 48px !important;
        font-size: 15px !important;
        padding: 12px 20px !important;
    }
    
    /* Mensagens */
    .wc-block-components-notice-banner {
        padding: 12px 15px !important;
        margin: 10px !important;
        font-size: 14px !important;
        border-radius: 6px !important;
    }
    
    /* Ajustes de espaçamento */
    .wc-block-cart-items {
        margin-bottom: 0 !important;
    }
    
    .wc-block-cart__main > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Carrinho vazio */
    .wc-block-cart__empty-cart {
        padding: 40px 20px !important;
    }
    
    .wc-block-cart__empty-cart::before {
        font-size: 60px !important;
    }
    
    /* Fix para elementos sobrepondo */
    .wc-block-cart__submit-button,
    .wc-block-components-checkout-button,
    .wc-block-components-button {
        position: relative !important;
        z-index: 10 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
    
    /* Área de toque maior */
    .wc-block-components-button,
    .wc-block-cart-item__remove-link,
    .wc-block-components-quantity-selector button {
        min-width: 44px !important;
        min-height: 44px !important;
    }
    
    /* Inputs maiores para facilitar digitação */
    input[type="text"],
    input[type="number"],
    input[type="email"] {
        font-size: 16px !important;
        min-height: 44px !important;
    }
    
    /* Garantir que nada ultrapasse a tela */
    .wc-block-cart,
    .wc-block-cart__main,
    .wc-block-cart__sidebar,
    .wc-block-cart-items,
    .wc-block-cart-items__row {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Forçar imagens a não quebrarem layout */
    .wc-block-cart img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Evitar quebra de texto */
    .wc-block-cart-item__product-name {
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    /* Desabilitar animações complexas no mobile */
    * {
        transition-duration: 0.2s !important;
    }
    
    .wc-block-cart-items__row:hover {
        background-color: transparent !important;
    }
    
    .wc-block-cart-item__image img:hover {
        transform: none !important;
    }
}

/* ===== RESPONSIVIDADE - MOBILE PEQUENO (480px) ===== */
@media (max-width: 480px) {
    
    .wp-block-woocommerce-cart {
        padding: 15px 5px !important;
    }
    
    .wc-block-cart__main,
    .wc-block-cart__sidebar {
        padding: 12px !important;
    }
    
    .wc-block-cart .wp-block-heading,
    .entry-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .wc-block-cart-items__row {
        padding: 12px 8px !important;
    }
    
    .wc-block-cart-item__image {
        width: 60px !important;
    }
    
    .wc-block-cart-item__image img {
        max-width: 60px !important;
    }
    
    .wc-block-cart-item__product-name {
        font-size: 14px !important;
    }
    
    .wc-block-cart-item__prices {
        font-size: 15px !important;
    }
    
    .wc-block-components-quantity-selector {
        min-width: 110px !important;
        height: 42px !important;
    }
    
    .wc-block-components-quantity-selector input {
        width: 45px !important;
        height: 42px !important;
        font-size: 15px !important;
    }
    
    .wc-block-components-quantity-selector button {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
    }
    
    .wc-block-cart-item__remove-link,
    .wc-block-cart-item__remove button,
    .wc-block-cart-item__remove a,
    button.wc-block-cart-item__remove-link {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
    }
    
    .wc-block-cart-item__remove-link::before,
    .wc-block-cart-item__remove button::before,
    .wc-block-cart-item__remove a::before {
        font-size: 30px !important;
    }
    
    .wc-block-cart-item__remove {
        width: 38px !important;
        height: 38px !important;
    }
    
    .wc-block-cart__totals-title {
        font-size: 18px !important;
    }
    
    .wc-block-components-totals-item {
        font-size: 14px !important;
    }
    
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 18px !important;
    }
    
    .wc-block-cart__submit-button,
    .wc-block-components-checkout-button {
        height: 52px !important;
        min-height: 52px !important;
        font-size: 15px !important;
        padding: 14px 20px !important;
    }
    
    .wc-block-components-totals-coupon {
        padding: 12px !important;
    }
    
    .wc-block-components-totals-coupon__input,
    .wc-block-components-totals-coupon__button {
        height: 46px !important;
        font-size: 15px !important;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (min-width: 481px) and (max-width: 768px) and (orientation: landscape) {
    .wc-block-cart {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    
    .wc-block-cart__main,
    .wc-block-cart__sidebar {
        margin: 0 !important;
    }
}

/* ===== SUPORTE PARA IPHONE NOTCH ===== */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .wp-block-woocommerce-cart {
            padding-left: max(10px, env(safe-area-inset-left)) !important;
            padding-right: max(10px, env(safe-area-inset-right)) !important;
        }
    }
}

/* ===== ACESSIBILIDADE ===== */
.wc-block-components-button:focus,
.wc-block-cart__submit-button:focus,
.wc-block-cart-item__remove-link:focus,
input:focus,
button:focus {
    outline: 2px solid var(--verano-primary) !important;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    *:focus {
        outline: 3px solid var(--verano-primary) !important;
        outline-offset: 2px !important;
    }
    
    .wc-block-cart {
        color: #333 !important;
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }
}

/* ===== SCROLL SUAVE ===== */
@media (max-width: 768px) {
    .wc-block-cart {
        overflow-x: hidden !important;
    }
    
    .wc-block-cart-items {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* ===== woocommerce ===== */

/* ===== FORMULÁRIO VERANO - CONTACT FORM 7 ===== */

/* Container Principal */
.verano-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Linhas do Formulário */
.verano-form-container .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Grupos de Formulário */
.verano-form-container .form-group {
    width: 100%;
    margin-bottom: 20px;
}

.verano-form-container .form-group.half {
    flex: 1;
    margin-bottom: 0;
}

/* Labels */
.verano-form-container .form-group label {
    display: block;
    color: #333333;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

/* Asterisco de Campo Obrigatório */
.verano-form-container .required {
    color: #c74534;
    font-weight: bold;
}

/* Campos de Input, Select e Textarea */
.verano-form-container .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #333;
}

.verano-form-container .form-control:focus {
    outline: none;
    border-color: #c74534;
    box-shadow: 0 0 0 2px rgba(199, 69, 52, 0.1);
}

.verano-form-container .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

/* Textarea */
.verano-form-container textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Radio Buttons */
.verano-form-container .radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.verano-form-container .radio-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 0;
    font-weight: normal;
}

.verano-form-container .radio-group label:hover {
    background: #f0f0f0;
    border-color: #c74534;
}

.verano-form-container .radio-group input[type="radio"] {
    margin-right: 6px;
    accent-color: #c74534;
}

.verano-form-container .radio-group label:has(input[type="radio"]:checked) {
    background: #fff5f4;
    border-color: #c74534;
    color: #c74534;
}

/* Select (Dropdown) */
.verano-form-container select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

/* Número Input */
.verano-form-container input[type="number"].form-control {
    -moz-appearance: textfield;
}

.verano-form-container input[type="number"]::-webkit-inner-spin-button,
.verano-form-container input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Botão de Envio - COR VERANO #c74534 */
.verano-form-container .form-submit {
    text-align: center;
    margin-top: 30px;
}

.verano-form-container .btn-submit {
    background: #c74534;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.verano-form-container .btn-submit:hover {
    background: #a93829;
    box-shadow: 0 4px 12px rgba(199, 69, 52, 0.3);
    transform: translateY(-1px);
}

.verano-form-container .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(199, 69, 52, 0.2);
}

/* Mensagens de Validação */
.verano-form-container .wpcf7-not-valid-tip {
    color: #c74534;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-style: italic;
}

.verano-form-container .wpcf7-not-valid {
    border-color: #c74534 !important;
    background: #fff5f4;
}

/* Mensagens de Resposta */
.verano-form-container .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.verano-form-container .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.verano-form-container .wpcf7-mail-sent-ng,
.verano-form-container .wpcf7-aborted,
.verano-form-container .wpcf7-spam-blocked,
.verano-form-container .wpcf7-validation-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Loader/Spinner */
.verano-form-container .wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(199, 69, 52, 0.2);
    border-top-color: #c74534;
    border-radius: 50%;
    animation: verano-spinner 0.6s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes verano-spinner {
    to { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .verano-form-container {
        padding: 20px;
    }
    
    .verano-form-container .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .verano-form-container .form-group.half {
        margin-bottom: 20px;
    }
    
    .verano-form-container .radio-group {
        flex-direction: column;
    }
    
    .verano-form-container .radio-group label {
        width: 100%;
    }
    
    .verano-form-container .btn-submit {
        width: 100%;
        padding: 14px 30px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .verano-form-container {
        padding: 15px;
    }
    
    .verano-form-container .form-control {
        font-size: 16px; /* Previne zoom no iOS */
    }
}

/* Estado de Loading */
.verano-form-container.submitting .btn-submit {
    opacity: 0.7;
    cursor: not-allowed;
}

.verano-form-container.submitting .wpcf7-spinner {
    visibility: visible;
}

/* Melhoria de Acessibilidade */
.verano-form-container .form-control:focus-visible {
    outline: 2px solid #c74534;
    outline-offset: 2px;
}

/* Suporte para Modo Escuro (opcional) 
@media (prefers-color-scheme: dark) {
    .verano-form-container {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .verano-form-container .form-control {
        background: #2a2a2a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .verano-form-container .form-group label {
        color: #e0e0e0;
    }
    
    .verano-form-container .radio-group label {
        background: #2a2a2a;
        border-color: #404040;
    }
    
    .verano-form-container .radio-group label:hover {
        background: #333;
    }
}
*/

/* 🔧 Correção mobile extra */
@media (max-width: 768px) {

    /* Faz cada campo ocupar toda a largura */
    .verano-form-container .form-group,
    .verano-form-container .form-group.half {
        width: 100% !important;
    }

    /* Garante espaçamento entre inputs */
    .verano-form-container .form-group.half {
        margin-bottom: 18px;
    }

    /* Evita inputs encostando na borda no Elementor */
    .verano-form-container {
        margin: 0 10px;
    }

    /* Ajusta alinhamento e espaçamento dos radios */
    .verano-form-container .radio-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .verano-form-container .radio-group label {
        width: 100%;
        justify-content: flex-start;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    /* Ajusta tipografia pra telas menores */
    .verano-form-container label,
    .verano-form-container .form-control {
        font-size: 15px;
    }
}
.elementor-posts--thumbnail-top .elementor-post__text {
	padding: 20px
}
