/*
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;
}