/*
Theme Name: Hello Child
Template: hello-elementor
Version: 1.0.0
Description: Tema filho do Hello Elementor para site de e-books
Author: Você
*/

/* Adicione CSS personalizado aqui */
EOF

sudo -u letrascri cat > functions.php << 'EOF'
<?php
/**
 * Hello Child Theme Functions
 */
add_action( 'wp_enqueue_scripts', function() {
    // Carrega estilo do tema pai
    wp_enqueue_style( 'hello-elementor', get_template_directory_uri() . '/style.css' );
    
    // Adiciona CSS personalizado
    wp_enqueue_style( 'hello-child', get_stylesheet_directory_uri() . '/style.css', 
        array('hello-elementor'), 
        wp_get_theme()->get('Version')
    );
});